public void Update(Cliente obj)
 {
     throw new NotImplementedException();
 }
 public string CadastrarCliente(Cliente obj)
 {
     return _clienteApp.CadastrarCliente(obj);
 }
 public void Remove(Cliente obj)
 {
     throw new NotImplementedException();
 }
 public bool AutenticarCliente(Cliente obj)
 {
     return _clienteApp.AutenticarCliente(obj);
 }