Exemplo n.º 1
0
 public ForumNessageController(IForumMessageService forumMessageService, ILoggerRepository <ForumNessageController> loggerRepository,
                               IAuthorization authorization, IMapper mapper, IForumService forumService)
 {
     this._forumMessageService  = forumMessageService;
     this._authorizationService = authorization;
     this.logger        = loggerRepository;
     this.mapper        = mapper;
     this._forumService = forumService;
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="forumMessageService"></param>
 public ForumMessagesController(IForumMessageService forumMessageService)
 {
     _forumMessageService = forumMessageService;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="forumMessageService"></param>
 public ForumMessageController(IForumMessageService forumMessageService)
 {
     _forumMessageService = forumMessageService;
 }