コード例 #1
0
        public PackageSnapShotManagerView(Model.Packages.PackageInformation package)
        {
            var manager = new Services.SnapShots.SnapShotManager();

            _presenter = new Presenter.SnapShots.SnapShotManagerPresenter(this, manager, package);
            InitializeComponent();
        }
コード例 #2
0
 public SnapShotManagerPresenter(IPackageSnapShotManagerView view, Services.SnapShots.SnapShotManager manager, Model.Packages.PackageInformation packageInformation)
     : base(view)
 {
     _snapShotManager    = manager;
     _packageInformation = packageInformation;
 }