コード例 #1
0
 public PostController(IPostRepository repository, AutomapperWrapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
コード例 #2
0
ファイル: PostController.cs プロジェクト: blanciq/TDD.Blog
 public PostController(IPostRepository repository, AutomapperWrapper mapper)
 {
     _repository = repository;
     _mapper = mapper;
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: blanciq/TDD.Blog
 public HomeController(IPostRepository postRepository, AutomapperWrapper mapper)
 {
     _postRepository = postRepository;
     _mapper = mapper;
 }
コード例 #4
0
 public HomeController(IPostRepository postRepository, AutomapperWrapper mapper)
 {
     _postRepository = postRepository;
     _mapper         = mapper;
 }