public async Task <string> UpdateNewConnection(ConnectionEntity obj) { await _mongoClient.Update(obj); return("updated"); }
public async Task <string> CrateNewConnection(ConnectionEntity obj) { await _mongoClient.Insert(obj); return("Inserted"); }