示例#1
0
 public OrderController(IOrderUow uow)
 {
     this.orderUow = uow;
 }
示例#2
0
 public RegisterController(IOrderUow uow)
 {
     Uow = uow;
 }
示例#3
0
 public ProductsController(IOrderUow uow)
 {
     Uow = uow;
 }
示例#4
0
 public BranchController(IOrderUow uow)
 {
     orderUow = uow;
 }
示例#5
0
 public OrderSession(IOrderUow uow, HttpSessionStateBase httpSession, IPrincipal usr)
 {
     this.orderUow = uow;
     this.httpSession = httpSession;
     this.user = usr;
 }
示例#6
0
 public OrderService(IOrderUow orderUow)
 {
     this.cmdExecutor = new CommandExecutor(orderUow);
 }
示例#7
0
 public CustomerController(IOrderUow uow)
 {
     Uow = uow;
 }
示例#8
0
 public CommandExecutor(IOrderUow orderUow)
 {
     this.orderUow = orderUow;
 }