Example #1
0
        public static IEnumerable <ParameterBase> ToParameters(this TableRelationTableFilterLine tableRelationTableFilterLine)
        {
            yield return(new SimpleParameter("FieldName", tableRelationTableFilterLine.FieldName));

            yield return(new SimpleParameter("Type", tableRelationTableFilterLine.Type));

            yield return(new SimpleParameter("Value", tableRelationTableFilterLine.Value));
        }
Example #2
0
 public static Invocation ToInvocation(this TableRelationTableFilterLine tableRelationFilterLine)
 {
     return(new Invocation("New-CBreezeTableRelationFilter", tableRelationFilterLine.ToParameters()));
 }