public Customer(int customerId)
    {
        _customerRepository.Load(this);

        ICustomerTypeRepository _customerTypeRepository = IoC.Resolve(..);

        _customerTypes = _customerTypeRepository.GetList();
    }