Esempio n. 1
0
 public List <EntityRefsellDetail> GetAll()
 {
     return(FactoryRefsellDetail.GetList(base.DataContext.RefsellQuotation.ToList()));
 }
Esempio n. 2
0
 public List <EntityRefsellDetail> GetActives()
 {
     return(FactoryRefsellDetail.GetList(base.DataContext.RefsellQuotation.Where(p => p.Status == true).ToList()));
 }
Esempio n. 3
0
 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()));
 }