NavigationProvider.cs 513 B

1234567891011121314151617
  1. using Abp.Dependency;
  2. namespace Abp.Application.Navigation
  3. {
  4. /// <summary>
  5. /// This interface should be implemented by classes which change
  6. /// navigation of the application.
  7. /// </summary>
  8. public abstract class NavigationProvider : ITransientDependency
  9. {
  10. /// <summary>
  11. /// Used to set navigation.
  12. /// </summary>
  13. /// <param name="context">Navigation context</param>
  14. public abstract void SetNavigation(INavigationProviderContext context);
  15. }
  16. }