Ejemplo n.º 1
0
 public ChangelogController(IChangelogService changelogService)
 {
     this.changelogService = changelogService;
 }
Ejemplo n.º 2
0
 public GetChangelogQuery(IChangelogService changelogService, IMapper mapper)
 {
     this.changelogService = changelogService;
     this.mapper           = mapper;
 }
Ejemplo n.º 3
0
 public UpdateChangelogCommand(IChangelogService changelogService, IMapper mapper)
 {
     this.changelogService = changelogService;
     this.mapper           = mapper;
 }
 public DeleteChangelogCommand(IChangelogService changelogService)
 {
     this.changelogService = changelogService;
 }