IContext.cs 257 B

12345678910
  1. using System.Security.Principal;
  2. namespace Quadarax.Foundation.Core.Data.Interface.Domain
  3. {
  4. public interface IContext
  5. {
  6. IPrincipal CurrentUser { get; }
  7. TContext GetContext<TContext>() where TContext : IContext;
  8. }
  9. }