예제 #1
0
 public ValuesController(SpeditorDbContext context, UserManager <User> userManager)
 {
     this._context     = context;
     this._userManager = userManager;
 }
예제 #2
0
 public ForumService(SpeditorDbContext context, IMapper mapper, IConfiguration configuration)
 {
     this._context       = context;
     this._configuration = configuration;
     this._mapper        = mapper;
 }
예제 #3
0
 public PostReplyService(IMapper mapper, SpeditorDbContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }