public OrderTypeChangesController(
     IUserContext userContext,
     IOrderTypesService orderTypesService,
     IOrderTypeChangesService orderTypeChangesService)
     : base(userContext)
 {
     _orderTypesService       = orderTypesService;
     _orderTypeChangesService = orderTypeChangesService;
 }
Exemple #2
0
 public OrderTypesController(IUserContext userContext, IOrderTypesService orderTypesService)
     : base(userContext)
 {
     _userContext       = userContext;
     _orderTypesService = orderTypesService;
 }