Files
2024-08-24 19:13:34 +03:30

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