public IActionResult IndexSingle(int typeId)
        {
            IEnumerable <Type> typeInfo = new List <Type>
            {
                _repository.Get(typeId)
            };

            return(View(typeInfo));
        }
Ejemplo n.º 2
0
 public List <Domain.Entities.Type> Get()
 {
     try
     {
         var res = _typesRepo.Get();
         return(res);
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 3
0
        public void Delete(int id)
        {
            var type = _typesRepository.Get(id);

            if (type == null)
            {
                throw new ApplicationException("Błąd, brak encji");
            }

            if (!_typesRepository.Delete(type))
            {
                throw new ApplicationException("Błąd, blad zapisu");
            }
        }
Ejemplo n.º 4
0
        public void Get_Test()
        {
            var _model = _applicationDbContext.Types.First();
            var model  = _typesRepository.Get(_model.ID);

            Assert.AreEqual(_model.ID, model.ID);
            Assert.AreEqual(_model.Description, model.Description);
        }
Ejemplo n.º 5
0
        // GET /product/1
        public TypeModel Get(int id)
        {
            var product = _repository.Get(id);

            return(new TypeModel
            {
                Id = product.Id,
                Name = product.Name,
                //  ProductEntity = product.ProductEntity
            });
        }
Ejemplo n.º 6
0
 public string GetTypeName(int id)
 {
     return(_typesRepository.Get(id).Name);
 }