using Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Data.EF.Players { public class PlayerDBManager : IManager { public PlayerEntity Add(PlayerEntity toAdd) { throw new NotImplementedException(); } public IEnumerable GetAll() { throw new NotImplementedException(); } public PlayerEntity GetOneByName(string name) { throw new NotImplementedException(); } public void Remove(PlayerEntity toRemove) { throw new NotImplementedException(); } public PlayerEntity Update(PlayerEntity before, PlayerEntity after) { throw new NotImplementedException(); } } }