แก้บั้กบันทึกคำสั่งไม่ได้

เพิ่มการใส่ค่าผู้ทำรายการใน GenericRepoository
This commit is contained in:
Suphonchai Phoonsawat 2023-08-04 09:47:58 +07:00
parent 71c8ff95e4
commit e8607f76fa
4 changed files with 29 additions and 12 deletions

View file

@ -313,5 +313,10 @@ namespace BMA.EHR.Infrastructure.Persistence
{
return base.SaveChangesAsync();
}
public void Attatch<T>(T entity) where T : class
{
Attach(entity);
}
}
}