// Author: Gockner, Simon // Created: 2020-02-10 // Copyright(c) 2020 SimonG. All Rights Reserved. using System; using System.ServiceModel; namespace GBase.Api.Services { /// /// ServiceContract for the GBaseTable /// [ServiceContract] public interface IGBaseTableService : IAsyncDisposable //TODO: Add OperationContracts for all operations this service has to do { /// /// Add a column to the GBaseTable /// /// True if successful, false if not [OperationContract] bool AddColumn(); /// /// Remove a column from the GBaseTable /// /// True if successful, false if not [OperationContract] bool RemoveColumn(); } }