using DemoService.Context; using DemoService.Models; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DemoService.Utils { public static class Context { public static OvsyannikovContext DbContext { get; set; } = new OvsyannikovContext(); public static List Services { get; set; } = new List(DbContext.Services.ToList()); } }