public CommentManager(ICommentDal commentDal, IEmailProvider emailProvider,
                       IDataSheetService dataSheetService, IUserService userService)
 {
     _commentDal       = commentDal;
     _emailProvider    = emailProvider;
     _dataSheetService = dataSheetService;
     _userService      = userService;
 }
Beispiel #2
0
 public CommentService(ICommentDal commentDal)
 {
     _commentDal = commentDal;
 }
Beispiel #3
0
 public CommentManager(ICustomUserService customUserService, ICommentDal commentDal)
 {
     _customUserService = customUserService;
     _commentDal        = commentDal;
 }
 public CommentManager(IUnitOfWork unitOfWork, ICommentDal commentDal, IMapper mapper)
 {
     _unitOfWork = unitOfWork;
     _commentDal = commentDal;
     _mapper     = mapper;
 }
 public CommentService(ICommentDal _commentDal)
 {
     this._commentDal = _commentDal;
 }
Beispiel #6
0
 public class CommentManager : EntityManager <Comment>, ICommentService { public CommentManager(ICommentDal repostory) : base(repostory)
                                                                          {
                                                                          }
 public CommentService()
 {
     commentDal = new CommentDal();
 }
Beispiel #8
0
 public CommentBll(ICommentDal commentDal)
 {
     _commentDal = commentDal;
 }
 public CommentManager(ICommentDal CommentDal)
 {
     _CommentDal = CommentDal;
 }
 public CommentManager(ICommentDal commentDal)
 {
     this.commentDal = commentDal;
 }
Beispiel #11
0
 public CommentManager(ICommentDal commentDal, IUserService userService)
 {
     _commentDal  = commentDal;
     _userService = userService;
 }
Beispiel #12
0
 public CommentManager(IBaseDal <Comment> baseDal, ICommentDal commentDal) : base(baseDal)
 {
     _baseDal    = baseDal;
     _commentDal = commentDal;
 }
Beispiel #13
0
 public CommentService(ICommentDal dal)
 {
     this._dal    = dal;
     this.baseDal = dal;
 }
Beispiel #14
0
 public CommentManager(IGenericDal <Comment> genericDal, ICommentDal commentDal) : base(genericDal)
 {
     _commentDal = commentDal;
 }
 public CommentsController()
 {
     _commentDal = DependencyResolver.Current.GetService <ICommentDal>();
 }
 public CommentsController(ICommentDal commentDal)
 {
     _commentDal = commentDal;
 }
Beispiel #17
0
 public CommentManager(ICommentDal _commentDal)
 {
     commentDal = _commentDal;
 }
 public CommentManager(ICommentDal commentDal)
 {
     _commentDal = commentDal;
 }
Beispiel #19
0
 public CommentManager(ICommentDal commentDal, IUserDal userDal)
 {
     _commentDal = commentDal;
     _userDal    = userDal;
 }