예제 #1
0
        public static async Task <decimal> GetLeaseColxnsTotal(this ByfClient1 client, DateTime date)
        {
            var dynamics = await client.GetRawByfLeaseColxns(date);

            var total = 0M;

            foreach (var byf in dynamics)
            {
                total += GetSubTotal(byf);
            }

            return(total);
        }
예제 #2
0
 protected override Task <List <dynamic> > GetRawBYFsList(ByfClient1 client, DateTime date)
 => client.GetRawByfLeaseColxns(date);