public bool HasUser(string entry) { return(VolupiaDAO.HasUser(entry)); }
public bool ValidateUser(string userName, string password) { return(VolupiaDAO.ValidateUser(userName, password)); }
private string GetUser(string userName, string password) { return(VolupiaDAO.GetUser(userName, password)); }
public bool Register(string user) { return(VolupiaDAO.InsertUser(user)); }
public bool HasMail(string entry) { return(VolupiaDAO.HasMail(entry)); }