public PinnacleClient()
        {
            // Register all services using in whole application to IOC.
            var _Ioc = new IoC();

            _Ioc.RegisterApplicationServices();

            __Controller = new PartInvoiceController(_Ioc);
        }
Beispiel #2
0
 public PinnacleClient(IDataService services)
 {
     __Controller = new PartInvoiceController(services);
 }