public IEnumerable <Customer> GetBy(Expression <Func <Customer, bool> > predicate)
 {
     return(_dataBaseTransaction.FindBy(predicate));
 }
 public IEnumerable <Invoice> GetBy(Expression <Func <Invoice, bool> > predicate)
 {
     return(_dataBaseTransaction.FindBy(predicate));
 }