using Abp.Dependency; namespace Abp.Application.Services { /// /// This interface must be implemented by all application services to identify them by convention. /// public interface IApplicationService : ITransientDependency { } }