Example #1
0
 public StepFlyController(
     IStepFlyServiceFactory stepFlyServiceFactory,
     IStepFlyUserRepository userRepository,
     IUserRoleRepository roleRepository,
     IStepFlyHistoryRepository historyRepo,
     IJwtSupporter jwtSupporter)
 {
     _stepFlyServiceFactory = stepFlyServiceFactory;
     _userRepo       = userRepository;
     _roleRepository = roleRepository;
     _historyRepo    = historyRepo;
     _jwtSupporter   = jwtSupporter;
 }
 public StepFlyHistoryController(IStepFlyHistoryRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }