コード例 #1
0
 public MoveCustomerCommand(
     UnitOfWork db,
     OtherDependencies dep,
     int customerId,
     Address address)
 {
     _customerId = customerId;
     _address    = address;
     this.db     = db;
 }
コード例 #2
0
 public CommandFactory(EntityFrameworkUnitOfWork entityFrameworkUnitOfWork, OtherDependencies otherDependencies)
 {
     _entityFrameworkUnitOfWork = entityFrameworkUnitOfWork;
     _otherDependencies         = otherDependencies;
 }
コード例 #3
0
 public MoveCustomerCommandHandler(
     UnitOfWork db,
     OtherDependencies dep)
 {
     this.db = db;
 }