// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid productGatherId) { var service = new CrudeProductGatherServiceClient(); _isNew = false; try { _contract = service.FetchByProductGatherId(productGatherId); dateTimePickerStartDateTime.Value = _contract.StartDateTime != DateTime.MinValue ? _contract.StartDateTime : dateTimePickerStartDateTime.MinDate; dateTimePickerStartDateTime.Checked = _contract.StartDateTime != DateTime.MinValue; dateTimePickerFinishDateTime.Value = _contract.FinishDateTime != DateTime.MinValue ? _contract.FinishDateTime : dateTimePickerFinishDateTime.MinDate; dateTimePickerFinishDateTime.Checked = _contract.FinishDateTime != DateTime.MinValue; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } }
// shows the form with default values for comboboxes and pickers // links: // docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28 public void ShowAsAdd(System.DateTime startDateTime, System.DateTime finishDateTime, System.Guid userId) { try { _contract = new CrudeProductGatherContract(); _isNew = true; _contract.StartDateTime = startDateTime; dateTimePickerStartDateTime.Value = _contract.StartDateTime != DateTime.MinValue ? _contract.StartDateTime : dateTimePickerStartDateTime.MinDate; dateTimePickerStartDateTime.Checked = _contract.StartDateTime != DateTime.MinValue; _contract.FinishDateTime = finishDateTime; dateTimePickerFinishDateTime.Value = _contract.FinishDateTime != DateTime.MinValue ? _contract.FinishDateTime : dateTimePickerFinishDateTime.MinDate; dateTimePickerFinishDateTime.Checked = _contract.FinishDateTime != DateTime.MinValue; _contract.UserId = userId; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }
public ActionResult CrudeProductGatherCreate(System.Guid?userId) { var contract = new CrudeProductGatherContract(); if (userId != null) { contract.UserId = (System.Guid)userId; } contract.StartDateTime = DateTime.UtcNow; contract.FinishDateTime = DateTime.UtcNow; if (userId == null) { contract.UserId = new System.Guid("{FFFFFFFF-5555-5555-5555-FFFFFFFFFFFF}"); } ViewBag.DefaultUserName = new CrudeDefaultUserServiceClient().FetchByDefaultUserId(contract.UserId).DefaultUserName; contract.DateTime = DateTime.UtcNow; return(View( "~/Views/Crude/Product/CrudeProductGather/CrudeProductGatherCreate.cshtml", contract )); }
public ActionResult CrudeProductGatherCreate([Bind()] CrudeProductGatherContract contract) { if (ModelState.IsValid) { new CrudeProductGatherServiceClient().Insert(contract); return(RedirectToAction("CrudeProductGatherIndex")); } return(View( "~/Views/Crude/Product/CrudeProductGather/CrudeProductGatherCreate.cshtml", contract )); }
public ActionResult CrudeProductGatherEdit([Bind()] CrudeProductGatherContract contract) { if (ModelState.IsValid) { contract.DateTime = DateTime.UtcNow; new CrudeProductGatherServiceClient().Update(contract); return(RedirectToAction("CrudeProductGatherIndex")); } return(View( "~/Views/Crude/Product/CrudeProductGather/CrudeProductGatherEdit.cshtml", contract )); }
// shows the form with default values for comboboxes and pickers // links: // docLink: http://sql2x.org/documentationLink/e04d0806-55ef-41cc-8669-acf0ddd850c7 public void ShowAsAdd() { try { _contract = new CrudeProductGatherContract(); _isNew = true; this.Text += " - Not Savable (User Missing)"; Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }
// shows the form with default values for comboboxes and pickers // links: // docLink: http://sql2x.org/documentationLink/599dcb45-f71b-4672-bb18-46975a4fe9b3 public void ShowAsAddByRules(System.Guid userId) { try { _contract = new CrudeProductGatherContract(); _isNew = true; _contract.UserId = userId; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }