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