Esempio n. 1
0
        public ActionResult Create(FormCollection collection)
        {
            var model = new DeviceServiceRemarkModel();

            model.DeviceServiceTime = DateTime.Now;
            this.TryUpdateModel <DeviceServiceRemarkModel>(model);
            this.IDKLManagerService.InsertServiceRemark(model);
            return(this.RefreshParent());
        }
Esempio n. 2
0
        public ActionResult Create()
        {
            var model = new DeviceServiceRemarkModel();

            return(View("Edit", model));
        }