示例#1
0
 public JsonResult GeneralAction(int id, int ActionType)
 {
     MEMBERS.SQLReturnValue mRes = new BranchMasterLogic().BranchMaster_GeneralAction(id, ActionType);
     return(Json(mRes.Outval, JsonRequestBehavior.AllowGet));
 }
示例#2
0
 public JsonResult Save(BranchMasterClass model)
 {
     MEMBERS.SQLReturnValue mRes = new BranchMasterLogic().BranchMaster_Insert_Update(model);
     return(Json(mRes.Outval, JsonRequestBehavior.AllowGet));
 }
示例#3
0
        public JsonResult Get_GetAll(int id)
        {
            object data = new BranchMasterLogic().BranchMaster_Get_GetAll(id, null);

            return(Json(data, JsonRequestBehavior.AllowGet));
        }
        public JsonResult GetAllBranch()
        {
            object data = new BranchMasterLogic().BranchMaster_Get_GetAll(0, true);

            return(Json(data, JsonRequestBehavior.AllowGet));
        }