Exemplo n.º 1
0
        public async Task TestGetCustomer()
        {
            OrderDataContext orderDataContext = new OrderDataContext(_connectionString);

            var customer = await orderDataContext.GetCustumer(1);

            Assert.AreEqual("UK", customer.Country);
        }