Example #1
0
 public static DataSet GetUserList(string field, string where)
 {
     return(DataHelper.GetList("Usertable", field, where));
 }
Example #2
0
 public static DataSet GetFieldList(string field, string where)
 {
     return(DataHelper.GetList("Field", field, where));
 }
Example #3
0
 public static DataSet GetReadCaseUsersList(string field, string where)
 {
     return(DataHelper.GetList("ReadCaseUsers", field, where));
 }
Example #4
0
 public static DataSet GetAlertList(string where)
 {
     return(DataHelper.GetList("Alerttable", where));
 }
 public DataSet GetTypeDataListByTypeID(string typeid)
 {
     return(DataHelper.GetList(this.TableName, "TypeID=" + typeid));
 }
Example #6
0
 public static DataSet GetGroupList(string field, string where)
 {
     return(DataHelper.GetList("GroupTable", field, where));
 }
Example #7
0
 public static DataSet GetLeaveList(string field, string where)
 {
     return(DataHelper.GetList("LeaveManagement", field, where));
 }
Example #8
0
 public static DataSet GetNoteList(string field, string where)
 {
     return(DataHelper.GetList("NoteTable", field, where));
 }
 public static DataSet GetCaseTypeDataList(string where)
 {
     return(DataHelper.GetList("CaseTypeData", where));
 }
Example #10
0
        public static DataSet GetReportMessageList(string where, string order)
        {
            string sql = "select sender, recipient,senton,title,body, id from Messagetable where {0} {1}";

            return(DataHelper.GetList(string.Format(sql, where, order)));
        }
Example #11
0
 public static DataSet GetOpenedCaseList(string field, string where)
 {
     return(DataHelper.GetList("OpenedCase", field, where));
 }
Example #12
0
 public DataSet GetCaseList(string field, string where, string orderStr)
 {
     return(DataHelper.GetList(this.TableName, field, where, orderStr));
 }
Example #13
0
 public DataSet GetCaseList(string where)
 {
     return(DataHelper.GetList(this.TableName, where));
 }
Example #14
0
 public static DataSet GetLeadID(string userID, string CompanyID)
 {
     string where = "id in (select groupID from companyuser where companyID={0} and userID={1})";
     where        = string.Format(where, CompanyID, userID);
     return(DataHelper.GetList("GroupTable", "LeadID", where));
 }
Example #15
0
 public DataSet GetPaymentList(string field, string where)
 {
     return(DataHelper.GetList(this.TableName, field, where));
 }
Example #16
0
 public static DataSet GetPatchList(string field, string where)
 {
     return(DataHelper.GetList("Patch", field, where));
 }
Example #17
0
 public static DataSet GetCaseTypeList(string field, string where)
 {
     return(DataHelper.GetList("CaseType", field, where));
 }
Example #18
0
 public static DataSet GetCompanyList(string field, string where)
 {
     return(DataHelper.GetList("Companytable", field, where));
 }