public async Task InsertMenu(MenuInputDto input) { var menu = _mapper.Map <Menu>(input); await _menuManager.InsertAsync(menu); }