public List <Cl_Cuotas> readAll() { try { List <Cl_Cuotas> cu = new List <Cl_Cuotas>(); var cuotas = contexto.CUOTAS.ToList(); foreach (var item in cuotas) { Cl_Cuotas c = new Cl_Cuotas(); CommonBC.Syncronize(item, c); } return(cu); } catch (Exception) { return(null); } }
public List <Cl_Cuotas> generarListado(List <BibliotecaDalc.CUOTAS> socioM) { try { List <Cl_Cuotas> cu = new List <Cl_Cuotas>(); foreach (var item in socioM) { Cl_Cuotas c = new Cl_Cuotas(); CommonBC.Syncronize(item, c); cu.Add(c); } return(cu); } catch (Exception) { return(null); } }