14 lines
353 B
C#
14 lines
353 B
C#
using _0_Framework.Application;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.Role
|
|
{
|
|
public interface IRoleApplication
|
|
{
|
|
OperationResult Create(CreateRole command);
|
|
OperationResult Edit(EditRole command);
|
|
List<RoleViewModel> List();
|
|
EditRole GetDetails(long id);
|
|
}
|
|
}
|