コード例 #1
0
 public PersonController(PulsationsContext context)
 {
     _personService = new PersonService(context);
 }
コード例 #2
0
 public PersonService(PulsationsContext context)
 {
     _context = context;
 }
コード例 #3
0
 public PersonController(PulsationsContext context, IHubContext <SignalHub> hubContext)
 {
     personService = new PersonService(context);
     _hubContext   = hubContext;
 }
コード例 #4
0
 public PersonService(PulsationsContext pulsationsContext)
 {
     context = pulsationsContext;
 }