public ActionResult EditarChofer(int id)
        {
            var chofer = _choferBusinessLogic.ObtenerChoferPorId(id);
            var model  = new ChoferViewModel
            {
                Id             = chofer.Id,
                Apellidos      = chofer.Apellidos,
                Nombres        = chofer.Nombres,
                Telefono       = chofer.Telefono,
                DNI            = chofer.DNI,
                Email          = chofer.Email,
                Placa          = chofer.Placa,
                ModeloVehiculo = chofer.ModeloVehiculo,
                IsEditMode     = true
            };


            return(PartialView("Chofer", model));
        }