// 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.Factories
{
///
/// Factory for the
///
public interface IGBaseTableServiceFactory
{
///
/// Creates an
///
/// The
/// The endpoint for the GBase
/// A newly created instance of the implementation for
IGBaseTableService Create(ServerProtocol serverProtocol, string endpoint);
}
}