public void GetCustomerEmailShouldReturnCustomer()
        {
            using (var context = new StoreDBContext(options))
            {
                IStoreRepository _repo = new StoreRepoDB(context);
                var foundCustomer      = _repo.GetCustomerByEmail("*****@*****.**");

                Assert.NotNull(foundCustomer);
                Assert.Equal("*****@*****.**", foundCustomer.CustomerEmail);
            }
        }