public string CheckValidationUser(string userid) { string result = string.Empty; try { using (UserBLL userBLL = new UserBLL()) { result = userBLL.Assembly_CheckValidationUser(userid); } } catch (Exception ex) { result = ex.Message; } return(result); }