public OrderRefundControllerTests()
 {
     _orderRefundService = A.Fake<IOrderRefundService>();
     _orderService = A.Fake<IOrderService>();
     _orderRefundController = new OrderRefundController(_orderRefundService, _orderService);
 }
Exemplo n.º 2
0
 public OrderRefundControllerTests()
 {
     _orderRefundService    = A.Fake <IOrderRefundService>();
     _orderService          = A.Fake <IOrderService>();
     _orderRefundController = new OrderRefundController(_orderRefundService, _orderService);
 }