Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Update TimeScheduleRepository.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
k-nero committed Oct 4, 2023
1 parent be87365 commit d5a0944
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Invedia.DI.Attributes;
using SWD_Laundry_Backend.Contract.Repository.Infrastructure;
using SWD_Laundry_Backend.Contract.Repository.Interface;
using SWD_Laundry_Backend.Repository.Infrastructure;

Expand All @@ -7,7 +8,7 @@ namespace SWD_Laundry_Backend.Repository.Repository;
[ScopedDependency(ServiceType = typeof(ITimeScheduleRepository))]
public class TimeScheduleRepository : Repository<TimeSchedule>, ITimeScheduleRepository
{
public TimeScheduleRepository(AppDbContext dbContext) : base(dbContext)
public TimeScheduleRepository(AppDbContext dbContext, ICacheLayer<TimeSchedule> cacheLayer) : base(dbContext, cacheLayer)
{
}
}

0 comments on commit d5a0944

Please sign in to comment.