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