(config coreconfig.Reader, gateway net.Gateway)
| 25 | } |
| 26 | |
| 27 | func NewCloudControllerServicePlanRepository(config coreconfig.Reader, gateway net.Gateway) CloudControllerServicePlanRepository { |
| 28 | return CloudControllerServicePlanRepository{ |
| 29 | config: config, |
| 30 | gateway: gateway, |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | func (repo CloudControllerServicePlanRepository) Update(servicePlan models.ServicePlanFields, serviceGUID string, public bool) error { |
| 35 | return repo.gateway.UpdateResource( |
no outgoing calls
no test coverage detected