Exemple #1
0
 public BreedService(AppFdmcDbContext context)
 {
     this.context = context;
 }
Exemple #2
0
 public CatsController(ICatService catService, AppFdmcDbContext context)
 {
     this.catService = catService;
     this.context    = context;
 }
Exemple #3
0
 public BreedsController(IBreedService breedService, AppFdmcDbContext context)
 {
     this.breedService = breedService;
     this.context      = context;
 }
 public CatService(AppFdmcDbContext context)
 {
     this.context = context;
 }