コード例 #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;
        }
コード例 #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;
        }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: j-burrows/planner
 public ActionResult Event_Type_Update(DEvent_Type updating)
 {
     return View("Index");
 }
コード例 #4
0
ファイル: HomeController.cs プロジェクト: j-burrows/planner
 public ActionResult Event_Type_Delete(DEvent_Type deleting)
 {
     return View("Index");
 }
コード例 #5
0
ファイル: HomeController.cs プロジェクト: j-burrows/planner
 public ActionResult Event_Type_Create(DEvent_Type creating)
 {
     return View("Index");
 }
コード例 #6
0
ファイル: HomeController.cs プロジェクト: j-burrows/planner
 public ActionResult Event_Type_Delete(DEvent_Type deleting)
 {
     return(View("Index"));
 }
コード例 #7
0
ファイル: HomeController.cs プロジェクト: j-burrows/planner
 public ActionResult Event_Type_Update(DEvent_Type updating)
 {
     return(View("Index"));
 }
コード例 #8
0
ファイル: HomeController.cs プロジェクト: j-burrows/planner
 public ActionResult Event_Type_Create(DEvent_Type creating)
 {
     return(View("Index"));
 }