12 lines
413 B
C#
12 lines
413 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using AccountManagement.Application.Contracts.Account;
|
|
|
|
namespace AccountManagement.Domain.AccountLeftWorkAgg;
|
|
|
|
public interface IAccountLeftworkRepository : IRepository<long, AccountLeftWork>
|
|
{
|
|
(string StartWorkFa, string LeftWorkFa) GetByAccountId(long accountId);
|
|
List<WorkshopAccountlistViewModel> WorkshopList(long accountId);
|
|
} |