using System; using System.Collections.Generic; using _0_Framework.Application; using _0_Framework.Domain; using AccountManagement.Application.Contracts.Account; namespace AccountManagement.Domain.AccountLeftWorkAgg; public interface IAccountLeftworkRepository : IRepository { (string StartWorkFa, string LeftWorkFa) GetByAccountId(long accountId); List WorkshopList(long accountId); // List GetAllWorkshops(); OperationResult CopyWorkshopToNewAccount(long currentAccountId, long newAccountId); OperationResult SaveWorkshopAccount( List workshopAccountList, string startDate, string leftDate, long accountId); }