public void GetSattledBids()
        {
            var sattledBids = SettledReader.GetAllSettledCustomers();

            Assert.IsNotNull(sattledBids);
        }
示例#2
0
        /// <summary>
        /// Get the of list of Sattled bits form CSV file
        /// </summary>
        /// <returns></returns>

        private List <SettledBit> GetSattledCustomerList()
        {
            var lstSattledBits = SettledReader.GetAllSettledCustomers();

            return(lstSattledBits);
        }