internal void Report(int Lapstime) { Console.WriteLine(this.ToFullString()); System.Diagnostics.Debug.WriteLine(this.ToFullString()); ActiveDeskRobot.ReportEntry(Lapstime, this.Date, this.FirmaAddressContact, this.PositionTitleLocation, PositionAssigned, FullTime, PartTime, PostulationWritten, PostulationPerso, PostulationTelephon, StillOpen, HadInterview, Hired, Fired, HiringProcess_Notes); }
public void Report(List <PostulationReportEntry> toBeReported, int lapstime) { // first Header report ActiveDeskRobot.ReportHeader(lapstime, this.Name, this.AHVNb, this.Period); // second line report toBeReported.ForEach(p => p.Report(lapstime)); }