public UserController(IMethod _SMethod, IUser _SUser, IMinio _SMinio, IMenu _SMenu, IUserInterest _SUserInterest, INotificationDispatcher notificationDispatcher) : base(_SMethod) { this._SUser = _SUser; this._SMinio = _SMinio; this._SMenu = _SMenu; this._SUserInterest = _SUserInterest; this.notificationDispatcher = notificationDispatcher; }
public EventController(IMethod _SMethod, IEvent _SEvent, IMinio _SMinio, IUser _SUser, IEventDetail _SEventDetail, IEventParticipant _SEventParticipant, IEventCategory _SEventCategory, ICategory _SCategory, IEventSponsor _SEventSponsor, ISponsor _SSponsor, IUserInterest _SUserInterest, INotificationDispatcher notificationDispatcher ) : base(_SMethod) { this._SEvent = _SEvent; this._SMinio = _SMinio; this._SUser = _SUser; this._SEventDetail = _SEventDetail; this._SEventParticipant = _SEventParticipant; this._SEventCategory = _SEventCategory; this._SCategory = _SCategory; this._SEventSponsor = _SEventSponsor; this._SSponsor = _SSponsor; this._SUserInterest = _SUserInterest; this.notificationDispatcher = notificationDispatcher; }
public MinioController(IMinio _SMinio) { this._SMinio = _SMinio; }
public SponsorController(IMethod _SMethod, IMinio _SMinio, ISponsor _SSponsor) : base(_SMethod) { this._SMinio = _SMinio; this._SSponsor = _SSponsor; }