예제 #1
0
 public BaseRepository(WashingTimeContext context)
 {
     Context = context ?? throw new ArgumentNullException(nameof(context));
 }
예제 #2
0
 public WashingTimeRepository(WashingTimeContext context)
     : base(context)
 {
 }
 public WashingTimeSeeder(WashingTimeContext context, WashingTimeFaker washingTimeFaker)
 {
     _washingTimeFaker = washingTimeFaker;
     _context          = context;
 }