public CommentManager(ICommentDal commentDal, IEmailProvider emailProvider, IDataSheetService dataSheetService, IUserService userService) { _commentDal = commentDal; _emailProvider = emailProvider; _dataSheetService = dataSheetService; _userService = userService; }
public CommentService(ICommentDal commentDal) { _commentDal = commentDal; }
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; }
public class CommentManager : EntityManager <Comment>, ICommentService { public CommentManager(ICommentDal repostory) : base(repostory) { }
public CommentService() { commentDal = new CommentDal(); }
public CommentBll(ICommentDal commentDal) { _commentDal = commentDal; }
public CommentManager(ICommentDal CommentDal) { _CommentDal = CommentDal; }
public CommentManager(ICommentDal commentDal) { this.commentDal = commentDal; }
public CommentManager(ICommentDal commentDal, IUserService userService) { _commentDal = commentDal; _userService = userService; }
public CommentManager(IBaseDal <Comment> baseDal, ICommentDal commentDal) : base(baseDal) { _baseDal = baseDal; _commentDal = commentDal; }
public CommentService(ICommentDal dal) { this._dal = dal; this.baseDal = dal; }
public CommentManager(IGenericDal <Comment> genericDal, ICommentDal commentDal) : base(genericDal) { _commentDal = commentDal; }
public CommentsController() { _commentDal = DependencyResolver.Current.GetService <ICommentDal>(); }
public CommentsController(ICommentDal commentDal) { _commentDal = commentDal; }
public CommentManager(ICommentDal _commentDal) { commentDal = _commentDal; }
public CommentManager(ICommentDal commentDal) { _commentDal = commentDal; }
public CommentManager(ICommentDal commentDal, IUserDal userDal) { _commentDal = commentDal; _userDal = userDal; }