new ordering system added

This commit is contained in:
2024-09-29 23:00:32 +02:00
Unverified
parent 69937f13e6
commit 450e4a2f94
19 changed files with 275 additions and 59 deletions

View File

@@ -21,9 +21,9 @@ public class GenreQueryParameters : QueryParameters<GenreResponse>
public override bool IsMeetingConditions(GenreResponse item) =>
(
TestString(item.Name, Name)
TestStringWithRegex(item.Name, Name)
&&
TestString(item.Description, Description)
TestStringWithRegex(item.Description, Description)
);
#endregion