Add entries controller

This commit is contained in:
2022-08-10 21:14:27 +01:00
parent 8978af10bc
commit 2ac5937096
4 changed files with 45 additions and 4 deletions

17
Data/UnitOfWork.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Diary.Data
{
public class UnitOfWork
{
public UnitOfWork()
{
}
}
}