public Common.Model.Data.ICustomer Get(string id)
        {
            Customer C = repository.Single <Customer>(d => d.CustomerName == "Mark Anderson");

            return(C);

            //return new Customer() { CustomerId = new Guid(), CustomerName = "Test Name"};
        }