public Int32 AddDailyReportTotalPeople(DailyReportTotalPeople dailyReportTotalPeople)
 {
     _admin = new CharmEventsAdminService.CharmEventsAdminServiceClient();
     try
     {
         int rs = _admin.AddDailyReportTotalPeople(dailyReportTotalPeople);
         _admin.Close();
         return(rs);
     }
     catch (Exception ex)
     {
         _admin.CloseCatch(ex, "AddDailyReportTotalPeople failed");
         return(0);
     }
 }