Skip to content

Commit ead1dcb

Browse files
committed
Change cosmosclient to private and add new line by end of file
1 parent 5a44e40 commit ead1dcb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/providers/WorkflowCore.Providers.Azure/Interface/ICosmosDbClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ public interface ICosmosDbClient
66
{
77
CosmosClient GetCosmosClient();
88
}
9-
}
9+
}

src/providers/WorkflowCore.Providers.Azure/Services/CosmosDbClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class CosmosDbClient : ICosmosDbClient, IDisposable
88
{
99
private bool isDisposed = false;
1010

11-
public CosmosClient _client;
11+
private CosmosClient _client;
1212

1313
public CosmosDbClient(string connectionString)
1414
{
@@ -45,4 +45,4 @@ protected virtual void Dispose(bool disposing)
4545
}
4646
}
4747
}
48-
}
48+
}

0 commit comments

Comments
 (0)