Ejemplo n.º 1
0
 public HomeController(SignInManager <User> signInManager, IUsersService usersService, PzphDbContext dbContext)
 {
     _signInManager = signInManager;
     _usersService  = usersService;
     _dbContext     = dbContext;
 }
Ejemplo n.º 2
0
 public ServicesControllers(PzphDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Ejemplo n.º 3
0
 public BookingsRepository(PzphDbContext db)
 {
     _db = db;
 }