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