示例#1
0
 public ReplyController(IPost postService, IPostReply postReplyService, UserManager <ApplicationUser> userManager, IApplicationUser userService)
 {
     _postService      = postService;
     _postReplyService = postReplyService;
     _userManager      = userManager;
     _userService      = userService;
 }
示例#2
0
 public PostController(IPost post, IForum forum, IUser user, IPostReply postReply)
 {
     _post      = post;
     _forum     = forum;
     _user      = user;
     _postReply = postReply;
 }
示例#3
0
 public SupportingVerseController(IPost postService, IPostReply postReplyService, UserManager <ApplicationUser> userManager, IApplicationUser userService, IPostReplySupportingBibleVerse supportingBibleVerseService)
 {
     _postService                 = postService;
     _postReplyService            = postReplyService;
     _supportingBibleVerseService = supportingBibleVerseService;
     _userManager                 = userManager;
     _userService                 = userService;
 }
示例#4
0
 public PostReplyLogic()
 {
     _context     = new PostReplySQLContext();
     _userContext = new UserSQLContext();
 }
 public ForumService(ApplicationDbContext context, IPost postService, IPostReply postReplyService)
 {
     _context          = context;
     _postService      = postService;
     _postReplyService = postReplyService;
 }
示例#6
0
 public PostReplyController(IPostReply postReply)
 {
     _postReply = postReply;
 }