Exemple #1
0
 /// <summary>
 /// Initializes a new instance of
 /// type InventoryOpeningBalanceCostCentersService.
 /// </summary>
 /// <param name="InventoryOpeningBalanceCostCentersRepository"></param>
 /// <param name="unitOfWork"></param>
 public InventoryOpeningBalanceCostCentersService(
     IInventoryOpeningBalanceCostCenterRepository InventoryOpeningBalanceCostCentersRepository,
     ILanguageService languageService,
     IUnitOfWork unitOfWork)
 {
     this._InventoryOpeningBalanceCostCentersRepository = InventoryOpeningBalanceCostCentersRepository;
     this._languageService = languageService;
     this._unitOfWork      = unitOfWork;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of
 /// type InventoryOpeningBalancesService.
 /// </summary>
 /// <param name="InventoryOpeningBalancesRepository"></param>
 /// <param name="unitOfWork"></param>
 public InventoryOpeningBalanceService(
     IJournalPostingsService journalPostingsService,
     IInventoryOpeningBalanceCostCenterRepository InventoryOpeningBalanceCostCentersRepository,
     IInventoryOpeningBalanceRepository InventoryOpeningBalancesRepository,
     ILanguageService languageService,
     ICurrentUserService currentUserService,
     IClosedMonthsService closedMonthsService,
     IUnitOfWork unitOfWork,
     IProductsRepository ProductsRepository,
     IBrandsRepository brandsRepository)
 {
     this._journalPostingsService = journalPostingsService;
     this._InventoryOpeningBalanceCostCentersRepository = InventoryOpeningBalanceCostCentersRepository;
     this._InventoryOpeningBalancesRepository           = InventoryOpeningBalancesRepository;
     this._languageService     = languageService;
     this._currentUserService  = currentUserService;
     this._ProductsRepository  = ProductsRepository;
     this._closedMonthsService = closedMonthsService;
     this._brandsRepository    = brandsRepository;
     this._unitOfWork          = unitOfWork;
 }