public GoodsButtonControlPresenter(IGoodsButtonControlView view, IGoods repository)
 {
     _repository  = repository;
     _view        = view;
     _view.Shown += _view_Shown;
 }
예제 #2
0
 public IGoodsButtonControlPresenter CreateGoodsButtonControlPresenter(IGoodsButtonControlView view, IGoods repository)
 {
     return(new GoodsButtonControlPresenter(view, repository));
 }