Exemple #1
0
 public UsersController(IUserService userService, PayArenaMockContext context, IEmailSender emailSender, IHashingService hashingService)
 {
     _userService    = userService;
     _context        = context;
     _emailSender    = emailSender;
     _hashingService = hashingService;
 }
Exemple #2
0
 public CategoriesController(PayArenaMockContext context)
 {
     _context = context;
 }
Exemple #3
0
 public RolesController(PayArenaMockContext context)
 {
     _context = context;
 }
Exemple #4
0
 public BusinessListingsController(PayArenaMockContext context)
 {
     _context = context;
 }
Exemple #5
0
 public UserService(IOptions <AppSettings> appSettings, PayArenaMockContext context, IHashingService hashingService)
 {
     _context        = context;
     _appSettings    = appSettings.Value;
     _hashingService = hashingService;
 }