We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d6f9a commit 09063ddCopy full SHA for 09063dd
Server-side/Controllers/DocumentStorageController.cs renamed to Server-side/Controllers/PostgresDocumentStorageController.cs
@@ -9,12 +9,12 @@
9
10
[Route("api/[controller]")]
11
[ApiController]
12
-public class DocumentsController : ControllerBase
+public class PostgresDocumentStorageController : ControllerBase
13
{
14
private readonly PostgresDocumentStorageService _documentStorageService;
15
private readonly DocumentContext _documentContext;
16
17
- public DocumentsController(DocumentContext context)
+ public PostgresDocumentStorageController(DocumentContext context)
18
19
_documentContext = context;
20
_documentStorageService = new PostgresDocumentStorageService(_documentContext);
0 commit comments