public UserService(OnlineTimeTrackContext onlineTimeTrackContext, IOptions<AppSettings> appSettings)
        {
            _onlineTimeTrackContext = onlineTimeTrackContext;
             _appSettings = appSettings.Value;
            

        }
 public TimelogService(OnlineTimeTrackContext onlineTimeTrackContext)
 {
     _onlineTimeTrackContext = onlineTimeTrackContext;
 }
示例#3
0
 public ProjectService(OnlineTimeTrackContext onlineTimeTrackContext, IUserService userService, ITimelogService timelogService)
 {
     _onlineTimeTrackContext = onlineTimeTrackContext;
 }