Agregar archivos de proyecto.

This commit is contained in:
2025-12-25 09:54:32 -06:00
parent 42d745e5e1
commit be7d5ef10d
99 changed files with 85993 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using MieSystem.Models;
namespace MieSystem.Data.Interfaces
{
public interface IExpedienteRepository
{
Task<Expediente?> GetByIdAsync(int id);
Task<IEnumerable<Expediente?>> GetAllAsync();
Task<int> CreateAsync(Expediente expediente);
Task<bool> UpdateAsync(Expediente expediente);
Task<bool> DeleteAsync(int id);
}
}