IApplicationService.cs 282 B

123456789101112
  1. using Abp.Dependency;
  2. namespace Abp.Application.Services
  3. {
  4. /// <summary>
  5. /// This interface must be implemented by all application services to identify them by convention.
  6. /// </summary>
  7. public interface IApplicationService : ITransientDependency
  8. {
  9. }
  10. }