public DefaultPresenter(IDefaultView view)
        {
            if (view == null)
                throw new ArgumentNullException("view");

            _view = view;
        }
Example #2
0
        public DefaultPresenter(IDefaultView view)
        {
            if (view == null)
            {
                throw new ArgumentNullException("view");
            }

            _view = view;
        }
Example #3
0
 public DefaultPagePresenter(IDefaultView view)
 {
     this.view = view;
     data      = new EntityData();
 }
 public HomePagePresenter(IDefaultView view)
 {
     this.view = view;
     this.cache = CacheFactory.GetCacheManager();
 }
 public BackOrderPresenter(IBackOrderView view, IDefaultView defaultView)
 {
     View = view;
     Modal = new BackOrderModal(defaultView);
 }
Example #6
0
 public BidsModel(GoDaddyAccount account, IDefaultView defaultView)
 {
     Ds = new ASEntities();
     Account = account;
     DefaultView = defaultView;
 }
 public DefaultPresenter(IDefaultView view)
 {
     this.view = view;
 }
 public void Init(IDefaultView view)
 {
     _view      = view;
     view.Model = _projection.GetData();
 }
 public GoDaddyActions(IDefaultView defaultView)
 {
     DefaultView = defaultView;
 }
 public DefaultPagePresenter(IDefaultView view)
 {
     this.view = view;
     data = new EntityData();
 }
Example #11
0
 public BidsPresenter(IBidsView view, IDefaultView defaultView)
 {
     View = view;
     DefaultView = defaultView;
     Model = new BidsModel(DefaultView.GoDaddyAccount, defaultView);
 }
 public static DefaultPresenter DefaultPresenter(IDefaultView view)
 {
     return new DefaultPresenter(view, UserState);
 }
Example #13
0
 public BackOrderModal(IDefaultView model)
 {
     DefaultView = model;
     Ds=new ASEntities();
 }
 public DefaultPresenter(IDefaultView view)
 {
     this.view = view;
 }
Example #15
0
 public DefaultPresenter(IDefaultView view, ResourceLoader loader, IMenuService menuService)
 {
     this.view        = view;
     this.loader      = loader;
     this.menuService = menuService;
 }
 public DefaultPresenter(IDefaultView view)
 {
     View = view;
     Model = new DefaultModel();
     GoDaddyActions = new GoDaddyActions(view);
 }
 public AsIsPagePresenter(IDefaultView view)
 {
     this.view  = view;
     this.cache = CacheFactory.GetCacheManager();
 }
 public DefaultPresenter(IDefaultView view, IUserState userState)
 {
     _view = view;
     _userState = userState;
 }