Exemple #1
0
 /// <summary>
 /// Initializes a new instance of
 /// type InventoryTransferCostCentersService.
 /// </summary>
 /// <param name="InventoryTransferCostCentersRepository"></param>
 /// <param name="unitOfWork"></param>
 public InventoryTransferCostCentersService(
     IInventoryTransferCostCenterRepository InventoryTransferCostCentersRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._InventoryTransferCostCentersRepository = InventoryTransferCostCentersRepository;
     this._languageService = languageService;
     this._unitOfWork      = unitOfWork;
 }
 /// <summary>
 /// Initializes a new instance of
 /// type InventoryTransfersService.
 /// </summary>
 /// <param name="InventoryTransfersRepository"></param>
 /// <param name="unitOfWork"></param>
 public InventoryTransfersService(
     IInventoryTransfersRepository InventoryTransfersRepository,
     IInventoryTransferCostCenterRepository InventoryTransferCostCentersRepository,
     IProductsRepository ProductsRepository,
     IClosedMonthsService closedMonthsService,
     IBrandsRepository brandsRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._InventoryTransfersRepository = InventoryTransfersRepository;
     this._languageService = languageService;
     this._InventoryTransferCostCentersRepository = InventoryTransferCostCentersRepository;
     this._ProductsRepository  = ProductsRepository;
     this._closedMonthsService = closedMonthsService;
     this._brandsRepository    = brandsRepository;
     this._unitOfWork          = unitOfWork;
 }