public IActionResult InserirHorarioAtendimento([FromBody] CadastrarHorarioAtendimentoViewModel viewModel) { try { _horarioAtendimentoAppService.CadastrarHorarioAtendimento(viewModel); return(Ok(new ResponseHelper("", true, null))); } catch (Exception e) { return(Ok(new ResponseHelper(e.Message, false, e))); } }
public void CadastrarHorarioAtendimento(CadastrarHorarioAtendimentoViewModel viewModel) { _horarioAtendimentoService.CadastrarHorarioAtendimento(_mapper.Map <HorarioAtendimento>(viewModel)); }