public DataSet FilterMessagePhoneCall(int empId, string fromDate, string toDate)
    {
        FilterPhoneCallBO objFilterPhoneCallBO = new FilterPhoneCallBO();
        objFilterPhoneCallBO.empId = empId;
        objFilterPhoneCallBO.fromDate = fromDate;
        objFilterPhoneCallBO.toDate = toDate;

        FilterMessagePhoneCallDL objFilterMessagePhoneCallDL = new FilterMessagePhoneCallDL();
        return objFilterMessagePhoneCallDL.FilterMessagePhoneCall(objFilterPhoneCallBO);
    }
    public DataSet FilterMessagePhoneCall(int empId, string fromDate, string toDate)
    {
        FilterPhoneCallBO objFilterPhoneCallBO = new FilterPhoneCallBO();

        objFilterPhoneCallBO.empId    = empId;
        objFilterPhoneCallBO.fromDate = fromDate;
        objFilterPhoneCallBO.toDate   = toDate;

        FilterMessagePhoneCallDL objFilterMessagePhoneCallDL = new FilterMessagePhoneCallDL();

        return(objFilterMessagePhoneCallDL.FilterMessagePhoneCall(objFilterPhoneCallBO));
    }