2024-05-15 21:15:39 +04:00
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarDatabaseImplement.Storages
|
2024-05-15 21:14:04 +04:00
|
|
|
|
{
|
|
|
|
|
public class IngredientStorage
|
|
|
|
|
{
|
2024-05-15 21:15:39 +04:00
|
|
|
|
public List<IngredientViewModel> GetFullList()
|
|
|
|
|
{
|
|
|
|
|
return new List<IngredientViewModel>();
|
|
|
|
|
}
|
2024-05-15 21:14:04 +04:00
|
|
|
|
}
|
|
|
|
|
}
|