Ejemplo n.º 1
0
        public void AdicionandoEstante()
        {
            var shelf = new Shelf
            {
                Number = 100
            };

            _shelfRepository.Add(shelf);
            _uow.Commit();
        }