14 lines
331 B
C#
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);
|
|
}
|
|
}
|