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