예제 #1
0
 public SeedBoard(AgileContext agileContext, bool seed = false)
 {
     if (seed)
     {
         context = agileContext;
         SeedColumns();
         SeedTickets();
     }
 }
예제 #2
0
 public ColumnService()
 {
     context = new AgileContext();
 }
예제 #3
0
 public TicketRepository(AgileContext dbContext) : base(dbContext)
 {
 }
예제 #4
0
 public TicketService()
 {
     context = new AgileContext();
 }
예제 #5
0
 public HomeController(AgileContext ctx) => context = ctx;