示例#1
0
 public static void Attach(INavigationWorkflow workflow)
 {
     if (workflow != null)
     {
         _navigationWorkflow = workflow;
     }
 }
 public AboutUsPresenter(IAboutUs view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
 public SnipeItPresenter(ISnipeIt view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
示例#4
0
 public HomePresenter(IHome view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
 public CategoriesPresenter(ICategories view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
示例#6
0
 public static void Attach(INavigationWorkflow workflow)
 {
     if (workflow != null)
         _navigationWorkflow = workflow;
 }
 public CategoryManagementPresenter(ICategoryManagement view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
示例#8
0
 public MenuPresenter(IMenu view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
 public static void Register(INavigationWorkflow service)
 {
     if (service == null)
         throw new ArgumentException();
     instance = service;
 }
 public UserDetailsPresenter(IUserDetails view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }
 public ForgotPasswordPresenter(IForgotPassword view, INavigationWorkflow navigation)
 {
     this._view = view;
     this._navigation = navigation;
 }