Beispiel #1
0
        public async Task <IActionResult> CreateEventPost(CreateEventModel createEvent)
        {
            createEvent.Event.PictureUrl = "http://externalcatalogbaseurltobereplaced/api/pic/100";//"http://localhost:9080/api/pic/100";
            await _service.CreateEventAsync(createEvent.Event);

            return(View());
        }