예제 #1
0
 public static DataSet GetNoteListByCaseType(string CompanyID, string CaseID, int type)
 {
     string where = "CompanyID= {1} and CaseID={0} and NoteType={2} ";
     return(NoteDAL.GetNoteList(string.Format(where, CaseID, CompanyID, type)));
 }
예제 #2
0
 public static DataSet GetNoteListByCaseID(string CompanyID, string CaseID)
 {
     string where = "CompanyID= {1} and CaseID={0}";
     return(NoteDAL.GetNoteList(string.Format(where, CaseID, CompanyID)));
 }
예제 #3
0
 public static DataSet GetNoteList()
 {
     return(NoteDAL.GetNoteList());
 }
예제 #4
0
 public static DataSet GetNoteList(string where)
 {
     return(NoteDAL.GetNoteList(where));
 }
예제 #5
0
 public static DataSet GetNoteByID(string id)
 {
     return(NoteDAL.GetNoteList("ID=" + id));
 }