public void CreateDefaultIdentificationTypes()
        {
            _identificationTypesRepository.AddIdentificationType(new IdentificationType
            {
                IdentificationDescription =
                    IdentificationTypes.CedNumber.ToStringValue
                        ()
            });

            _identificationTypesRepository.AddIdentificationType(new IdentificationType
            {
                IdentificationDescription =
                    IdentificationTypes.ResidenceCedNumber.
                    ToStringValue()
            });

            _identificationTypesRepository.AddIdentificationType(new IdentificationType
            {
                IdentificationDescription =
                    IdentificationTypes.Passport.ToStringValue()
            });

            _identificationTypesRepository.AddIdentificationType(new IdentificationType
            {
                IdentificationDescription =
                    IdentificationTypes.Other.ToStringValue()
            });
        }
 private void AddIdentificationType(IdentificationType identificationType)
 {
     _identificationTypesRepository.AddIdentificationType(identificationType);
 }