コード例 #1
0
 public SearchController(IPostRep postRep)
 {
     _postRep = postRep;
 }
コード例 #2
0
 public PostService(IPostRep postRep, ICommRep commRep)
 {
     _postRep = postRep;
     _commRep = commRep;
 }
コード例 #3
0
 public BlackListController(IPostRep postRep)
 {
     _postRep = postRep;
 }
コード例 #4
0
 public PostsController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, IPostRep postRep)
 {
     _context     = context;
     _userManager = userManager;
     _postRep     = postRep;
 }
コード例 #5
0
 public PostsController(IPostRep iPostRep, IConfiguration configuration)
 {
     _iPostRep = iPostRep;
     config    = configuration;
 }