Exemple #1
0
 public AssignServiceDomainServices(IAssignServiceRepository repository, IMailService mailService,
                                    IProfessionalRepository professionalRepository, IServiceRepository serviceRepository,
                                    IPatientRepository patientRepository, ICoPaymentFrecuencyRepository coPaymentFrecuencyRepository,
                                    IServiceFrecuencyRepository serviceFrecuencyRepository)
 {
     _repository                   = repository;
     _mailService                  = mailService;
     _professionalRepository       = professionalRepository;
     _serviceRepository            = serviceRepository;
     _patientRepository            = patientRepository;
     _copaymentFrecuencyRepository = coPaymentFrecuencyRepository;
     _serviceFrecuencyRepository   = serviceFrecuencyRepository;
 }
Exemple #2
0
 public CoPaymentFrecuencyDomainServices(IConfigurationRoot configuration, ICoPaymentFrecuencyRepository repository)
 {
     this.repository    = repository;
     this.configuration = configuration;
 }