This commit is contained in:
2025-01-30 23:27:47 -03:00
parent b98cf77807
commit 68745cab5e
9 changed files with 660 additions and 6 deletions

View File

@@ -82,7 +82,7 @@ public class ContratoController: ControllerBase {
Recibo re = new Recibo{
Monto = c.Monto,
Fecha = c.Fecha,
Fecha = DateTime.Now,
};
bool ret = RepositorioCanons.Singleton.SetRecibo(c, re, cli.Dni);
@@ -111,7 +111,7 @@ public class ContratoController: ControllerBase {
Recibo re = new Recibo{
Monto = c.Monto,
Fecha = c.Fecha,
Fecha = DateTime.Now,
};
bool ret = RepositorioCanons.Singleton.SetRecibo(c, re, cli.Dni);