Ejemplo n.º 1
0
 public LicenseService(ILicenseRepository licenseRepository, ICompanyRepository companyRepository, IProductRepository productRepository)
 {
     _licenseRepository = licenseRepository;
     _companyRepository = companyRepository;
     _productRepository = productRepository;
 }
Ejemplo n.º 2
0
        public LicenseController(ILicenseRepository licenseRepository)
        {
			this.licenseRepository = licenseRepository;
        }
Ejemplo n.º 3
0
 public LicenseTypeService(ILicenseTypeRepository _repository, ILicenseRepository _repositoryLicense)
 {
     repository        = _repository;
     repositoryLicense = _repositoryLicense;
 }