예제 #1
0
 public ApiResult <bool> Update(Client model)
 {
     using (clientDal)
     {
         return(clientDal.Update(model));
     }
 }
예제 #2
0
 public bool Update(Client client, string phone)//用户修改信息
 {
     return(dal.Update(client, phone) > 0);
 }