19 lines
518 B
C#
19 lines
518 B
C#
using SolarPower.Models.Role;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace SolarPower.Repository.Interface
|
||
{
|
||
public interface IRoleRepository : IRepositoryBase<Role>
|
||
{
|
||
/// <summary>
|
||
/// 取得下拉式公司角色選單,須為Deleted: 0
|
||
/// </summary>
|
||
/// <param name="filter"></param>
|
||
/// <returns></returns>
|
||
Task<List<RoleSelectItemList>> GetRoleSelectOptionListAsync(int companyId);
|
||
}
|
||
}
|