예제 #1
0
        public IEnumerable<PEvent> Event_Update(DEvent updating, string username)
        {
            IDataRepository<DEvent> events =
                RepositoryFactory.Instance.Construct<DEvent>(username);
            events.Update(updating);

            return events;
        }
예제 #2
0
 public ActionResult Event_Delete(DEvent deleting)
 {
     return View("Index");
 }
예제 #3
0
 public ActionResult Event_Update(DEvent updating)
 {
     return View("Index");
 }
예제 #4
0
 public ActionResult Event_Create(DEvent creating)
 {
     return View("Index");
 }