Skip to content

Commit a29dd38

Browse files
committed
Update instructions for get calendar data part of tutorial
1 parent 848431e commit a29dd38

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Demos/03-add-msgraph/graph-tutorial/Controllers/CalendarController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license.
33

4+
using System;
45
using graph_tutorial.Helpers;
56
using System.Threading.Tasks;
67
using System.Web.Mvc;

tutorial/add-ms-graph.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ Consider what this code is doing.
7777
Now create a controller for the calendar views. Right-click the **Controllers** folder in Solution Explorer and choose **Add > Controller...**. Choose **MVC 5 Controller - Empty** and choose **Add**. Name the controller `CalendarController` and choose **Add**. Replace the entire contents of the new file with the following code.
7878

7979
```cs
80+
using System;
8081
using graph_tutorial.Helpers;
8182
using System.Threading.Tasks;
8283
using System.Web.Mvc;

0 commit comments

Comments
 (0)