FIC_Solar/SolarPower/Repository/Interface/IRoleRepository.cs
2021-06-09 15:03:24 +08:00

19 lines
518 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}
}