DemoService/Utils/Context.cs

18 lines
488 B
C#
Raw Normal View History

2024-09-05 13:11:39 +00:00
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<Service> Services { get; set; } = new List<Service>(DbContext.Services.ToList());
}
}