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