Ejemplo n.º 1
0
        private List <BillFileCheck> GetBillInfo(DateTime BillTime)
        {
            List <DepositFund> DFlist = deposit.Selects().ToList <DepositFund>();
            List <FundPayment> FPlist = payment.Selects().ToList <FundPayment>();
            ObservableCollection <BillFileCheck> ocbf = new ObservableCollection <BillFileCheck>();

            return(null);
        }
Ejemplo n.º 2
0
 public List <DepositFund> Selects()
 {
     return(daoHelp.Selects() as List <DepositFund>);
 }