16 lines
412 B
C#
16 lines
412 B
C#
using _0_Framework.Domain;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using AccountManagement.Application.Contracts.ProgramManager;
|
|
|
|
namespace AccountManagement.Domain.PmDomains.PmRoleAgg;
|
|
|
|
public interface IPmRoleRepository :IRepository<long, PmRole>
|
|
{
|
|
Task<List<GetPmRolesDto>> GetPmRoleList(long? gozareshgirRoleId);
|
|
|
|
Task<PmRole?> GetPmRoleToEdit(long gozareshgirRoleId);
|
|
|
|
}
|
|
|