예제 #1
0
 public FishController(
     IFishService fish,
     ReefAquariumDbContext db)
 {
     this.fish = fish;
     this.db   = db;
 }
예제 #2
0
 public FishService(ReefAquariumDbContext db)
 {
     this.db = db;
 }
예제 #3
0
 public UserService(ReefAquariumDbContext db)
 {
     this.db = db;
 }
예제 #4
0
 public AdminBreedService(ReefAquariumDbContext db)
 {
     this.db = db;
 }
예제 #5
0
 public CommentService(ReefAquariumDbContext db)
 {
     this.db = db;
 }