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