Esempio n. 1
0
        private static void SoftDelete(
            ICustomizersHolder customizerHolder,
            object[] attributes)
        {
            var attribute = attributes.GetAttribute <SoftDeleteAttribute>();

            if (attribute != null)
            {
                customizerHolder.SoftDelete();
            }
        }
 private static void SoftDelete(
     ICustomizersHolder customizerHolder,
     object[] attributes)
 {
     var attribute = attributes.GetAttribute<SoftDeleteAttribute>();
     if (attribute != null)
     {
         customizerHolder.SoftDelete();
     }
 }