Exemplo n.º 1
0
 public GroupCommandsHandler(IStudiesDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public ProjectCommandsHandler(IStudiesDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public NodeCommandsHandler(IStudiesDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public NodeStatusCommandsHandler(IStudiesDbContext context, ITimeProvider timeProvider)
 {
     _context      = context;
     _timeProvider = timeProvider;
 }
Exemplo n.º 5
0
 public SessionTemplateCommandsHandler(IStudiesDbContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public StudiesDatabase(IStudiesDbContext context)
 {
     _context = context;
 }