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 { /// /// 取得下拉式公司角色選單,須為Deleted: 0 /// /// /// Task> GetRoleSelectOptionListAsync(int companyId); } }