14 lines
484 B
C#
14 lines
484 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices.ComTypes;
|
|
using _0_Framework.Application;
|
|
using AccountManagement.Application.Contracts.Account;
|
|
|
|
namespace AccountManagement.Application.Contracts.TicketAccessAccount;
|
|
|
|
public interface ITicketAccessAccountApplication
|
|
{
|
|
bool HasTicketAccess(long accountId);
|
|
OperationResult Create(long accountId);
|
|
OperationResult Delete(long id);
|
|
List<TicketAccessAccountViewModel> GetAllAccessedAccounts();
|
|
} |