Ejemplo n.º 1
0
        public IEnumerable<PEvent_Type> Event_Type_Update(DEvent_Type updating)
        {
            IDataRepository<DEvent_Type> event_types =
                RepositoryFactory.Instance.Construct<DEvent_Type>();
            event_types.Update(updating);

            return event_types;
        }
Ejemplo n.º 2
0
        public IEnumerable<PEvent_Type> Event_Type_Delete(DEvent_Type deleting)
        {
            IDataRepository<DEvent_Type> event_types =
                RepositoryFactory.Instance.Construct<DEvent_Type>();
            event_types.Delete(deleting);

            return event_types;
        }
Ejemplo n.º 3
0
 public ActionResult Event_Type_Update(DEvent_Type updating)
 {
     return View("Index");
 }
Ejemplo n.º 4
0
 public ActionResult Event_Type_Delete(DEvent_Type deleting)
 {
     return View("Index");
 }
Ejemplo n.º 5
0
 public ActionResult Event_Type_Create(DEvent_Type creating)
 {
     return View("Index");
 }
Ejemplo n.º 6
0
 public ActionResult Event_Type_Delete(DEvent_Type deleting)
 {
     return(View("Index"));
 }
Ejemplo n.º 7
0
 public ActionResult Event_Type_Update(DEvent_Type updating)
 {
     return(View("Index"));
 }
Ejemplo n.º 8
0
 public ActionResult Event_Type_Create(DEvent_Type creating)
 {
     return(View("Index"));
 }