Beispiel #1
0
        public async Task <ActionResult> IncluirSondagemPortugues(List <StudentPollPortuguese> ListStudentPollPortuguese)
        {
            try
            {
                var BusinessPollPortuguese = new Data.Business.PollPortuguese(_config);
                BusinessPollPortuguese.InsertPollPortuguese(ListStudentPollPortuguese);

                return(Ok());
            }
            catch (System.Exception ex)
            {
                return(StatusCode(500, ex));
            }
        }