/// <summary>
 /// Inventory Management
 /// </summary>
 /// <param name="inventoryManagementDataService"></param>
 /// <param name="connectionStrings"></param>
 public InventoryManagementBusinessService(IInventoryManagementDataService inventoryManagementDataService, ConnectionStrings connectionStrings)
 {
     _inventoryManagementDataService = inventoryManagementDataService;
     _connectionStrings = connectionStrings;
 }
Exemple #2
0
 /// <summary>
 /// Inventory Management Message Processing
 /// </summary>
 /// <param name="inventoryManagementDataService"></param>
 public MessageProcessing(IInventoryManagementDataService inventoryManagementDataService)
 {
     _inventoryManagementDataService = inventoryManagementDataService;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="entity"></param>
 /// <param name="userDataService"></param>
 public ProductBusinessRules(T entity, IInventoryManagementDataService inventoryDataService) : base(entity)
 {
     _inventoryManagementDataService = inventoryDataService;
     _entity = entity;
 }