public UsersController(LetsRideinContext context, IHostingEnvironment hostingEnvironment, ISmsSender sender, EmailSender emailSender)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
     _sender             = sender;
     _emailSender        = emailSender;
 }
Esempio n. 2
0
 public RatingsController(LetsRideinContext context)
 {
     _context = context;
 }
 public TripsController(LetsRideinContext context)
 {
     _context = context;
 }
 public ReportsController(LetsRideinContext context)
 {
     _context = context;
 }
 public UsersController(LetsRideinContext context, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
 }
 public NotificationsController(LetsRideinContext context)
 {
     _context = context;
 }