public void Add(string CompanyName, string Email)
        {
            Customer customerProfile = new Customer
            {
                CompanyName  = CompanyName,
                EmailAddress = Email
            };

            _customerProfileRepository.AddCustomerProfile(customerProfile);
        }