public List <EntityRefsellDetail> GetAll() { return(FactoryRefsellDetail.GetList(base.DataContext.RefsellQuotation.ToList())); }
public List <EntityRefsellDetail> GetActives() { return(FactoryRefsellDetail.GetList(base.DataContext.RefsellQuotation.Where(p => p.Status == true).ToList())); }
public List <EntityRefsellDetail> GetByID(int Fk_QuotationDetail) { return(FactoryRefsellDetail.GetList(base.DataContext.RefsellQuotation.Where(p => p.Fk_QuotationID == Fk_QuotationDetail).OrderBy(p => p.Origen).ToList())); }