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