コード例 #1
0
 public ReminderManager()
 {
     BootStrap.Config();
     _ticketsApp     = new TicketsApplication();
     _usersApp       = new UserApplication();
     _projectApp     = new ProjectApplication();
     _historyManager = new ReminderHistoryManager();
 }
コード例 #2
0
ファイル: PaymentCheck.cs プロジェクト: KhaledSMQ/SunNet.PM
 public PaymentCheck()
 {
     BootStrap.Config();
     paymentManagerEmail = ConfigurationManager.AppSettings["PaymentManagerEmail"];
     teamEmail           = ConfigurationManager.AppSettings["TeamEmail"];
     proposalTrackerApp  = new ProposalTrackerApplication();
     projectApp          = new ProjectApplication();
     _invoicesApp        = new InvoicesApplication();
 }
コード例 #3
0
ファイル: Global.asax.cs プロジェクト: KhaledSMQ/SunNet.PM
        protected void Application_Start()
        {
            SFConfig.Init();
            AreaRegistration.RegisterAllAreas();

            WebApiConfig.Register(GlobalConfiguration.Configuration);
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);
            AuthConfig.RegisterAuth();
            ConfigLog4net();
            GlobalDataBusiness.SetGolbalData();

            BootStrap.Config();
        }
コード例 #4
0
ファイル: Global.asax.cs プロジェクト: KhaledSMQ/SunNet.PM
 protected void Application_Start(object sender, EventArgs e)
 {
     BootStrap.Config();
 }