コード例 #1
0
 public LoadOfficesCommand(IAutoRentContext context)
 {
     this.context = context ?? throw new ArgumentNullException("context");
 }
コード例 #2
0
 public ChooseUserCommand(IAutoRentContext context, IOrderComposer orderComposer)
 {
     this.context       = context ?? throw new ArgumentNullException("context");
     this.orderComposer = orderComposer ?? throw new ArgumentNullException("orderComposer");
 }
コード例 #3
0
ファイル: CreateUserCommand.cs プロジェクト: JSTeam6/AutoRent
 public CreateUserCommand(IAutoRentContext context)
 {
     this.context = context ?? throw new ArgumentNullException("context");
 }
コード例 #4
0
 public AddCarToOfficeCommand(IAutoRentContext context)
 {
     this.context = context;
 }
コード例 #5
0
 public DeleteCarCommand(IAutoRentContext context)
 {
     this.context = context ?? throw new ArgumentNullException("context");
 }