コード例 #1
0
 public LicenseService(ILicenseRepository licenseRepository, ICompanyRepository companyRepository, IProductRepository productRepository)
 {
     _licenseRepository = licenseRepository;
     _companyRepository = companyRepository;
     _productRepository = productRepository;
 }
コード例 #2
0
        public LicenseController(ILicenseRepository licenseRepository)
        {
			this.licenseRepository = licenseRepository;
        }
コード例 #3
0
 public LicenseTypeService(ILicenseTypeRepository _repository, ILicenseRepository _repositoryLicense)
 {
     repository        = _repository;
     repositoryLicense = _repositoryLicense;
 }