public bool Equals(ProductCategoriesFilter other) { return(PageFilter.Equals(other.PageFilter) && string.Equals(Title, other.Title)); }
public bool Equals(ProductsFilter other) { return(PageFilter.Equals(other.PageFilter) && string.Equals(Title, other.Title) && MinPrice == other.MinPrice && MaxPrice == other.MaxPrice); }