public CommiteController(ICommiteService CommiteService, IMemberService MemberService, ICustomerService CustomerService, IInstallmentService InstallmentService)
 {
     _CommiteService     = CommiteService;
     _MemberService      = MemberService;
     _CustomerService    = CustomerService;
     _InstallmentService = InstallmentService;
 }
 public ProductApplicationService(IProductService productService,
                                  ITaxService taxService,
                                  IInstallmentService installmentService,
                                  INotification notification) : base(notification)
 {
     _productService     = productService;
     _taxService         = taxService;
     _installmentService = installmentService;
 }
示例#3
0
 public SendInvoiceHandler(
     IClientService clientService,
     IInstallmentService installmentService,
     IEmailSender emailSender)
 {
     _clientService      = clientService;
     _installmentService = installmentService;
     _emailSender        = emailSender;
 }
 public StudentDashboardController(IInstallmentService installmentService, ILogger logger
                                   , IRepository repository, IStudentService studentService, IAspNetRoles aspNetRolesService,
                                   IAttendanceService attendanceService, IApiService apiService, ITeacherService teacherService
                                   , IStudentFeedbackService studentFeedbackService, IEmailService emailService, IBatchService batchService, ISubjectService subjectService)
 {
     _installmentService     = installmentService;
     _logger                 = logger;
     _repository             = repository;
     _studentService         = studentService;
     _aspNetRolesService     = aspNetRolesService;
     _attendanceService      = attendanceService;
     _apiService             = apiService;
     _teacherService         = teacherService;
     _studentFeedbackService = studentFeedbackService;
     _emailService           = emailService;
     _batchService           = batchService;
     _subjectService         = subjectService;
 }
 public InstallmentController(IInstallmentService installmentService, ILogger logger, IRepository repository,
                              IClassService classService, IStudentService studentService, IEmailService emailService,
                              IBranchService branchService, IAspNetRoles aspNetRolesService, IBranchAdminService branchAdminService,
                              ISmsService smsService, ISendNotificationService sendNotificationService,
                              ISubjectService subjectService)
 {
     _installmentService      = installmentService;
     _logger                  = logger;
     _repository              = repository;
     _classService            = classService;
     _studentService          = studentService;
     _emailService            = emailService;
     _branchService           = branchService;
     _aspNetRolesService      = aspNetRolesService;
     _branchAdminService      = branchAdminService;
     _smsService              = smsService;
     _sendNotificationService = sendNotificationService;
     _subjectService          = subjectService;
 }
示例#6
0
 public void Initalize()
 {
     _notification       = new Notificador();
     _productService     = new ProductService(_notification);
     _installmentService = new InstallmentService();
 }
示例#7
0
 public InstallmentsController(IInstallmentService installmentService)
 {
     _installmentService = installmentService;
 }
示例#8
0
 public DebtService(IDebtRepository repository, IInstallmentService installmentService) : base(repository)
 {
     _repository         = repository;
     _installmentService = installmentService;
 }
示例#9
0
 public InstallmentServiceTest()
 {
     installmentService = new InstallmentService(null);
 }
示例#10
0
 public DebtServiceTest()
 {
     installmentService = new InstallmentService(null);
     debtService        = new DebtService(null, installmentService);
 }