public void CanLoadPurchaseTypes()
        {
            var repo  = new SaleRepo();
            var types = repo.GetPurchaseMethods();

            Assert.AreEqual(3, types.Count());
            Assert.AreEqual(1, types[0].PurchaseMethodId);
            Assert.AreEqual("Cash", types[0].PurchaseType);
        }