// 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 IGBaseColumn
///
public class GBaseColumnService : Service, IGBaseColumnService
{
///
/// for the IGBaseColumn
///
/// The
/// The endpoint for the GBaseColumn
public GBaseColumnService(ServerProtocol serverProtocol, string endpoint)
: base(serverProtocol, endpoint)
{
}
///
/// Dummy method
///
public void Dummy()
{
throw new System.NotImplementedException();
}
}
}