// 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 GBase /// [ServiceContract] public interface IGBaseService : IAsyncDisposable //TODO: Add OperationContracts for all operations this service has to do { /// /// Add a table to the GBase /// /// True if successful, false if not [OperationContract] bool AddTable(); /// /// Remove a table from the GBase /// /// True if successful, false if not [OperationContract] bool RemoveTable(); } }