namespace FoodsharingSiegen.Server.Data.Service
{
public class ServiceBase
{
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Database Context
///
/// The context.
////////////////////////////////////////////////////////////////////////////////////////////////////
protected FsContext Context { get; }
////////////////////////////////////////////////////////////////////////////////////////////////////
/// Specialised constructor for use only by derived class.
///
/// A Beging, 20.10.2021.
///
/// The context.
////////////////////////////////////////////////////////////////////////////////////////////////////
protected ServiceBase(FsContext context) => Context = context;
}
}