Example #1
0
        private decimal GetTotalRetailFee()
        {
            decimal totalRetailFee = 0;

            if (_listDeptStore.Count > 0)
            {
                foreach (QueryStoreDept storeDept in _listDeptStore)
                {
                    totalRetailFee += YP_Loader.LoadRetailFee(storeDept.DeptDic);
                }
            }
            return(totalRetailFee);
        }