public ActionResult View(string id) { USAStateModel uSAStateModel = new USAStateModel(); uSAStateModel.Id = id; using (USAStateBAL uSAStateBAL = new USAStateBAL(ContextInfo)) { uSAStateBAL.GetUSAStateModel(uSAStateModel); // uSAStateBAL.PrepareUSAStateModel(uSAStateModel); } return(View(uSAStateModel)); }
// GET: USAState/Edit/5 public ActionResult Edit(string id, BaseModel baseModel) { USAStateModel uSAStateModel = new USAStateModel(); uSAStateModel.CopyBaseModel(baseModel); uSAStateModel.Id = id; using (USAStateBAL uSAStateBAL = new USAStateBAL(ContextInfo)) { uSAStateBAL.GetUSAStateModel(uSAStateModel); uSAStateBAL.PrepareUSAStateModel(uSAStateModel); } return(View(uSAStateModel)); }
public ActionResult Delete(USAStateModel uSAStateModel) { using (USAStateBAL uSAStateBAL = new USAStateBAL(ContextInfo)) { uSAStateBAL.Delete(uSAStateModel); if (uSAStateModel.HasErrorByType()) { uSAStateBAL.GetUSAStateModel(uSAStateModel); // uSAStateBAL.PrepareUSAStateModel(uSAStateModel); } } return(View(uSAStateModel)); }