no message

This commit is contained in:
Bright 2025-01-28 16:26:43 +07:00
parent 204a1abc4d
commit e42dd1926b
3 changed files with 167 additions and 2 deletions

View file

@ -88,5 +88,15 @@ namespace BMA.EHR.Application.Repositories
}
await _dbContext.SaveChangesAsync();
}
//เกษียณอายุราชการ
public async Task ExecuteRetirement()
{
//var retirePeriodOfficer = await _dbContext.Set<RetirementPeriod>()
// .Include(x => x.RetirementRawProfiles.Where(y => y.Remove != "REMOVE"))
// .Where(x => x.Year == DateTime.Now.Year)
// .Where(x => x.Type.Trim().ToUpper().Contains("OFFICER"))
// .FirstOrDefaultAsync();
}
}
}