public List <EntityPayment> GetAll()
 {
     return(FactoryPayment.GetList(base.DataContext.Payment.ToList()));
 }
 public List <EntityPayment> GetActives()
 {
     return(FactoryPayment.GetList(base.DataContext.Payment.Where(p => p.Status == true).ToList()));
 }