// GET: Admin/Events/Create
        public ActionResult Create()
        {
            var programme = new Programme();

            return View(programme);
        }
コード例 #2
0
 public void Update(Programme entity)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public void Add(Programme entity)
 {
     _context.Programmes.Add(entity);
 }
コード例 #4
0
 public void Delete(Programme entity)
 {
     _context.Programmes.Remove(entity);
 }
コード例 #5
0
 public void UpdateProgramme(Programme programme)
 {
     throw new NotImplementedException();
 }