public JsonResult ModificarEntrega(int id, DateTime fechaEntrega)
        {
            int message = 0;
            //Invocamos al servicio
            var service = new GestorEntrega();

            service.modificarEntrega(id, fechaEntrega);

            message = 1;

            return(Json(new
            {
                Message = message
            }, JsonRequestBehavior.AllowGet));
        }