[C# Port] Adding new Proxy Update Queue Function. (#1757)

* Adding QueueProxyUpdate.

* Setting to serializer.

* Updates.

* Updating with new ORM model and [model]Operation.

* Fixing return type.

* Working on changes.

* Tested and ready for review.

* Formatting.

* Removing test code.

* Update src/ApiService/Tests/OrmTest.cs

Co-authored-by: Cheick Keita <chkeita@microsoft.com>

* Fixing tests.

* Fixing tests again.

* Asserting null in tests.

* Adding null param.

* Removing whitespace.

* syntax error.

Co-authored-by: Cheick Keita <chkeita@microsoft.com>
This commit is contained in:
Noah McGregor Harper
2022-04-11 13:32:43 -07:00
committed by GitHub
parent 5aceb25843
commit 75039a96eb
7 changed files with 141 additions and 2 deletions

View File

@ -42,6 +42,7 @@ public class Program
.AddSingleton<IQueue, Queue>()
.AddSingleton<ICreds>(_ => new Creds())
.AddSingleton<IStorage, Storage>()
.AddSingleton<IProxyOperations, ProxyOperations>()
)
.Build();