Ejemplo n.º 1
0
        public EmailRepository(IApplicationsContext applicationsContext, IMapToExisting<Email, Email> emailMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(emailMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _emailMapper = emailMapper;
        }
        public RequirementRepository(IApplicationsContext applicationsContext, IMapToExisting<Requirement, Requirement> requirementMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(requirementMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _requirementMapper = requirementMapper;
        }
Ejemplo n.º 3
0
        public SearchRepository(IApplicationsContext applicationsContext, ISearchQueryFactory searchQueryFactory)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(searchQueryFactory).IsNotNull();

            _applicationsContext = applicationsContext;
            _searchQueryFactory = searchQueryFactory;
        }
Ejemplo n.º 4
0
        public CheckRepository(IApplicationsContext applicationsContext,
            IMapToExisting<CheckResult, CheckResult> checkResultMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(checkResultMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _checkResultMapper = checkResultMapper;
        }
        public TelephoneNumberRepository(IApplicationsContext applicationsContext,
            IMapToExisting<TelephoneNumber, TelephoneNumber> telephoneNumberMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(telephoneNumberMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _telephoneNumberMapper = telephoneNumberMapper;
        }
        public AddressRepository(IApplicationsContext applicationsContext,
            IMapToExisting<Address, Address> addressMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(addressMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _addressMapper = addressMapper;
        }
        public CustomerRepository(IApplicationsContext applicationsContext,
            IMapToExisting<Customer, Customer> customerMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(customerMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _customerMapper = customerMapper;
        }
        public PropertyRepository(IApplicationsContext applicationsContext,
            IMapToExisting<Property, Property> propertyMapper)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(propertyMapper).IsNotNull();

            _applicationsContext = applicationsContext;
            _propertyMapper = propertyMapper;
        }
        public ApplicationRepository(IApplicationsContext applicationsContext, IMapToExisting<Application, Application> applicationMapper, IArchiveWindowSettings archiveWindowSettings)
        {
            Check.If(applicationsContext).IsNotNull();
            Check.If(applicationMapper).IsNotNull();
            Check.If(archiveWindowSettings).IsNotNull();

            _applicationsContext = applicationsContext;
            _applicationMapper = applicationMapper;
            _archiveWindowSettings = archiveWindowSettings;
        }
 public PropertyCaselistRepository(IApplicationsContext applicationsContext)
 {
     _applicationsContext = applicationsContext;
 }
 public ApplicationQueryRepository(IApplicationsContext applicationsContext, IApplicationQueryFactory applicationQueryFactory)
 {
     _applicationsContext = applicationsContext;
     _applicationQueryFactory = applicationQueryFactory;
 }
 public LetSummaryRepository(IApplicationsContext applicationsContext)
 {
     _applicationsContext = applicationsContext;
 }