public ShipManual GetManual(string controllerName, string actionName) { ShipManual file = new ShipManual(); ShipDAL shipDAL = new ShipDAL(); file = shipDAL.GetManual(controllerName, actionName); return(file); }