public OrdersOperationController(IOrderServicesDAL orderServicesDAL)
 {
     _orderServicesDAL = orderServicesDAL;
 }
Exemplo n.º 2
0
 public OrderConsultController(IOrderServicesDAL IOrderServicesDAL)
 {
     _orderServicesDAL = IOrderServicesDAL;
 }
 public OrdersRegisterController(IOrderServicesDAL orderServices)
 {
     this._orderServicesDAL = orderServices;
 }