Church.Net.API/WebAPI/Logics/Core/LogicService.cs
2022-09-08 08:04:32 -07:00

17 lines
293 B
C#

using Church.Net.DAL.EF;
namespace WebAPI.Logics.Core
{
public class LogicService
{
public LogicService(
ChurchNetContext dbContext
)
{
DbContext = dbContext;
}
public ChurchNetContext DbContext { get; }
}
}