public async Task <IActionResult> AddWeapon(AddWeaponDto newWeapon)
 {
     return(Ok(await _charService.AddWeapon(newWeapon)));
 }