示例#1
0
 public static int UpdateByCase(FirstCall firstCall)
 {
     firstCall.CaseId = FirstCallDAL.UpdateByCase(firstCall);
     return(firstCall.CaseId);
 }
示例#2
0
 public static int Update(FirstCall firstCall)
 {
     firstCall.FcallId = FirstCallDAL.Update(firstCall);
     return(firstCall.FcallId);
 }
示例#3
0
 public static List <FirstCall> GetList()
 {
     return(FirstCallDAL.GetList());
 }
示例#4
0
 public static int Insert(FirstCall firstCall)
 {
     firstCall.FcallId = FirstCallDAL.Insert(firstCall);
     return(firstCall.FcallId);
 }
示例#5
0
 public static FirstCall GetItem(int id)
 {
     return(FirstCallDAL.GetItem(id));
 }