public List <TEntity> ListaTodo() { using (var Conec = new DAL.ParcialDb()) { try { return(EntitySet.ToList()); } catch (Exception) { throw; } } return(null); }
public static bool Guardar(Entidades.Empleados empleado) { using (var conec = new DAL.ParcialDb()) { try { conec.Empleado.Add(empleado); foreach (var g in empleado.Retenciones) { conec.Entry(g).State = System.Data.Entity.EntityState.Unchanged; } conec.SaveChanges(); return(true); } catch (Exception) { throw; } } return(false); }
public Repository() { Context = new ParcialDb(); }