Esempio n. 1
0
 public TownsService(ApplicationDbContext dbContext, CountryService countryService)
 {
     this.dbContext      = dbContext;
     this.countryService = countryService;
 }
Esempio n. 2
0
 public AddressesService(ApplicationDbContext dbContext, TownsService townsService, CountryService countryService)
 {
     this.dbContext      = dbContext;
     this.townsService   = townsService;
     this.countryService = countryService;
 }