Пример #1
0
 public ModuleLoaderPresenter(IModuleLoaderView view, HttpContextBase httpContext, IMenuService menuService, Data.IUnitOfWork work)
 {
     this.view        = view ?? throw new ArgumentException("View must be set!");
     this.menuService = menuService;
     this.httpContext = httpContext;
     this.work        = work;
 }
Пример #2
0
 public ModuleLoaderPresenter(IModuleLoaderView view, Service.MenuService menuService, HttpContextBase httpContext)
 {
     this.view        = view ?? throw new ArgumentException("View must be set!");
     this.menuService = menuService;
     this.httpContext = httpContext;
 }