Example #1
0
 public TradingHistoryController(
     IEntriesService entriesService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.entriesService = entriesService;
     this.usersService   = usersService;
     this.mapper         = mapper;
 }
Example #2
0
 public AssertivenessController(
     IEntriesService entriesService,
     IUsersService usersService,
     IMapper mapper)
 {
     this.entriesService = entriesService;
     this.usersService   = usersService;
     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 #4
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;
 }
Example #5
0
 public EntriesApiController(IEntriesService service)
 {
     _service = service;
 }
 public EntriesController(ILogger <EntriesController> logger,
                          IEntriesService service)
 {
     this.logger  = logger;
     this.service = service;
 }
Example #7
0
 public EntriesController(IEntriesService redis)
 {
     _redis = redis;
 }
Example #8
0
 public PhoneBookController(IEntriesService entriesService)
 {
     _entriesService = entriesService;
 }