// Author: Gockner, Simon // Created: 2020-02-12 // Copyright(c) 2020 SimonG. All Rights Reserved. using GBase.Api.Communication; using GBase.Api.Services; namespace GBase.Client.Services.Factories { /// /// Factory for the /// public interface IGBaseEntryServiceFactory { /// /// Creates an /// /// The /// The endpoint for the GBase /// A newly created instance of the implementation for IGBaseEntryService Create(ServerProtocol serverProtocol, string endpoint); } }