public ActionResult Search(SEC003P001Model model) { var da = new SEC003P001DA(); SetStandardErrorLog(da.DTO); da.DTO.Execute.ExecuteType = SEC003P001ExecuteType.GetAll; if (Request.GetRequest("page").IsNullOrEmpty()) { model.IsDefaultSearch = true; TempSearch = model; } da.DTO.Model = TempSearch; da.Select(da.DTO); return(JsonAllowGet(da.DTO.Models, da.DTO.Result)); }
public ActionResult Info(decimal?DEPT_ID) { SetDefaulButton(StandardButtonMode.View); var da = new SEC003P001DA(); SetStandardErrorLog(da.DTO); da.DTO.Execute.ExecuteType = DTOExecuteType.GetByID; TempModel.DEPT_ID = da.DTO.Model.DEPT_ID = DEPT_ID; da.Select(da.DTO); if (da.DTO.Model != null) { localModel = da.DTO.Model; } return(View(StandardActionName.Info, localModel)); }