Beispiel #1
0
        public async Task <string> UpdateNewConnection(ConnectionEntity obj)
        {
            await _mongoClient.Update(obj);

            return("updated");
        }
Beispiel #2
0
        public async Task <string> CrateNewConnection(ConnectionEntity obj)
        {
            await _mongoClient.Insert(obj);

            return("Inserted");
        }