Exemple #1
0
 public EmergencyContactController(IEmergencyContactAppService emergencyContactAppService)
 {
     _emergencyContactAppService = emergencyContactAppService;
 }
Exemple #2
0
 public EditModalModel([NotNull] IEmergencyContactAppService emergencyContactAppService)
 {
     _emergencyContactAppService = emergencyContactAppService ?? throw new ArgumentNullException(nameof(emergencyContactAppService));
 }
 public CreateModalModel(IEmergencyContactAppService emergencyContactAppService)
 {
     _emergencyContactAppService = emergencyContactAppService;
 }