public bool AuthenticationUser(string userName, string password) { var status = new Authentication(); var statusReturn = status.AuthenticateUser(userName, password); return statusReturn; }
public bool AuthenticationUser(string UserName, string Password) { var status = new Authorization.Authentication(); var statusReturn = status.AuthenticateUser(UserName, Password); return statusReturn; }