NonInventPurchasingSystem/CPRNIMS.Domain/Contracts/Account/IControllerAccess.cs
2026-01-20 07:44:30 +08:00

14 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Domain.Contracts.Account
{
public interface IControllerAccess
{
Task<List<Infrastructure.Entities.Account.ControllerAccess>> GetControllerAccessByUserId(string userId);
}
}