public UserController(URContext context, IMapper mapper, IWebHostEnvironment webHost)
 {
     _db          = context;
     _mapper      = mapper;
     _environment = webHost;
 }
示例#2
0
 public RewardController(URContext db, IMapper mapper, IWebHostEnvironment webHost)
 {
     _db          = db;
     _mapper      = mapper;
     _environment = webHost;
 }