Beispiel #1
0
 public CategoryFilter(IntegerFilter id = null, CategoryFilter owner = null, string url = null, LocalizationFilter name = null)
 {
     Id    = id;
     Owner = owner;
     Url   = url;
     Name  = name;
 }
Beispiel #2
0
 public FieldFilter(int?id = null, FormFilter form = null, FieldTypeFilter fieldType = null, string code = null, LocalizationFilter name = null)
 {
     Id        = id;
     Form      = form;
     FieldType = fieldType;
     Code      = code;
     Name      = name;
 }
Beispiel #3
0
 public MenuItemFilter(int?id = null, MenuFilter menu = null, MenuItemFilter menuItem = null, LocalizationFilter name = null, StringFilter url = null)
 {
     Id       = id;
     Menu     = menu;
     MenuItem = menuItem;
     Name     = name;
     Url      = url;
 }
Beispiel #4
0
 public ObjectFilter(int?id = null, ClassFilter @class = null, PropertyFilter property = null, LocalizationFilter stringValue = null, ObjectFilter primary = null, ObjectFilter foreign = null)
 {
     Id          = id;
     Class       = @class;
     Property    = property;
     StringValue = stringValue;
     Primary     = primary;
     Foreign     = foreign;
 }
Beispiel #5
0
 public ProductFilter(int?id = null, CategoryFilter category = null, string url = null, string code = null, LocalizationFilter name = null, LocalizationFilter description = null, DecimalFilter price = null)
 {
     Id          = id;
     Category    = category;
     Url         = url;
     Code        = code;
     Name        = name;
     Description = description;
     Price       = price;
 }
Beispiel #6
0
 public PropertyFilter(int?id = null, ObjectFilter @object = null, MemberFilter member = null, IntegerFilter integerValue = null, DecimalFilter decimalValue = null, LocalizationFilter stringValue = null, DateTimeFilter dateTimeValue = null)
 {
     Id            = id;
     Object        = @object;
     Member        = member;
     IntegerValue  = integerValue;
     DecimalValue  = decimalValue;
     StringValue   = stringValue;
     DateTimeValue = dateTimeValue;
 }
Beispiel #7
0
 public FormFilter(int?id = null, string code = null, LocalizationFilter name = null)
 {
     Id   = id;
     Code = code;
     Name = name;
 }
Beispiel #8
0
 public DeliveryMethodFilter(int?id = null, string code = null, LocalizationFilter name = null)
 {
     Id   = id;
     Code = code;
     Name = name;
 }
 public FieldOptionFilter(int?id = null, FieldFilter field = null, LocalizationFilter value = null)
 {
     Id    = id;
     Field = field;
     Value = value;
 }