public ArticlesService(WmipDbContext context)
 {
     this.context = context;
 }
 public CommentsService(WmipDbContext context)
 {
     this.context = context;
 }
Exemple #3
0
 public RatingsService(WmipDbContext context)
 {
     this.context = context;
 }
Exemple #4
0
 public UsersService(SignInManager <User> signInManager, UserManager <User> userManager, WmipDbContext context)
 {
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.context       = context;
 }
 public SearchService(WmipDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemple #6
0
 public ApprovalService(WmipDbContext context)
 {
     this.context = context;
 }
 public ReviewsService(WmipDbContext context)
 {
     this.context = context;
 }
Exemple #8
0
 public AlbumsService(WmipDbContext context)
 {
     this.context = context;
 }