You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trek12_API/Sources/DbDataManager/DbDataManager.cs

21 lines
629 B

using Model;
namespace DbDataManager;
public class DbDataManager : IDataManager
{
public IPlayersManager PlayersMgr => throw new NotImplementedException();
public IGamesManager GamesMgr => throw new NotImplementedException();
public IGamesModeManager GamesModeMgr => throw new NotImplementedException();
public ICasesManager CasesMgr => throw new NotImplementedException();
public IGrillesManager GrillesMgr => throw new NotImplementedException();
public IStatsManager StatsMgr => throw new NotImplementedException();
public ITurnsManager TurnsMgr => throw new NotImplementedException();
}