Exemplo n.º 1
0
 public CareTeamMemberController(ICareTeamService teamMemberService,
                                 IGenderService iGenderService,
                                 IDemographicService idemogrphicService,
                                 IProfessionalCategory iprofessionalCategory,
                                 IDepartmentService departmentService,
                                 ICountryService countryService)
 {
     this._teamMemberService     = teamMemberService;
     this._iGenderService        = iGenderService;
     this._idemogrphicService    = idemogrphicService;
     this._iprofessionalCategory = iprofessionalCategory;
     this._departmentService     = departmentService;
     this._countryService        = countryService;
 }
Exemplo n.º 2
0
 public DemographicProvider(IDemographicQueryService queryService,
                            IDemographicService demographicService)
 {
     this.queryService       = queryService;
     this.demographicService = demographicService;
 }
Exemplo n.º 3
0
 public DemographicController(IDemographicService DemographicService)
 {
     this.DemographicService = DemographicService;
 }