public CommonService(ICustomHeaderRepository customHeaderRepository, ICustomImageRepository customImageRepository, IDonationRepository donationRepository, IControlPanelRepository controlPanelRepository, ILaudatoryRepository laudatoryRepository, IUnitOfWork unitOfWork) { this._customHeaderRepository = customHeaderRepository; this._customImageRepository = customImageRepository; this._donationRepository = donationRepository; this._controlPanelRepository = controlPanelRepository; this._laudatoryRepository = laudatoryRepository; this._unitOfWork = unitOfWork; }
public ControlPanelService(IControlPanelRepository _controlPanelRepository, IUnitOfWork unitOfWork) { this._controlPanelRepository = _controlPanelRepository; this._unitOfWork = unitOfWork; }