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(); } } }