示例#1
0
 public UserGroupManager(IUnitOfWork unitOfWork, IUserGroupDal userGroupDal, INLogService nLogService)
     : base(unitOfWork, userGroupDal, nLogService)
 {
     _userGroupDal = userGroupDal;
     _nLogService  = nLogService;
     _unitOfWork   = unitOfWork;
 }
示例#2
0
 public CategoryManager(IUnitOfWork unitOfWork, ICategoryDal categoryDal, INLogService nLogService)
     : base(unitOfWork, categoryDal, nLogService)
 {
     _categoryDal = categoryDal;
     _nLogService = nLogService;
     _unitOfWork  = unitOfWork;
 }
 public SettingManager(IUnitOfWork unitOfWork, ISettingDal settingDal, INLogService nLogService)
     : base(unitOfWork, settingDal, nLogService)
 {
     _settingDal  = settingDal;
     _nLogService = nLogService;
     _unitOfWork  = unitOfWork;
 }
示例#4
0
 public QueryingReferralsServiceController(IReferralRepositoryService myIQueryingReferralRepositoryService,
                                           ILegalRepositoryService myIQueryingLegalRepositoryService, IAsReleaseRepositoryService myIAsReleaseRepositoryService,
                                           INLogService myInLogService)
 {
     _myIQueryingReferralRepositoryService = myIQueryingReferralRepositoryService;
     _myIQueryingLegalRepositoryService    = myIQueryingLegalRepositoryService;
     _myIAsReleaseRepositoryService        = myIAsReleaseRepositoryService;
     _myInLogService = myInLogService;
 }
 /// <summary>Initializes a new instance of the <see cref="WebProofSyncService"/> class.</summary>
 public WebProofSyncService()
 {
     _globalClients = GetAllGlobalClients();
     _identityClients = GetAllIdentityClients();
     _log = new NLogService();
 }
 public LegalRepositoryService(IApplicationsRepository myIApplicationsRepository, INLogService myInLogService, IAutoMapperService myIAutoMapperService)
 {
     _myIApplicationsRepository = myIApplicationsRepository;
     _myIAutoMapperService      = myIAutoMapperService;
     _myInLogService            = myInLogService;
 }
 public ReferralRepositoryService(IApplicationsRepository myIApplicationsRepository, INLogService myInLogService)
 {
     _myIApplicationsRepository = myIApplicationsRepository;
     _myInLogService            = myInLogService;
 }