Exemplo n.º 1
0
        public TypeViewModel Add(TypeViewModel typeViewModel)
        {
            var productCategory = typeViewModel.AddModel();

            _typeRepository.Add(productCategory);
            return(typeViewModel);
        }
Exemplo n.º 2
0
        public void Update(TypeViewModel typeViewModel)
        {
            var productCategory = typeViewModel.AddModel();

            _typeRepository.Update(productCategory);
        }