Exemple #1
0
 public int Count_Contract_Cond(ConCond Is)
 {
     return(Contract_Cond(Is).Count);
 }
Exemple #2
0
 public List <Contract> Contract_Cond(ConCond Is) => (from c in GetContract()
                                                          where Is(c)
                                                      select c).ToList();