Example #1
0
    public string CommitReportedVolunteerListToNI_DB(string start_date, string only_with_rides)
    {
        try
        {
            string       cell_phone = (string)HttpContext.Current.Session["userSession"];
            HttpResponse response   = GzipMe();

            ReportService report = new ReportService();
            report.CommitReportedVolunteerListToNI_DB(cell_phone, start_date, only_with_rides);
            return("OK");
        }
        catch (Exception ex)
        {
            Log.Error("Error in CommitReportedVolunteerListToNI_DB", ex);
            throw new Exception("שגיאה בשליפת נתוני הסעות");
        }
    }