Exemplo n.º 1
0
        public ActionResult Out_Create(object message)
        {
            var model = new outstorage();

            this.TryUpdateModel <outstorage>(model);
            model.OutstorageDate = DateTime.Now;
            this.ToolManageService.Saveoutstorage(model);
            return(this.RefreshParent());
        }
Exemplo n.º 2
0
 public ActionResult Out_Edit(outstorage Data)
 {
     this.ToolManageService.Saveoutstorage(Data);
     return(this.RefreshParent());
 }
Exemplo n.º 3
0
        public ActionResult Out_Create()
        {
            var model = new outstorage();

            return(View(model));
        }