public ActionResult Add(string key, Guid userId) { var msg = new JsonMessage(false, "Thêm mới dữ liệu thành công."); try { if (key == Keyapi) { var model = new P_Workshop(); UpdateModel(model); var lst = Request["lstCate"]; var lsttmp = Request["lstDetail"]; var lstInt = FDIUtils.StringToListInt(lst); if (!string.IsNullOrEmpty(lst)) { model.Category_Recipe = _da.GetListArrIdCateRecipe(lst); } if (!string.IsNullOrEmpty(lsttmp)) { model.ProductDetail_Recipe = _da.GetListArrIdDetailRecipe(lsttmp); } var date = DateTime.Now.TotalSeconds(); model.UserID = userId; model.DateCreated = date; _da.Add(model); _da.Save(); } else { msg = new JsonMessage(true, "Có lỗi xảy ra!."); } } 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(P_Workshop obj) { FDIDB.P_Workshop.Add(obj); }