コード例 #1
0
ファイル: NCRController.cs プロジェクト: cryshansen/NCR_Demo
 public static void DeleteCause(int causeId)
 {
     Causes.DeleteCause(causeId);
 }
コード例 #2
0
ファイル: NCRController.cs プロジェクト: cryshansen/NCR_Demo
 public static void UpdateCause(int id, int rid, string title, string content)
 {
     Causes.UpdateCause(id, rid, title, content);
 }
コード例 #3
0
ファイル: NCRController.cs プロジェクト: cryshansen/NCR_Demo
 public static DataSet LookupCauseDDLById(int Id)
 {
     return(Causes.LookupCauseDDLById(Id));
 }
コード例 #4
0
ファイル: NCRController.cs プロジェクト: cryshansen/NCR_Demo
 public static int AddCause(int rid, string title, string content)
 {
     return(Causes.AddCause(rid, title, content));
 }
コード例 #5
0
ファイル: NCRController.cs プロジェクト: cryshansen/NCR_Demo
        //----------------------  Causes  ------------------

        public static DataSet getCausesByReportId(int reportId)
        {
            return(Causes.LookupCauses(reportId));
        }