public CountriesController(
     ILogger <CountriesController> logger,
     ICountryAppService countryAppService)
 {
     _logger            = logger;
     _countryAppService = countryAppService;
 }
 public AddressController(IAddressAppService addressAppService,
                          ICountryAppService countryAppService,
                          IProvinceAppService provinceAppService)
 {
     _addressAppService  = addressAppService;
     _countryAppService  = countryAppService;
     _provinceAppService = provinceAppService;
 }
Esempio n. 3
0
 public HomeController(ILogger <HomeController> logger,
                       ICountryAppService countryAppService,
                       IAnimalAppService animalAppService)
 {
     _logger = logger;
     this.countryAppService = countryAppService;
     this.animalAppService  = animalAppService;
 }
 public CompanyFactory(IProvinceAppService provinceAppService,
                       ICountryAppService countryAppService,
                       ICompanyAppService companyAppService,
                       IHostingEnvironment environment)
 {
     _provinceAppService = provinceAppService;
     _countryAppService  = countryAppService;
     _companyAppService  = companyAppService;
     _environment        = environment;
 }
Esempio n. 5
0
 public CountryAppService_Tests()
 {
     _countryAppService = Resolve <ICountryAppService>();
 }
 public CountryController(ICountryAppService countryAppService)
 {
     CountryAppService = countryAppService;
 }
 public ProvinceController(IProvinceAppService provinceAppService,
                           ICountryAppService countryAppService)
 {
     _provinceAppService = provinceAppService;
     _countryAppService  = countryAppService;
 }
Esempio n. 8
0
 public CountryController(ICountryAppService appService)
 {
     _appService = appService;
 }
 public CountryController(ICountryAppService service)
     : base(service)
 {
 }