Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/Administration/Views/DefaultViewPresenter.cs @ 4476

Last change on this file since 4476 was 4476, checked in by cfleisch, 14 years ago

Create repository (#1198)

File size: 487 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Microsoft.Practices.ObjectBuilder;
5using Microsoft.Practices.CompositeWeb;
6
7namespace OKB.Administration.Views
8{
9    public class DefaultViewPresenter : Presenter<IDefaultView>
10    {
11        private IAdministrationController _controller;
12
13        public DefaultViewPresenter([CreateNew] IAdministrationController controller)
14        {
15            this._controller = controller;
16        }
17    }
18}
Note: See TracBrowser for help on using the repository browser.