예제 #1
0
 public PostService(ApplicationDbContext dbContext,
                    CloudinaryService cloudinaryService,
                    UserService userService,
                    NotificationService notificationService,
                    ClubService clubService)
 {
     this.dbContext           = dbContext;
     this.cloudinaryService   = cloudinaryService;
     this.userService         = userService;
     this.notificationService = notificationService;
     this.clubService         = clubService;
 }
예제 #2
0
 public RequestService(ApplicationDbContext dbContext,
                       ClubService clubService)
 {
     this.dbContext   = dbContext;
     this.clubService = clubService;
 }