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;
 }
Example #2
0
 public CustomHeaderService(ICustomHeaderRepository customHeaderRepository, IUnitOfWork unitOfWork)
 {
     this._customHeaderRepository = customHeaderRepository;
     this._unitOfWork             = unitOfWork;
 }