// 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 GBaseEntry
///
[ServiceContract]
public interface IGBaseEntryService : IAsyncDisposable //TODO: Add OperationContracts for all operations this service has to do
{
///
/// Dummy OperationContract
///
[OperationContract]
void Dummy();
}
}