public void add(AddCategoryVm vm)
        {
            var entity = Mapper.Map <Device_Categories>(vm);

            _categoryRepository.add(entity);
        }
Exemple #2
0
 public ActionResult Add(AddCategoryVm vm)
 {
     _categoryService.add(vm);
     return(View());
 }