예제 #1
0
 public OrderExistsFilter(WebApi.Repositories.Generic.IUnitOfWork unitOfWork)
 {
     this.unitOfWork = unitOfWork;
 }
예제 #2
0
 public OrderController(WebApi.Repositories.Generic.IUnitOfWork unitOfWork, IOrderService orderService)
 {
     this.unitOfWork   = unitOfWork;
     this.orderService = orderService;
 }