Skip to content

Commit 09063dd

Browse files
committed
Initial commit
1 parent 06d6f9a commit 09063dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Server-side/Controllers/DocumentStorageController.cs renamed to Server-side/Controllers/PostgresDocumentStorageController.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99

1010
[Route("api/[controller]")]
1111
[ApiController]
12-
public class DocumentsController : ControllerBase
12+
public class PostgresDocumentStorageController : ControllerBase
1313
{
1414
private readonly PostgresDocumentStorageService _documentStorageService;
1515
private readonly DocumentContext _documentContext;
1616

17-
public DocumentsController(DocumentContext context)
17+
public PostgresDocumentStorageController(DocumentContext context)
1818
{
1919
_documentContext = context;
2020
_documentStorageService = new PostgresDocumentStorageService(_documentContext);

0 commit comments

Comments
 (0)