# Updated Controller Files for Utils Migration

## Web\Controllers\DownloadController.cs

Change line 11 from:
```csharp
using static FileUpload.StdUtil;
```

To:
```csharp
using static Utils.StdUtil;
```

---

## Web\Controllers\UploadController.cs

Change lines 11-12 from:
```csharp
using static FileUpload.StdUtil;
using static FileUpload.StdWeb;
```

To:
```csharp
using static Utils.StdUtil;
using static Utils.StdWeb;
```

---

## Other Files That May Need Updates

Search your solution for any other files that use old local namespaces and update them to use `Utils` instead.
