public ActionResult Create(FormCollection coolection)
        {
            var model = new DeviceIdentityRemarkModel();

            model.DeviceIdentityTime = DateTime.Now;
            this.TryUpdateModel <DeviceIdentityRemarkModel>(model);
            this.IDKLManagerService.InsertIdentityRemark(model);
            return(this.RefreshParent());
        }
        public ActionResult Create()
        {
            var model = new DeviceIdentityRemarkModel();

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