public void Can_get_existing_customer_by_name()
		{
			ICustomerRepository repository = new CustomerRepository();
			var fromDb = repository.GetByFirstname(_customers[1].Firstname);

			Assert.IsNotNull(fromDb);
			Assert.AreNotSame(_customers[1], fromDb);
			Assert.AreEqual(_customers[1].CustomerID, fromDb.CustomerID);
		}