|
|
|
@ -1,4 +1,6 @@
|
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
using Volo.Abp.Authorization;
|
|
|
|
|
using Volo.Abp.Authorization.Permissions;
|
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
using Volo.Abp.Uow;
|
|
|
|
|
|
|
|
|
|
namespace Volo.Abp.Application.Services
|
|
|
|
@ -6,7 +8,7 @@ namespace Volo.Abp.Application.Services
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This interface must be implemented by all application services to register and identify them by convention.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IApplicationService : ITransientDependency, IRemoteService, IUnitOfWorkEnabled
|
|
|
|
|
public interface IApplicationService : ITransientDependency, IRemoteService, IUnitOfWorkEnabled, IValidationEnabled, IAuthorizationEnabled
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|