ProjectGrid/Data/DataAccessContext.TicTacToc.cs

26 lines
439 B
C#

using System.Collections.Generic;
using System.Linq;
using Microsoft.EntityFrameworkCore;
using ProjectGrid.Models;
namespace ProjectGrid.Data
{
public partial class DataAccessContext : ITicTacToctRepository
{
public bool AddPiece(TicTacTocRequest request)
{
throw new System.NotImplementedException();
}
public TicTacTocBoard GetBoard()
{
throw new System.NotImplementedException();
}
}
}