public SupplierInventoryBusinessEntity(ISupplierInventoryDataService supplierInventoryDataService,
                                        IStandardInventoryDataService standardInventoryBusinessEntity,
                                        IUserService userService)
 {
     this.supplierInventoryDataService    = supplierInventoryDataService;
     this.standardInventoryBusinessEntity = standardInventoryBusinessEntity;
     this.userService = userService;
 }
Exemplo n.º 2
0
 public StandardInventoryBusinessEntity(IStandardInventoryDataService istandardInventoryDataService,
                                        IUnitOfMeasureBusinessEntity unitOfMeasureBusinessEntity,
                                        IFileServerBusinessEntity fileServerBusinessEntity,
                                        IInventoryItemCategoriesBusinessEntity inventoryItemCategoriesBusinessEntity,
                                        IInventoryItemSubCategoryBusinessEntity inventoryItemSubCategoryBusinessEntity
                                        )
 {
     this.istandardInventoryDataService          = istandardInventoryDataService;
     this.unitOfMeasureBusinessEntity            = unitOfMeasureBusinessEntity;
     this.fileServerBusinessEntity               = fileServerBusinessEntity;
     this.inventoryItemCategoriesBusinessEntity  = inventoryItemCategoriesBusinessEntity;
     this.inventoryItemSubCategoryBusinessEntity = inventoryItemSubCategoryBusinessEntity;
 }