primer commit

This commit is contained in:
Leonel Toro 2025-06-24 12:32:36 -04:00
commit cdcaa6e49f
193 changed files with 11597 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DAL.Models;
namespace DAL.Interfaces
{
internal interface IDGAMedicionScadaRepository
{
public Task<List<MedicionScada>> ObtenerMedicionesAsync();
}
}