예제 #1
0
 public ReportsPresenter(
     IReportsModel model,
     IReportsView view)
     : base(model, view)
 {
     Initialize();
 }
        public ReportOperations(IReportsView view, DataAccess dataData)
        {
            this.view     = view;
            this.dataData = dataData;

            view.Raport += () =>
            {
                string         s  = view.RaportName();
                UserOperations ez = new UserOperations();
                ez.Raport(s);
            };
        }
예제 #3
0
 public ReportsPresenter(IReportsView view, IRepository <Employee> model)
 {
     this.view  = view;
     this.model = model;
 }