Last active
July 30, 2024 18:51
-
-
Save alefra88/20be2bedca8549eca8fa9dea9f1346e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class BLAlumnos | |
{ | |
private string _urlWebAPI; | |
public BLAlumnos() { } | |
public async Task<List<Alumnos>> Consultar() { } | |
public async Task<Alumnos> Consultar(int? id) { } | |
public async Task<Alumnos> Agregar(Alumnos alumnos) { } | |
public async Task Actualizar(Alumnos alumnos) { } | |
public async Task Eliminar(int id) { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment