예제 #1
0
 public GroupTripsController(
     UserManager <ApplicationUser> userManager,
     IGroupTripsService groupTripsService,
     IFishSpeciesService fishService)
 {
     this.userManager       = userManager;
     this.groupTripsService = groupTripsService;
     this.fishService       = fishService;
 }
예제 #2
0
 public FishController(
     IFishSpeciesService fishSpeciesService,
     IFishServices fishService,
     ICloudinaryService cloudinaryService,
     IImageServices imageService,
     Cloudinary cloudinary)
 {
     this.fishSpeciesService = fishSpeciesService;
     this.fishService        = fishService;
     this.cloudinaryService  = cloudinaryService;
     this.imageService       = imageService;
     this.cloudinary         = cloudinary;
 }
예제 #3
0
 public FishSpeciesController(IFishSpeciesService fishSpeciesService)
 {
     this.fishSpeciesService = fishSpeciesService;
 }