Beispiel #1
0
 public ServiceController(BlushDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public ClientController(BlushDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public CategoryController(BlushDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public AlertHub(BlushDbContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public AppointmentController(BlushDbContext context, IMapper mapper, IHubContext <AlertHub> hubContext)
 {
     _context    = context;
     _mapper     = mapper;
     _hubContext = hubContext;
 }
Beispiel #6
0
 public EmployeeController(BlushDbContext context)
 {
     _context = context;
 }