public InvitationService(LaundryDbContext context, UserService userService)
 {
     this.context     = context;
     this.userService = userService;
 }
 public LaundryTemplatesController(LaundryDbContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public UserService(IConfiguration configuration, LaundryDbContext context, IPasswordHasher <User> passwordHasher)
 {
     this.configuration  = configuration;
     this.context        = context;
     this.passwordHasher = passwordHasher;
 }
 public ActiveLaundriesController(LaundryDbContext context)
 {
     _context = context;
 }