Пример #1
0
        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)));
            }
        }
Пример #2
0
 public void CadastrarHorarioAtendimento(CadastrarHorarioAtendimentoViewModel viewModel)
 {
     _horarioAtendimentoService.CadastrarHorarioAtendimento(_mapper.Map <HorarioAtendimento>(viewModel));
 }