private void FindByKey()
        {
            var c = customerRepository.FindByName("John", "Doe");

            var customer = customerRepository.GetByKey <Customer>(c.Id);

            Console.Write("Found Customer by its PK: {0}", customer != null);
        }