Ejemplo n.º 1
0
 public ParitiesController(
     IParitiesService paritiesService,
     IMapper mapper)
 {
     this.paritiesService = paritiesService;
     this.mapper          = mapper;
 }
Ejemplo n.º 2
0
 public EntriesController(
     IEntriesService entriesService,
     IParitiesService paritiesService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.entriesService  = entriesService;
     this.paritiesService = paritiesService;
     this.usersService    = usersService;
     this.mapper          = mapper;
 }
Ejemplo n.º 3
0
 public SectionsController(
     ISectionsService sectionsService,
     IEntriesService entriesService,
     IParitiesService paritiesService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.sectionsService = sectionsService;
     this.entriesService  = entriesService;
     this.paritiesService = paritiesService;
     this.usersService    = usersService;
     this.mapper          = mapper;
 }