using Volo.DependencyInjection; namespace Volo.Abp.Domain.Services { /// /// This interface must be implemented by all domain services to identify them by convention. /// public interface IDomainService : ITransientDependency { } }