// 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 an entry to the GBaseTable /// /// True if successful, false if not [OperationContract] bool AddEntry(); /// /// Remove an entry from the GBaseTable /// /// True if successful, false if not [OperationContract] bool RemoveEntry(); } }