Esempio n. 1
0
        public async Task <bool> CreateEvent(CreateEventVM viewModel)
        {
            await context.BookRoom(viewModel, User.Identity.Name);

            return(true);
        }