using Rs_system.Models; namespace Rs_system.Services; public interface IContabilidadService { Task CrearRegistroAsync(ContabilidadRegistro registro); Task> ObtenerRegistrosAsync(long grupoId, DateTime desde, DateTime hasta); // Monthly Report Methods Task ObtenerReporteMensualAsync(long grupoId, int mes, int anio); Task ObtenerOCrearReporteMensualAsync(long grupoId, int mes, int anio); Task> ListarReportesPorGrupoAsync(long grupoId); Task GuardarRegistrosBulkAsync(long reporteId, List registros); Task CalcularSaldoActualAsync(long reporteId); Task CerrarReporteAsync(long reporteId); }