public void ShouldDeletePerson()
		{
			// Arrange
			PersonRepository repository = new PersonRepository(ConfigSettings.MySqlDatabaseConnectionName);
			PersonEntity entity = PersonData.GetItemForInsert();
			repository.ClearCollection();
			entity = repository.Create(entity);

			// Act
			PersonEntity actual = repository.Delete(entity);

			// Assert
			Assert.AreEqual(entity.EntityId, actual.EntityId);
		}