Browse Source

Remove unnecessary usings.

Andrew Klopper 8 years ago
parent
commit
e384da744b
1 changed files with 2 additions and 7 deletions
  1. 2 7
      BulkPrintingAPI/Controllers/VendorsController.cs

+ 2 - 7
BulkPrintingAPI/Controllers/VendorsController.cs

@@ -1,12 +1,7 @@
1
-using System;
2
-using System.Collections.Generic;
3
-using System.Data.SqlClient;
4
-using System.Linq;
5
-using System.Threading.Tasks;
6
-using Microsoft.AspNetCore.Http;
1
+using MAX.Models;
7 2
 using Microsoft.AspNetCore.Mvc;
8 3
 using Microsoft.EntityFrameworkCore;
9
-using MAX.Models;
4
+using System.Threading.Tasks;
10 5
 
11 6
 namespace BulkPrintingAPI.Controllers
12 7
 {