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