public List <EntityREFACCIONES> GetAll()
 {
     this.DataContext.Database.CommandTimeout = 180;
     return(FactoryREFACCIONES.GetList(base.DataContext.REFACCIONES.ToList()));
 }
 public List <EntityREFACCIONES> GetAllRefc(DateTime Fecha, List <string> Centro, List <string> Almacen)
 {
     this.DataContext.Database.CommandTimeout = 180;
     return(FactoryREFACCIONES.GetList(base.DataContext.REFACCIONES.Where(p => DbFunctions.TruncateTime(p.Creacion.Value) == Fecha && Centro.Contains(p.CENTRO) && Almacen.Contains(p.ALMACEN)).ToList()));
 }
 public List <EntityREFACCIONES> GetActives()
 {
     return(FactoryREFACCIONES.GetList(base.DataContext.REFACCIONES.Where(p => p.Procesado == true).ToList()));
 }