public ToDoSubTaskRepository(ToDosDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public ToDoRepository(ToDosDbContext context)
 {
     _context = context;
 }
예제 #3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.db = new ToDosDbContext();
 }