Exemplo n.º 1
0
 public DataManager(IOrderOperations orderOperations, IPostamatOperations postamatOperations)
 {
     Orders    = orderOperations;
     Postamats = postamatOperations;
 }
Exemplo n.º 2
0
 public OrdersController(IOrderOperations orderOperations, IOptions <TokenAuthentification> tokenAuthentication)
 {
     _orderOperations     = orderOperations;
     _tokenAuthentication = tokenAuthentication.Value;
 }
Exemplo n.º 3
0
 public OrderController(IOrderOperations orderOperations)
 {
     _orderOperations = orderOperations;
 }
Exemplo n.º 4
0
 public OrderController(IOrderOperations order)
 {
     _order = order;
 }