Esempio n. 1
0
 public decimal?GetTotal(MaterialBase.Material material)
 {
     return(Parent.GetTotal(material));
 }
Esempio n. 2
0
        public decimal?GetTotal(MaterialBase.Material type)
        {
            var result = OrdersView.Where(x => x.Type == type).Sum(x => x.Content.Total);

            return(result);
        }