15 lines
288 B
C#
15 lines
288 B
C#
using SushiBarContracts.ViewModels;
|
|
|
|
namespace SushiBarDatabaseImplement.Storages
|
|
{
|
|
public class IngredientStorage
|
|
{
|
|
public List<IngredientViewModel> GetFullList()
|
|
{
|
|
using var Context = new SushiBarDatabase();
|
|
|
|
return
|
|
}
|
|
}
|
|
}
|