public CheckoffAutoAcpDomainService(//IRepositoryWithEntity<Core.Model.CheckoffAutoAcp> checkoffAutoAcpRepository,
     ICheckoffAutoAcpRepository checkoffAutoAcpRepository,
     IRepositoryWithEntity <CheckoffMonitor> checkoffMonitorRepository)
 {
     _checkoffAutoAcpRepository = checkoffAutoAcpRepository;
     _checkoffMonitorRepository = checkoffMonitorRepository;
 }
Exemple #2
0
        public OracleConnectionTests()
        {
            using (var repositoryRegistrar = LocalIocManager.ResolveAsDisposable <EfGenericRepositoryRegistrar>())
            {
                repositoryRegistrar.Object.RegisterForDbContext(typeof(DDDDbContext), LocalIocManager, EfAutoRepositoryTypes.Default);
            }

            _checkoffAutoAcpRepository    = LocalIocManager.IocContainer.Resolve <ICheckoffAutoAcpRepository>();
            _checkoffAutoAcpAcpAppService = LocalIocManager.IocContainer.Resolve <ICheckoffAutoAcpAppService>();
        }
Exemple #3
0
 public WechatRepayDomainService(IRepositoryWithEntity <Core.Model.CheckoffCommand> checkoffCommandRepository,
                                 ICheckoffAutoAcpRepository checkoffAutoAcpRepository)
 {
     _checkoffCommandRepository = checkoffCommandRepository;
     _checkoffAutoAcpRepository = checkoffAutoAcpRepository;
 }