Example #1
0
 public PostManager(IPostDal postDal, IElasticSearchService elasticSearchService, ITagService tagService, IUserService userService)
 {
     _postDal = postDal;
     _elasticSearchService = elasticSearchService;
     _tagService           = tagService;
     _userService          = userService;
 }
Example #2
0
 public PostManager(
     IPostDal postDal,
     ICustomUserService customUserService
     )
 {
     _customUserService = customUserService;
     _postDal           = postDal;
 }
Example #3
0
 public PostManager(IPostDal postDal)
 {
     this._postDal = postDal;
 }
Example #4
0
 public PostService(IPostDal postDal, IPostCategoryService postCategoryService, ICommentService commentService)
 {
     _postDal             = postDal;
     _postCategoryService = postCategoryService;
     _commentService      = commentService;
 }
Example #5
0
 public UserManager(IUserDal userDal, IPostDal postDal)
 {
     _userDal = userDal;
     _postDal = postDal;
 }
Example #6
0
 public PostManager(IPostDal postDal, IUserDal userDal)
 {
     _postDal = postDal;
     _userDal = userDal;
 }
Example #7
0
 public PostService(IPostDal postdal)
     : base(postdal)
 {
 }
Example #8
0
 public PostManager(IGenericDal <Post> genericDal, IPostDal postDal) : base(genericDal)
 {
     this.genericDal = genericDal;
     this.postDal    = postDal;
 }
Example #9
0
 public MongoUser(IUserDal userDal, IPostDal postDal)
 {
     _userDal = userDal;
     _postDal = postDal;
 }
Example #10
0
 public PostService(IPostDal postDal)
 {
     _postDal = postDal;
 }
Example #11
0
 public PostController(IServiceProvider svp, IPostDal postDal, IPostService postService)
 {
     _svp         = svp;
     _postDal     = postDal;
     _postService = postService;
 }
Example #12
0
 public UserService(IUserDal userDal, IPostDal postDal)
 {
     _userDal = userDal;
     _postDal = postDal;
 }
Example #13
0
 public PostManager(IPostDal postDal) => _postDal = postDal;
 public PostService(IPostDal _postDal)
 {
     this._postDal = _postDal;
 }
Example #15
0
 public PostService()
 {
     postDal = new PostDal();
 }
 public PostManager(IPostDal postDal, IPostStatService postStatService)
 {
     _postDal         = postDal;
     _postStatService = postStatService;
 }
Example #17
0
 public PostManager(IPostDal postDal)
 {
     _postDal = postDal;
 }
Example #18
0
 public PostManager(IPostDal post)
 {
     _dal = post;
 }
Example #19
0
 public PostsController(IPostDal postDal, IPostService postService)
 {
     _postDal     = postDal;
     _postService = postService;
 }
Example #20
0
 public PostManager(IPostDal postDal, IMapper mapper)
 {
     _postDal = postDal;
     _mapper  = mapper;
 }