Explorar el Código

Remove unnecessary usings.

Andrew Klopper hace 8 años
padre
commit
e384da744b
Se han modificado 1 ficheros con 2 adiciones y 7 borrados
  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
 {