Example #1
0
 public ClientCommandRepository(GameRentContext context)
 {
     _context = context;
 }
Example #2
0
 public EfAddCompanyCommand(GameRentContext context) : base(context)
 {
 }
 public EfReturnGameCommand(GameRentContext context) : base(context)
 {
 }
 public EfAddGameCommand(GameRentContext context) : base(context)
 {
 }
Example #5
0
 public EfAddCategoryCommand(GameRentContext context) : base(context)
 {
 }
Example #6
0
 protected BaseEfCommand(GameRentContext context) => Context = context;