LeftWorkAccount Table created - workshop Account edited table

This commit is contained in:
samsys
2024-07-23 21:14:55 +03:30
parent 88fbea0a39
commit d922487032
33 changed files with 13405 additions and 155 deletions

View File

@@ -0,0 +1,12 @@
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);
}