public bool UserExist(string userName, string password) { try { return(_da.UserExist(userName.ToUpper(), password)); } catch { throw; } }