Exemplo n.º 1
0
        //
        // GET: /DashBoard/
        public DashBoardController()
        {
            try
            {
                dashDataContext = new DashRepository();

                menu = dashDataContext.menuItems();
            }
            catch(Exception ex)
            {

            }
        }
Exemplo n.º 2
0
 public ReportController()
 {
     dashDataContext = new DashRepository();
     dataContext = new MultiTabberRepository();
 }