public ActionResult Add(string key, int agencyId) { var msg = new JsonMessage(false, "Thêm mới dữ liệu thành công."); var model = new Therapy_History(); try { if (key != Keyapi) { return(Json(0, JsonRequestBehavior.AllowGet)); } var date = Request["dateOfsale_"]; var cus = Request["CustomerID"]; UpdateModel(model); if (!string.IsNullOrEmpty(cus)) { model.CustomerID = int.Parse(cus); } model.AgencyID = agencyId; model.DateCreate = date.StringToDate().TotalSeconds(); model.IsShow = true; model.IsDelete = false; _da.Add(model); _da.Save(); } catch (Exception ex) { msg.Erros = true; msg.Message = "Dữ liệu chưa được thêm mới."; Log2File.LogExceptionToFile(ex); } return(Json(msg, JsonRequestBehavior.AllowGet)); }
public void Add(Therapy_History item) { FDIDB.Therapy_History.Add(item); }