10 lines
292 B
C#
10 lines
292 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using _0_Framework.Domain;
|
|
|
|
namespace Company.Domain.EmployeeAuthorizeTempAgg;
|
|
|
|
public interface IEmployeeAuthorizeTempRepository:IRepository<long,EmployeeAuthorizeTemp>
|
|
{
|
|
Task<EmployeeAuthorizeTemp> GetByNationalCode(string nationalCode);
|
|
} |