Skip to content

Commit

Permalink
fixed dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
granstel committed Mar 11, 2024
1 parent df57002 commit 9bde2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dodo1000Bot.Api/Jobs/FirstRunJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ public class FirstRunJob: IHostedService
{
private readonly UnitsService _unitsService;
private readonly YoutubeService _youtubeService;
private readonly UsersService _usersService;
private readonly IUsersService _usersService;

public FirstRunJob(
UnitsService unitsService,
YoutubeService youtubeService,
UsersService usersService)
IUsersService usersService)
{
_unitsService = unitsService;
_youtubeService = youtubeService;
Expand Down

0 comments on commit 9bde2b4

Please sign in to comment.