9 lines
117 B
C#
9 lines
117 B
C#
using System;
|
|
|
|
namespace Application
|
|
{
|
|
public interface ICurrentUserProvider
|
|
{
|
|
Guid GetCurrentUserId();
|
|
}
|
|
} |