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