File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
SSLLWrapper.ConsoleAppTester Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace SSLLWrapper.ConsoleAppTester
6
6
class Program
7
7
{
8
8
private const string ApiUrl = "https://api.dev.ssllabs.com/api/fa78d5a4" ;
9
- static readonly ApiService ApiService = new ApiService ( ApiUrl ) ;
9
+ static readonly Service ApiService = new Service ( ApiUrl ) ;
10
10
11
11
static void Main ( string [ ] args )
12
12
{
Original file line number Diff line number Diff line change 4
4
5
5
namespace SSLLWrapper
6
6
{
7
- public class Api : IApi
7
+ class Api : IApi
8
8
{
9
9
public HttpWebResponse MakeGetRequest ( RequestModel requestModel )
10
10
{
Original file line number Diff line number Diff line change 45
45
</ItemGroup >
46
46
<ItemGroup >
47
47
<Compile Include =" Api.cs" />
48
- <Compile Include =" ApiService .cs" />
48
+ <Compile Include =" Service .cs" />
49
49
<Compile Include =" Helpers\HttpWebResponseHelper.cs" />
50
50
<Compile Include =" Interfaces\IApi.cs" />
51
51
<Compile Include =" Interfaces\IHttpWebResponseHelper.cs" />
Original file line number Diff line number Diff line change 6
6
7
7
namespace SSLLWrapper
8
8
{
9
- public class ApiService
9
+ public class Service
10
10
{
11
11
#region construction
12
12
@@ -43,7 +43,7 @@ public enum All
43
43
Done
44
44
}
45
45
46
- public ApiService ( string apiUrl )
46
+ public Service ( string apiUrl )
47
47
{
48
48
_api = new Api ( ) ;
49
49
_webResponseHelper = new HttpWebResponseHelper ( ) ;
You can’t perform that action at this time.
0 commit comments