protected string GetAllUsersRevisedBulkSummary(string fromDate, string toDate)
    {
        string table = "";

        try
        {
            table = new AllUsersSummaryBLL().GetAllUsersRevisedBulkSummary(fromDate, toDate);
        }
        catch (Exception ex)
        {
        }
        return(table);
    }
Exemplo n.º 2
0
    protected string LoadKpiReport(string FromDate, string Todate)
    {
        string table = "";

        try
        {
            table = new AllUsersSummaryBLL().GetKpiReport(fromDate, toDate);
        }
        catch (Exception ex)
        {
        }
        return(table);
    }
    protected string GetDailyKpiReport(string FromDate, string Todate)
    {
        string table = "";

        try
        {
            table = new AllUsersSummaryBLL().GetDailyKpiReport(FromDate, Todate);
            return(table);
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }