Пример #1
0
 public PersonalRecordService(IPersonalRecordRepository personalRecordRepository, ITaxPerOrderRepository taxPerOrderRepository, ITaxBaseByMonthRepository taxBaseByMonthRepository, ITopContactsService topContactsService, IUnitOfWork unitOfWork)
     : base(unitOfWork)
 {
     this._PersonalRecordRepository = personalRecordRepository;
     this._TaxPerOrderRepository    = taxPerOrderRepository;
     this._TaxBaseByMonthRepository = taxBaseByMonthRepository;
     this._TopContactsService       = topContactsService;
 }
Пример #2
0
 public ApplyFormController(IApplicationFormService applicationFormService, IPersonalRecordService personalRecordService,
                            IUserService userService, IApplyPrintService applyPrintService, IAuditOpinionService auditOpinionService, ITaxPerOrderService taxPerOrderService, ITopContactsService topContactsService, ITaskManageService taskManageService)
 {
     this._applicationFormService = applicationFormService;
     this._personalRecordService  = personalRecordService;
     this._userService            = userService;
     this._applyPrintService      = applyPrintService;
     this._auditOpinionService    = auditOpinionService;
     this._taxPerOrderService     = taxPerOrderService;
     this._topContactsService     = topContactsService;
     this._taskManageService      = taskManageService;
 }
Пример #3
0
 public TopContactsController(ITopContactsService topContactsService)
 {
     this._topContactsService = topContactsService;
 }