BLL 层有个方法 public TbUser UpdateUserById(string id){ 。。。。。。 如果id为空或为Null, throw ....."id 不能为空"} 这样的方法在其它层调用时,怎么体现异常?如果不抛出异常如何作提示?
2 回答
蝴蝶不菲
TA贡献1810条经验 获得超4个赞
public class UpdateUserResponse
{
public bool IsSuccess {get;set;}
public string Message {get;set;}
public TbUser TbUser {get;set;}
}
public UpdateUserResponse UpdateUserById(string id)
{
var response = new UpdateUserResponse();
if(String.IsNullOrEmpty(id))
{
response.IsSuccess = false;
response.Message = "id 不能为空";
}- 2 回答
- 0 关注
- 429 浏览
添加回答
举报
0/150
提交
取消
