Exemplo n.º 1
0
 public static bool IsPrint(string myObject)
 {
     return(MyRule.Check(MyRule.EnumRule.AllowPrint, myObject));
 }
Exemplo n.º 2
0
 public static bool IsImport(string myObject)
 {
     return(MyRule.Check(MyRule.EnumRule.AllowImport, myObject));
 }
Exemplo n.º 3
0
 public static bool IsAdd(string myObject)
 {
     return(MyRule.Check(MyRule.EnumRule.AllowAdd, myObject));
 }
Exemplo n.º 4
0
 public static bool IsDelete(string myObject)
 {
     return(MyRule.Check(MyRule.EnumRule.AllowDelete, myObject));
 }
Exemplo n.º 5
0
 public static bool Check(string myObject)
 {
     return(MyRule.Check(MyRule.EnumRule.All, myObject));
 }