Пример #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");
 }