public void Can_get_Customers_By_DateCreated()
		{
			ICustomerRepository repository = new CustomerRepository();
			var fromDB = repository.GetByDateCreated(DateTime.Now.AddMinutes(-5), DateTime.Now.AddMinutes(5));

			Assert.IsNotNull(fromDB);
			// needs refactoring, hardcoded 3 from _Customers with dateCreated = now.
			Assert.AreEqual(fromDB.Count, 3);
		}