説明なし

T_Report.cs 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Data;
  3. using System.Text;
  4. using System.Data.SqlClient;
  5. using XYFDRQ.DBUtility;//Please add references
  6. namespace XYFDRQ.BLL
  7. {
  8. /// <summary>
  9. /// 数据访问类:T_Report
  10. /// </summary>
  11. public partial class T_Report
  12. {
  13. private readonly XYFDRQ.DAL.T_Report dal = new XYFDRQ.DAL.T_Report();
  14. public T_Report()
  15. { }
  16. #region Method
  17. /// <summary>
  18. ///获取坐席话务报表
  19. /// </summary>
  20. public DataTable GetAgentCallRecordReport(string strWhere)
  21. {
  22. return dal.GetAgentCallRecordReport(strWhere) ;
  23. }
  24. /// <summary>
  25. ///获取坐席业务报表
  26. /// </summary>
  27. public DataTable GetAgentBusinessReport(string strWhere)
  28. {
  29. return dal.GetAgentBusinessReport(strWhere);
  30. }
  31. /// <summary>
  32. ///获取客户满意度
  33. /// </summary>
  34. public DataTable GetCustomerValuationReport(string strWhere)
  35. {
  36. return dal.GetCustomerValuationReport(strWhere);
  37. }
  38. /// <summary>
  39. ///获取来电方式业务报表
  40. /// </summary>
  41. public DataTable GetCallInTypeReport(string strWhere)
  42. {
  43. return dal.GetCallInTypeReport(strWhere);
  44. }
  45. //GetCallCountReport
  46. /// <summary>
  47. ///话务量统计
  48. /// </summary>
  49. public DataTable GetCallCountReport(string strWhere)
  50. {
  51. return dal.GetCallCountReport(strWhere);
  52. }
  53. /// <summary>
  54. ///话务量统计(表格形式)
  55. /// </summary>
  56. public DataTable GetCallCountReport1(string strWhere)
  57. {
  58. return dal.GetCallCountReport1(strWhere);
  59. }
  60. #endregion Method
  61. }
  62. }