Esempio n. 1
0
        public async Task <IActionResult> Create(NotenModel neuenote)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    await NotenProcessor.CreateNoteAsync(neuenote.NId, neuenote.Bezeichnung, neuenote.Mindestanforderung, ConnectionString);
                }

                return(RedirectToAction("Index"));
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
Esempio n. 2
0
        public async Task <bool> PostNote(NotenModel note)
        {
            try
            {
                var b = await NotenProcessor.CreateNoteAsync(
                    note.NId,
                    note.Bezeichnung,
                    note.Mindestanforderung,
                    ConnectionString);

                return(b);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }