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