/// <summary> /// rertorna listado de bancos pertenecientes al proyecto /// </summary> /// <param name="b"></param> /// <returns></returns> public List<compromisosxcuota> Listcompromisosxcuota( int tarea) { try { List<compromisosxcuota> lisb = bd.compromisosxcuota.Where(t => t.ID_TAREA == tarea).ToList(); //bd.compromisosxcuota.ToList(); List<compromisosxcuota> lisbcrm = new List<compromisosxcuota>(); if (lisb.Count.Equals(0)) { return lisbcrm; } else { foreach (var item in lisb) { compromisosxcuota entb = new compromisosxcuota(); entb.ID = item.ID; entb.ID_TAREA = item.ID_TAREA; entb.CODIGO = item.CODIGO; lisbcrm.Add(entb); } return lisbcrm; } } catch (Exception) { throw; } }
/// <summary> /// Meotod para registrar los bancos en base de datos /// crm /// </summary> /// <param name="b"></param> /// <returns></returns> public int InserCompromisoCuota(compromisosxcuota b) { try { bd.compromisosxcuota.Add(b); bd.SaveChanges(); return 1; } catch (DbUpdateException) { return 0; } catch (Exception) { throw; } }
public int InsertCompromisoCuota(compromisosxcuota b) { return cl.InserCompromisoCuota(b); }