Example #1
0
 public ParitiesController(
     IParitiesService paritiesService,
     IMapper mapper)
 {
     this.paritiesService = paritiesService;
     this.mapper          = mapper;
 }
 public EntriesController(
     IEntriesService entriesService,
     IParitiesService paritiesService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.entriesService  = entriesService;
     this.paritiesService = paritiesService;
     this.usersService    = usersService;
     this.mapper          = mapper;
 }
Example #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;
 }