Beispiel #1
0
 public OrderController(IOrderServieces orderServieces)
 {
     _orderServieces = orderServieces;
 }
 public CustomerServieces(UnitOfWork unitOfWork, IOrderServieces orderServieces, IAccountManager accountManager)
 {
     _unitOfWork     = unitOfWork;
     _orderServieces = orderServieces;
     _accountManager = accountManager;
 }