Ejemplo n.º 1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="service"></param>
 public InventoryClassController(IInventoryClassService service)
 {
     this._service = service;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="service"></param>
 /// <param name="customerService"></param>
 /// <param name="InventoryClassService"></param>
 public InventoryController(IInventoryService service, ICustomerService customerService, IInventoryClassService InventoryClassService)
 {
     this._service               = service;
     this._customerService       = customerService;
     this._InventoryClassService = InventoryClassService;
 }