15 lines
288 B
C#
Raw Normal View History

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()
{
2024-05-15 21:37:18 +04:00
using var Context = new SushiBarDatabase();
return
2024-05-15 21:15:39 +04:00
}
2024-05-15 21:14:04 +04:00
}
}