|
|
|
@ -2,14 +2,15 @@ |
|
|
|
// Created: 2020-02-11 |
|
|
|
// Created: 2020-02-11 |
|
|
|
// Copyright(c) 2020 SimonG. All Rights Reserved. |
|
|
|
// Copyright(c) 2020 SimonG. All Rights Reserved. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using GBase.Api.Communication; |
|
|
|
using GBase.Api.Services; |
|
|
|
using GBase.Api.Services; |
|
|
|
|
|
|
|
|
|
|
|
namespace GBase.Client.Services |
|
|
|
namespace GBase.Client.Services |
|
|
|
{ |
|
|
|
{ |
|
|
|
public class GBaseEntryService : Service<IGBaseEntryService>, IGBaseEntryService |
|
|
|
public class GBaseEntryService : Service<IGBaseEntryService>, IGBaseEntryService |
|
|
|
{ |
|
|
|
{ |
|
|
|
public GBaseEntryService(string endpoint) |
|
|
|
public GBaseEntryService(ServerProtocol serverProtocol, string endpoint) |
|
|
|
: base(endpoint) |
|
|
|
: base(serverProtocol, endpoint) |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|