Removed unused method.
This commit is contained in:
parent
e07f76dbbe
commit
00a44e1ea3
@ -61,12 +61,5 @@ namespace eShopOnContainers.Core.Services.Catalog
|
|||||||
|
|
||||||
return MockCatalogType;
|
return MockCatalogType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<CatalogItem> GetCatalogItemAsync(string id)
|
|
||||||
{
|
|
||||||
await Task.Delay(500);
|
|
||||||
|
|
||||||
return MockCatalog.FirstOrDefault(c => c.Id == id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -60,11 +60,6 @@ namespace eShopOnContainers.Core.Services.Catalog
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<CatalogItem> GetCatalogItemAsync(string id)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<ObservableCollection<CatalogBrand>> GetCatalogBrandAsync()
|
public async Task<ObservableCollection<CatalogBrand>> GetCatalogBrandAsync()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -10,6 +10,5 @@ namespace eShopOnContainers.Core.Services.Catalog
|
|||||||
Task<ObservableCollection<CatalogItem>> FilterAsync(int catalogBrandId, int catalogTypeId);
|
Task<ObservableCollection<CatalogItem>> FilterAsync(int catalogBrandId, int catalogTypeId);
|
||||||
Task<ObservableCollection<CatalogType>> GetCatalogTypeAsync();
|
Task<ObservableCollection<CatalogType>> GetCatalogTypeAsync();
|
||||||
Task<ObservableCollection<CatalogItem>> GetCatalogAsync();
|
Task<ObservableCollection<CatalogItem>> GetCatalogAsync();
|
||||||
Task<CatalogItem> GetCatalogItemAsync(string id);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user