Beispiel #1
0
 public RowFilterAttribute(string controller, string view, string fieldName, RowFilterOperation operation)
 {
     this._controller = controller;
     this._view       = view;
     this._fieldName  = fieldName;
     _operation       = operation;
 }
Beispiel #2
0
 public FieldFilter(string fieldName, RowFilterOperation operation, object value)
 {
     this.FieldName = fieldName;
     this.Operation = operation;
     this.Value     = value;
 }
Beispiel #3
0
 public FieldFilter(string fieldName, RowFilterOperation operation) :
     this(fieldName, operation, null)
 {
 }
Beispiel #4
0
 public FieldFilter(string fieldName, RowFilterOperation operation, object value)
 {
     this.FieldName = fieldName;
     this.Operation = operation;
     this.Value = value;
 }
Beispiel #5
0
 public FieldFilter(string fieldName, RowFilterOperation operation)
     : this(fieldName, operation, null)
 {
 }