public void Update(string uuid, SensitiveInformation modelSI)
        {
            EntitySensitiveInformation entitySI = MappingDomainEntityToEntity.GetEntity(modelSI);

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

            CrudManagerSensitiveInformation.Update(id, entitySI);
        }