コード例 #1
0
 //
 // GET: /Milestone/
 public ActionResult Index()
 {
     using (var db = new BPContext())
     {
         return View(db.Milestones.ToList());
     }
 }
コード例 #2
0
 public ActionResult Create(Milestone newMilestone)
 {
     try
     {
         using (var db = new BPContext())
         {
             db.Milestones.Add(newMilestone);
             db.SaveChanges();
         }
         return RedirectToAction("Index");
     }
     catch (Exception)
     {
         return View();
     }
 }
コード例 #3
0
 public AccountRepository(BPContext context)
 {
     _context = context;
 }