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