public void Create(SensitiveInformation modelSI)
        {
            EntitySensitiveInformation entitySI = MappingDomainEntityToEntity.GetEntity(modelSI);

            CrudManagerSensitiveInformation.Create(entitySI);
        }
        public static void Create(ModelSensitiveInformation modelSI)
        {
            EntitySensitiveInformation entitySI = MappingModelToEntity.GetEntity(modelSI);

            CrudManagerSensitiveInformation.Create(entitySI);
        }