コード例 #1
0
 public StableService(IStableMapper mapper, IStableRepository repository)
 {
     _mapper     = mapper;
     _repository = repository;
 }
コード例 #2
0
 public StableController(IStableMapper mapper, IStableService service)
 {
     _mapper  = mapper;
     _service = service;
 }