Exemplo n.º 1
0
    public string asyncGetCrewEvaluation_FeedbackCompleted(int CrewEvaluation_ID, int Vessel_ID, int Office_ID)
    {
        DataTable dt = BLL_Crew_Evaluation.Get_FeedbackCompleted(CrewEvaluation_ID, Vessel_ID, Office_ID);

        Dictionary <string, UDCHyperLink> dicLink = new Dictionary <string, UDCHyperLink>();

        return(UDFLib.CreateHtmlTableFromDataTable(dt,
                                                   new string[] { "Requested By", "Requested On", "Comment", "Requested From", "Submitted On", "Feedback", "Action" },
                                                   new string[] { "createdBy", "creationDate", "Req_Remark", "requestedFrom", "CompletionDate", "Remark", "Category" },
                                                   dicLink,
                                                   new Dictionary <string, UDCToolTip>(),
                                                   new string[] { "left", "center", "left", "center", "left" },
                                                   "tbl-common-Css",
                                                   "hdr-common-Css",
                                                   "row-common-Css"));
    }