Exemple #1
0
        public BoardGameLite GetFromDb(int entityId)
        {
            IRepository <BoardGameLite> boardGameLiteRepository = GetRepository();
            BoardGameLite boardGameLite = boardGameLiteRepository.GetEntityById(entityId);

            return(boardGameLite);
        }
 public void Update(BoardGameLite entity)
 {
     throw new NotImplementedException();
 }
 public void Insert(BoardGameLite entity)
 {
     throw new NotImplementedException();
 }