13 lines
259 B
C#
13 lines
259 B
C#
namespace Kreta.Naplo.Domain
|
|
{
|
|
/// <summary>
|
|
/// Service interface
|
|
/// </summary>
|
|
public interface IService
|
|
{
|
|
/// <summary>
|
|
/// Service context
|
|
/// </summary>
|
|
ServiceContext Context { get; set; }
|
|
}
|
|
}
|