(name string)
| 17 | type QuotaRepository interface { |
| 18 | FindAll() (quotas []models.QuotaFields, apiErr error) |
| 19 | FindByName(name string) (quota models.QuotaFields, apiErr error) |
| 20 | |
| 21 | AssignQuotaToOrg(orgGUID, quotaGUID string) error |
| 22 |
no outgoing calls
no test coverage detected