Ejemplo n.º 1
0
 public PersonController(PulsationsContext context)
 {
     _personService = new PersonService(context);
 }
Ejemplo n.º 2
0
 public PersonService(PulsationsContext context)
 {
     _context = context;
 }
 public PersonController(PulsationsContext context, IHubContext <SignalHub> hubContext)
 {
     personService = new PersonService(context);
     _hubContext   = hubContext;
 }
Ejemplo n.º 4
0
 public PersonService(PulsationsContext pulsationsContext)
 {
     context = pulsationsContext;
 }