예제 #1
0
 public MarkInstallmentAsPaidHandler(
     IBus bus,
     IInstallmentRepository installmentRepository)
 {
     _bus = bus;
     _installmentRepository = installmentRepository;
 }
 public InstallmentController(
     IBus bus,
     IInstallmentRepository installmentRepository)
 {
     _bus = bus;
     _installmentRepository = installmentRepository;
 }
 public InstallmentController(
     IBus bus,
     IInstallmentRepository installmentRepository)
 {
     _bus = bus;
     _installmentRepository = installmentRepository;
 }
 public InstallmentController(IMapper mapper, IUnitOfWork unitOfWork,
                              IInstallmentRepository repository)
 {
     this.mapper     = mapper;
     this.unitOfWork = unitOfWork;
     this.repository = repository;
 }
 public InstallmentService(IUnitOfWork unitOfWork, IInstallmentRepository installmentRepository)
     : base(unitOfWork, installmentRepository)
 {
     _unitOfWork            = unitOfWork;
     _installmentRepository = installmentRepository;
 }
예제 #6
0
 public InstallmentService(IInstallmentRepository repository) : base(repository)
 {
 }
 public InstallmentService()
 {
     _sessionProvider       = ObjectFactory.GetInstance <ISessionProvider>();
     _installmentRepository = ObjectFactory.GetInstance <IInstallmentRepository>();
 }
 public InstallmentService()
 {
     _sessionProvider = ObjectFactory.GetInstance<ISessionProvider>();
     _installmentRepository = ObjectFactory.GetInstance<IInstallmentRepository>();
 }