Esempio n. 1
0
 public ResponseDto CreateTreatmentCall([FromBody] CallDto callTreatmentDto)
 {
     _callsRepository.CreateCall(MapCallDtoToCallTreatment(callTreatmentDto));
     return(new ResponseDto());
 }