implementation/add-data-classes #1

Merged
VsevolodKozlov123 merged 10 commits from implementation/add-data-classes into master 2024-12-12 16:11:43 +00:00
Showing only changes of commit 77051bcf84 - Show all commits

View File

@ -28,7 +28,13 @@ namespace data.Repository
public IEnumerable<GroupDAO> getAllGroup()
{
return dbContext.groups.ToList();
try
{
return dbContext.groups.ToList();
}
catch (Exception ex) {
return new List<GroupDAO>();
}
}
}
}