-
Notifications
You must be signed in to change notification settings - Fork 0
/
Global.asax.cs
35 lines (33 loc) · 1.18 KB
/
Global.asax.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace HealthcareSystem
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
// Generate Report at 9PM or 21:00 everyday
App_Start.ReportScheduler.Instance.ScheduleTask(21, 0, 1,
() => {
// Generate daily report
// Check if today is the end of month --> report
Controllers.StaffController.GenerateDailyReport();
var today = DateTime.Today;
if (today.Day == DateTime.DaysInMonth(today.Year, today.Month))
{
Controllers.StaffController.GenerateMonthlyReport();
}
});
}
}
}