public CheckoffAutoAcpDomainService(//IRepositoryWithEntity<Core.Model.CheckoffAutoAcp> checkoffAutoAcpRepository,
     ICheckoffAutoAcpRepository checkoffAutoAcpRepository,
     IRepositoryWithEntity <CheckoffMonitor> checkoffMonitorRepository)
 {
     _checkoffAutoAcpRepository = checkoffAutoAcpRepository;
     _checkoffMonitorRepository = checkoffMonitorRepository;
 }
Exemplo n.º 2
0
 public ReaderDomainService(IRepositoryWithEntity <Core.Model.Reader> readerRepositoryWithEntity,
                            IRepositoryWithTEntityAndTPrimaryKey <Book, string> bookRepository, IRepositoryWithTEntityAndTPrimaryKey <BookHistory, string> bookHistoryRepository)
 {
     _readerRepository      = readerRepositoryWithEntity;
     _bookRepository        = bookRepository;
     _bookHistoryRepository = bookHistoryRepository;
 }
Exemplo n.º 3
0
 public WechatRepayDomainService(IRepositoryWithEntity <Core.Model.CheckoffCommand> checkoffCommandRepository,
                                 ICheckoffAutoAcpRepository checkoffAutoAcpRepository)
 {
     _checkoffCommandRepository = checkoffCommandRepository;
     _checkoffAutoAcpRepository = checkoffAutoAcpRepository;
 }
Exemplo n.º 4
0
 public CheckoffAutoAcpAppService(IRepositoryWithEntity <Domain.Core.Model.CheckoffAutoAcp> checkoffAutoAcpRepository)
 {
     _checkoffAutoAcpRepository = checkoffAutoAcpRepository;
 }