Ejemplo n.º 1
0
 public static void DeleteCondition(IConditionBase condition)
 {
     if (condition != null)
     {
         ConditionBases.Delete(condition);
     }
 }
Ejemplo n.º 2
0
 public static IConditionBase GetCondition(int id)
 {
     return(ConditionBases.GetAll().Where(c => c.Id == id).FirstOrDefault());
 }