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