BillingUsageRepository creates a new instance of repositories.BillingUsageRepository
()
| 839 | |
| 840 | // BillingUsageRepository creates a new instance of repositories.BillingUsageRepository |
| 841 | func (container *Container) BillingUsageRepository() (repository repositories.BillingUsageRepository) { |
| 842 | container.logger.Debug("creating GORM repositories.BillingUsageRepository") |
| 843 | return repositories.NewGormBillingUsageRepository( |
| 844 | container.Logger(), |
| 845 | container.Tracer(), |
| 846 | container.DB(), |
| 847 | ) |
| 848 | } |
| 849 | |
| 850 | // EntitlementService creates a new instance of services.EntitlementService |
| 851 | func (container *Container) EntitlementService() *services.EntitlementService { |
no test coverage detected