Ejemplo n.º 1
0
        public async Task <Int32> Create(Todo todo)
        {
            String currentUser = User.GetUserId();

            return(await todoService.Create(currentUser, todo));
        }