Beispiel #1
0
 /// <summary>
 /// Construtor da classe
 /// </summary>
 /// <param name="ServiceEndereco">Serviços de endereço</param>
 /// <param name="ServiceAgenda">Serviços de agenda</param>
 /// <param name="ServiceContrato">Serviços de contrato</param>
 public ContratoController(IServiceEndereco ServiceEndereco, IServiceAgenda ServiceAgenda, IServiceContrato ServiceContrato, IServicePaciente ServicePaciente, IServiceNutricionista ServiceNutricionista)
 {
     _ServiceEndereco      = ServiceEndereco;
     _ServiceAgenda        = ServiceAgenda;
     _ServiceContrato      = ServiceContrato;
     _ServiceNutricionista = ServiceNutricionista;
     _ServicePaciente      = ServicePaciente;
 }
 public ApplicationServicePaciente(IServicePaciente servicePaciente,
                                   IMapperPaciente mapperPaciente)
 {
     this.servicePaciente = servicePaciente;
     this.mapperPaciente  = mapperPaciente;
 }
Beispiel #3
0
 public ServicePaciente(IServicePaciente servicePaciente)
 {
     _servicePaciente = servicePaciente;
 }
 /// <summary>
 /// Construtor
 /// </summary>
 /// <param name="pIServicePaciente">Serviço de paciente</param>
 /// <param name="pServiceUsuario">Serviço de usuário</param>
 public PacienteController(IServicePaciente pIServicePaciente, IServiceUsuario pServiceUsuario)
 {
     _ServicePaciente = pIServicePaciente;
     _ServiceUsuario  = pServiceUsuario;
 }