private async Task UpdateChofer(ChoferViewModel model)
        {
            var chofer = _choferBusinessLogic.ObtenerChoferPorId(model.Id);

            chofer.Nombres        = model.Nombres;
            chofer.Apellidos      = model.Apellidos;
            chofer.DNI            = model.DNI;
            chofer.Telefono       = model.Telefono;
            chofer.Placa          = model.Placa;
            chofer.ModeloVehiculo = model.ModeloVehiculo;

            _choferBusinessLogic.ActualizarChofer(chofer);

            await UserManager.RemovePasswordAsync(chofer.UserId.ToString());

            await UserManager.AddPasswordAsync(chofer.UserId.ToString(), model.Password);
        }