示例#1
0
 public CommentService(IMarkersDAL markersDAL, ICommentDAL dal, IDocumentSharingService documentSharingService, IMessanger messanger)
 {
     _DAL = dal;
     _documentSharingService = documentSharingService;
     _messanger  = messanger;
     _markersDAL = markersDAL;
 }
示例#2
0
 public User(IUserDAL user, IPostDAL post, ICommentDAL comment, ILikeDAL like, IUserDALNeo4j userDALNeo4J, IStreamDALCassandra stream, IStreamDataCassandra streamData)
 {
     _user       = user;
     _post       = post;
     _comment    = comment;
     _like       = like;
     _userNeo4j  = userDALNeo4J;
     _streamData = streamData;
     _stream     = stream;
 }
 public CommentService(ICommentDAL dal)
 {
     _dal = dal;
 }
示例#4
0
 public CommentBLL(ICommentDAL commentDal)
 {
     _commentDal = commentDal;
 }
示例#5
0
 public CommentManager(IGenericDAL <Comment> genericDAL, ICommentDAL commentDAL) : base(genericDAL)
 {
     _commentDAL = commentDAL;
 }
示例#6
0
 public CommentBLL(ICommentDAL comment)
 {
     commentDAL = comment;
 }
 public CommentService(ICommentDAL commentDAL)
 {
     _commentDAL = commentDAL;
 }
示例#8
0
 public CommentManager(ICommentDAL _commentDAL)
 {
     this._commentDAL = _commentDAL;
 }
 public CommentsController(ICommentDAL CommentDal)
 {
     _CommentDal = CommentDal;
 }