Exemple #1
0
 public KeOperation(KeSchema schema, string name, bool isBound, KePathExpression entitySetPathExpression)
     : base(name)
 {
     DeclaringSchema = schema;
     IsBound         = isBound;
     EntitySetPath   = entitySetPathExpression;
 }
Exemple #2
0
 public KeAction(KeSchema schema, string name, bool isBound, KePathExpression entitySetPathExpression)
     : base(schema, name, isBound, entitySetPathExpression)
 {
 }
Exemple #3
0
 public KeFunction(KeSchema schema, string name, bool isBound, KePathExpression entitySetPathExpression, bool isComposable)
     : base(schema, name, isBound, entitySetPathExpression)
 {
     IsComposable = isComposable;
 }