Exemplo n.º 1
0
 protected override void OnInit(EventArgs e)
 {
     InitializeComponent();
     base.OnInit(e);
     if (!IsWhatifMode())
     {
         string whatifPart = "whatif_";
         Response.Redirect(PAGENAME.Substring(whatifPart.Length));
     }
     tableSync = new TableSyncLabor(userDir);
 }
Exemplo n.º 2
0
    protected override void OnInit(EventArgs e)
    {
        InitializeComponent();
        base.OnInit(e);
        if (IsWhatifMode())
        {
            Response.Redirect("/scenarios/whatif_labor.aspx");
        }
        tableSync = new TableSyncLabor(userDir);
        string sheet = "Cheat Sheat Labor Input Page";

        Master.SetHelpSheet(sheet + ".pdf", sheet);
    }
Exemplo n.º 3
0
    public void Unnamed_Click(object sender, EventArgs e)
    {
        TableSynchronization tableSync = new TableSyncLabor(userDir);

        tableSync.SyncTables();
    }