public async Task <IActionResult> OnPostAsync()
        {
            var dto = ObjectMapper.Map <CreateEditEquipmentTypeViewModel, CreateUpdateEquipmentTypeDto>(ViewModel);
            await _service.CreateAsync(dto);

            return(NoContent());
        }
        public async Task <IActionResult> OnPostAsync()
        {
            await _service.CreateAsync(EquipmentType);

            return(NoContent());
        }