예제 #1
0
 public ReportJob( IKeepTheTime timekeeper, RosterGridReport report )
 {
     Report = report;
      TimeKeeper = timekeeper;
      Logger = LogManager.GetCurrentClassLogger();
     CheckLastRun = true;
 }
예제 #2
0
 public DateTime LastRun( RosterGridReport report )
 {
     return new DateTime(2014, 05, 22);
 }
예제 #3
0
 public DateTime LastRun(RosterGridReport report )
 {
     var lastRun = new DateTime(1, 1, 1);
     lastRun = Utility.TflWs.GetLastRun(report.Name);
     return lastRun;
 }