30 lines
811 B
C#
30 lines
811 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using ULA.Cathay.CreditoModel.Credito;
|
|
using Ultimus.Utilitarios;
|
|
|
|
namespace ULA.Cathay.CreditoModel.DAL.Credito
|
|
{
|
|
public class FormalizacionCondicionesVariasDAL
|
|
{
|
|
UltimusLogs logs = new UltimusLogs("FormalizacionCondicionesVariasDAL");
|
|
|
|
public List<FormalizacionCondicionesVarias> Obtener()
|
|
{
|
|
List<FormalizacionCondicionesVarias> model = null;
|
|
try
|
|
{
|
|
using (CreditoContex db = new CreditoContex())
|
|
{
|
|
model = db.FormalizacionCondicionesVarias.ToList();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logs.Error(ex);
|
|
}
|
|
return model;
|
|
}
|
|
}
|
|
}
|