using System; using System.Threading.Tasks; using _0_Framework.Domain; namespace Company.Domain.EmployeeAuthorizeTempAgg; public interface IEmployeeAuthorizeTempRepository:IRepository { Task GetByNationalCode(string nationalCode); }