Пример #1
0
 public GroupCommentService(IGroupCommentRepository groupCommentRepository, IGroupCommentUserRepository groupCommentUserRepository, IGroupUpdateRepository groupUdateRepository, IUnitOfWork unitOfWork)
 {
     this.groupCommentRepository     = groupCommentRepository;
     this.groupCommentUserRepository = groupCommentUserRepository;
     this.groupUdateRepository       = groupUdateRepository;
     this.unitOfWork = unitOfWork;
 }
Пример #2
0
 public GroupCommentService(IGroupCommentRepository groupCommentRepository,IGroupCommentUserRepository groupCommentUserRepository, IGroupUpdateRepository groupUdateRepository, IUnitOfWork unitOfWork)
 {
     this.groupCommentRepository = groupCommentRepository;
     this.groupCommentUserRepository = groupCommentUserRepository;
     this.groupUdateRepository = groupUdateRepository;
     this.unitOfWork = unitOfWork;
 }
 public GroupCommentUserService(IGroupCommentUserRepository groupCommentUserRepository,IUnitOfWork unitOfWork,IUserRepository userRepository)
 {
     this.groupCommentUserRepository = groupCommentUserRepository;
     this.userRepository = userRepository;
     this.unitOfWork = unitOfWork;
 }
 public GroupCommentUserService(IGroupCommentUserRepository groupCommentUserRepository, IUnitOfWork unitOfWork, IUserRepository userRepository)
 {
     this.groupCommentUserRepository = groupCommentUserRepository;
     this.userRepository             = userRepository;
     this.unitOfWork = unitOfWork;
 }
Пример #5
0
 public GroupCommentService(IGroupCommentRepository groupCommentRepository, IGroupCommentUserRepository groupCommentUserRepository, IUnitOfWork unitOfWork)
 {
     _groupCommentRepository     = groupCommentRepository;
     _groupCommentUserRepository = groupCommentUserRepository;
     _unitOfWork = unitOfWork;
 }