using _0_Framework.Domain; using AccountManagement.Application.Contracts.SubAccount; using System.Collections.Generic; namespace AccountManagement.Domain.SubAccountRoleAgg { public interface ISubAccountRoleRepository : IRepository { List GetSubAccountRolesByAccountId(long accountId); void Remove(SubAccountRole subAccountRole); } }