コード例 #1
0
 public ArticlesService(WmipDbContext context)
 {
     this.context = context;
 }
コード例 #2
0
 public CommentsService(WmipDbContext context)
 {
     this.context = context;
 }
コード例 #3
0
 public RatingsService(WmipDbContext context)
 {
     this.context = context;
 }
コード例 #4
0
 public UsersService(SignInManager <User> signInManager, UserManager <User> userManager, WmipDbContext context)
 {
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.context       = context;
 }
コード例 #5
0
 public SearchService(WmipDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #6
0
 public ApprovalService(WmipDbContext context)
 {
     this.context = context;
 }
コード例 #7
0
 public ReviewsService(WmipDbContext context)
 {
     this.context = context;
 }
コード例 #8
0
 public AlbumsService(WmipDbContext context)
 {
     this.context = context;
 }