// Author: Gockner, Simon // Created: 2020-02-11 // Copyright(c) 2020 SimonG. All Rights Reserved. using GBase.Api.Communication; using GBase.Api.Services; namespace GBase.Client.Services { /// /// for the IGBaseTable /// public class GBaseTableService : Service, IGBaseTableService { /// /// for the IGBaseTable /// /// The /// The endpoint for the GBaseTable public GBaseTableService(ServerProtocol serverProtocol, string endpoint) : base(serverProtocol, endpoint) { } /// /// Dummy method /// public void Dummy() { throw new System.NotImplementedException(); } } }