Example #1
0
 public static async Task <MobfoxReport> GetYesterdayReport(this IMobfoxService mobfox, MobfoxApplication app = null)
 {
     return(await mobfox.GetReportOfDate(DateTime.Now.PreviousDay(), app));
 }
Example #2
0
 public Task <MobfoxReport> GetDailyReport(DateTime date, MobfoxApplication app = null)
 {
     return(_mobfoxService.GetReportOfDate(date, app));
 }
Example #3
0
 public static async Task <MobfoxReport> GetTodayReport(this IMobfoxService mobfox, MobfoxApplication app = null)
 {
     return(await mobfox.GetReportOfDate(DateTime.Now, app));
 }