public ActivityInfoService(ApplicationContext context,
                            IHttpContextAccessor httpContextAccessor,
                            IUserService userService,
                            ITaskStepService taskStepService
                            )
 {
     _context             = context;
     _httpContextAccessor = httpContextAccessor;
     _userService         = userService;
     _taskStepService     = taskStepService;
 }
 public TaskStepController(ITaskStepService taskStepService)
 {
     _taskStepService = taskStepService;
 }