Skip to content

Commit 3ff0529

Browse files
authored
Merge pull request #532 from bcgov/yj
fix: max length 230 to 320
2 parents bffe41f + f8f0077 commit 3ff0529

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

server/StrDss.Service/RentalListingReportValidationRule.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
5757
FieldName = RentalListingReportFields.BusLicNo,
5858
FieldType = FieldTypes.String,
5959
Required = false,
60-
MaxLength = 230
60+
MaxLength = 320
6161
});
6262

6363
rules.Add(new FieldValidationRule
@@ -111,7 +111,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
111111
FieldName = RentalListingReportFields.PropertyHostNm,
112112
FieldType = FieldTypes.String,
113113
Required = false,
114-
MaxLength = 230
114+
MaxLength = 320
115115
});
116116

117117
rules.Add(new FieldValidationRule
@@ -158,7 +158,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
158158
FieldName = RentalListingReportFields.SupplierHost1Nm,
159159
FieldType = FieldTypes.String,
160160
Required = false,
161-
MaxLength = 230
161+
MaxLength = 320
162162
});
163163

164164
rules.Add(new FieldValidationRule
@@ -214,7 +214,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
214214
FieldName = RentalListingReportFields.SupplierHost2Nm,
215215
FieldType = FieldTypes.String,
216216
Required = false,
217-
MaxLength = 230
217+
MaxLength = 320
218218
});
219219

220220
rules.Add(new FieldValidationRule
@@ -270,7 +270,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
270270
FieldName = RentalListingReportFields.SupplierHost3Nm,
271271
FieldType = FieldTypes.String,
272272
Required = false,
273-
MaxLength = 230
273+
MaxLength = 320
274274
});
275275

276276
rules.Add(new FieldValidationRule
@@ -326,7 +326,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
326326
FieldName = RentalListingReportFields.SupplierHost4Nm,
327327
FieldType = FieldTypes.String,
328328
Required = false,
329-
MaxLength = 230
329+
MaxLength = 320
330330
});
331331

332332
rules.Add(new FieldValidationRule
@@ -382,7 +382,7 @@ public static void LoadReportValidationRules(List<FieldValidationRule> rules)
382382
FieldName = RentalListingReportFields.SupplierHost5Nm,
383383
FieldType = FieldTypes.String,
384384
Required = false,
385-
MaxLength = 230
385+
MaxLength = 320
386386
});
387387

388388
rules.Add(new FieldValidationRule

0 commit comments

Comments
 (0)