26 lines
446 B
C#
26 lines
446 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 Models.TicTacTocBoard GetBoard()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
|
|
}
|