예제 #1
0
 public UserController(IConfiguration configuration, EmailService emailService, PoliceComplainsContext context,
                       DataProtectionService dataProtectionServiceService)
 {
     _configuration         = configuration;
     _emailService          = emailService;
     _dataProtectionService = dataProtectionServiceService;
     _context = context;
 }
예제 #2
0
 public DashboardController(DataProtectionService dataProtectionService, PoliceComplainsContext context,
                            IHostingEnvironment env, EmailService emailService, IConfiguration configuration)
 {
     _dataProtectionService = dataProtectionService;
     _configuration         = configuration;
     _emailService          = emailService;
     _context = context;
     _env     = env;
 }
예제 #3
0
 public HomeController(ILogger <HomeController> logger, PoliceComplainsContext context)
 {
     _context = context;
     _logger  = logger;
 }