public static void Update(string uuid, ModelSensitiveInformation modelSI)
        {
            EntitySensitiveInformation entitySI = MappingModelToEntity.GetEntity(modelSI);

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

            CrudManagerSensitiveInformation.Create(entitySI);
        }