Beispiel #1
0
 public AppointmentController(BarberSOnlineContext context, UserManager <BarberSOnlineUser> barberManager, SignInManager <BarberSOnlineUser> signInManager)
 {
     _context       = context;
     _barberManager = barberManager;
     _signInManager = signInManager;
 }
Beispiel #2
0
 public AdminController(BarberSOnlineContext context, IAzureBlobService azureBlobService)
 {
     _context          = context;
     _azureBlobService = azureBlobService;
 }
Beispiel #3
0
 public BarberController(BarberSOnlineContext context, IAzureBlobService azureBlobService, UserManager <BarberSOnlineUser> userManager)
 {
     _context          = context;
     _azureBlobService = azureBlobService;
     _userManager      = userManager;
 }