示例#1
0
 public EmailService(IHttpContextAccessor contextAccessor, IHostingEnvironment hostingEnvironment, IUnitOfWork unitOfWork, ISESService sesService)
 {
     _httpContextAccessor = contextAccessor;
     _hostingEnvironment  = hostingEnvironment;
     _unitOfWork          = unitOfWork;
     _sesService          = sesService;
 }
 public RejectionsController(RaceSpotDBContext context, ISESService sesService)
 {
     _context    = context;
     _sesService = sesService;
 }
示例#3
0
 public UsersController(RaceSpotDBContext context, ISESService sesService)
 {
     _context    = context;
     _sesService = sesService;
 }