Skip to content

Instantly share code, notes, and snippets.

@nmelox
Created September 9, 2013 02:38
Show Gist options
  • Save nmelox/6490878 to your computer and use it in GitHub Desktop.
Save nmelox/6490878 to your computer and use it in GitHub Desktop.
Trata de ser una Interfaz de de las operaciones CRUD (Create,Read,Update,Delete).
namespace Proveedores
{
public interface IMapeadorCRUD(of V, F)
{
bool Agregar(V valor);
bool Modificar(V valor);
bool Eliminar(V valor);
List(Of V) Listar(F filtro);
V Consultar(F filtro);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment