Ejemplo n.º 1
0
 public BaseRepository(WashingTimeContext context)
 {
     Context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 2
0
 public WashingTimeRepository(WashingTimeContext context)
     : base(context)
 {
 }
Ejemplo n.º 3
0
 public WashingTimeSeeder(WashingTimeContext context, WashingTimeFaker washingTimeFaker)
 {
     _washingTimeFaker = washingTimeFaker;
     _context          = context;
 }