14 lines
413 B
C#
14 lines
413 B
C#
using _0_Framework.Domain;
|
|
using AccountManagement.Application.Contracts.SubAccount;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Domain.SubAccountRoleAgg
|
|
{
|
|
public interface ISubAccountRoleRepository : IRepository<long, SubAccountRole>
|
|
{
|
|
List<SubAccountRoleViewModel> GetSubAccountRolesByAccountId(long accountId);
|
|
void Remove(SubAccountRole subAccountRole);
|
|
|
|
}
|
|
}
|