public MovieController(IMovieService movieService, IMovieCommentService movieCommentService, IMapper mapper) { _movieService = movieService; _movieCommentService = movieCommentService; _mapper = mapper; }
public DefaultServiceManager(ICache cache, ILogService logService, IEncryptionProvider encryptionProvider, IDiaryService diaryService, IDiaryCommentService diaryCommentService, IMovieCommentService movieCommentService, IAccountService accountService) { this._cache = cache; this._autoBox = null; this._logService = logService; this._encryptionProvider = encryptionProvider; this._diaryService = diaryService; this._diaryCommentService = diaryCommentService; this._movieCommentService = movieCommentService; this._accountService = accountService; }
public MoviesCommentsController(IMovieCommentService movieCommentService) { _movieCommentService = movieCommentService; }
public MovieCommentController(IMovieCommentService service) : base(service) { this._movieCommentService = service; }
public MovieCommentController(IMovieCommentService movieCommentService) { MovieCommentService = movieCommentService; }