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