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

เพิ่มการใส่ค่าผู้ทำรายการใน 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

@ -7,6 +7,8 @@ namespace BMA.EHR.Application.Common.Interfaces
{
DbSet<T> Set<T>() where T : class;
void Attatch<T>(T entity) where T : class;
Task<int> SaveChangesAsync();
}
}