Insurance Edit Custom modal bug fixed - employee bank info updated

This commit is contained in:
SamSys
2025-02-05 05:27:08 +03:30
parent fb6667a0de
commit 141ae59939
26 changed files with 682 additions and 243 deletions

View File

@@ -18,6 +18,10 @@ namespace _0_Framework.InfraStructure
_context = context;
}
public void AddRange(IEnumerable<T> entities)
{
_context.AddRange(entities);
}
public void Create(T entity)
{
_context.Add(entity);