ProjectGrid/Data/DataAccessContext.TicTacToc.cs

26 lines
440 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(TicTacTocMove user)
{
throw new System.NotImplementedException();
}
public Models.TicTacTocBoard GetBoard()
{
throw new System.NotImplementedException();
}
}
}