Beispiel #1
0
 public bool SaveUser(string Username, string Nome, string Password)
 {
     UsuarioBusiness UsuarioBusiness = new UsuarioBusiness();
     return UsuarioBusiness.Salvar(Username, Nome, Password);
 }
Beispiel #2
0
 public List<UsuarioListagemDTO> GetUsuarios(string Nome, string Username)
 {
     UsuarioBusiness UsuarioBusiness = new UsuarioBusiness();
     return UsuarioBusiness.GetUsuarios(Nome, Username);
 }
Beispiel #3
0
 public bool LogUser(string Username, string Password)
 {
     UsuarioBusiness UsuarioBusiness = new UsuarioBusiness();
     return UsuarioBusiness.LogUser(Username, Password);
 }
Beispiel #4
0
 public List<UsuarioListagemDTO> GetAllUsuarios()
 {
     UsuarioBusiness UsuarioBusiness = new UsuarioBusiness();
     return UsuarioBusiness.GetAllUsuarios();
 }