public CreateOrderController(ICategoriesService categories, IOrderService orders, ICustomerService customers, IUnitService units, IPublicCodeProvider coder)
 {
     this.categoriesService = categories;
     this.orderService = orders;
     this.customerService = customers;
     this.unitService = units;
     this.coder = coder;
 }
 public OrderStatusController(IPublicCodeProvider coder, IOrderService orderService)
 {
     this.coder = coder;
     this.orderService = orderService;
 }