in src/Modules/SimplCommerce.Module.Catalog/Areas/Catalog/ViewModels/SearchOption.cs [27:61]
public Dictionary<string, string> ToDictionary()
{
var dict = new Dictionary<string, string>();
if (!string.IsNullOrWhiteSpace(Query))
{
dict.Add("query", Query);
}
if (!string.IsNullOrWhiteSpace(Brand))
{
dict.Add("brand", Brand);
}
if (!string.IsNullOrWhiteSpace(Category))
{
dict.Add("category", Category);
}
if (MinPrice.HasValue)
{
dict.Add("minPrice", MinPrice.Value.ToString());
}
if (MaxPrice.HasValue)
{
dict.Add("maxPrice", MaxPrice.Value.ToString());
}
if (!string.IsNullOrWhiteSpace(Sort))
{
dict.Add("sort", Sort);
}
return dict;
}