Exemplo n.º 1
0
        public IEnumerable<PPlace> Place_Create(DPlace creating)
        {
            IDataRepository<DPlace> places =
                RepositoryFactory.Instance.Construct<DPlace>();
            places.Create(creating);

            return places;
        }
Exemplo n.º 2
0
        public IEnumerable<PPlace> Place_Delete(DPlace deleting)
        {
            IDataRepository<DPlace> places = RepositoryFactory.Instance.Construct<DPlace>();
            places.Delete(deleting);

            return places;
        }
Exemplo n.º 3
0
 public ActionResult Place_Delete(DPlace deleting)
 {
     return View("Index");
 }
Exemplo n.º 4
0
 public ActionResult Place_Update(DPlace updating)
 {
     return View("Index");
 }
Exemplo n.º 5
0
 public ActionResult Place_Create(DPlace creating)
 {
     return View("Index");
 }