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

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

            return("Inserted");
        }