optimization sql

This commit is contained in:
Artemy
2025-07-01 15:05:49 +07:00
parent 5883f3e340
commit cdae63b223
10 changed files with 81 additions and 58 deletions
@@ -1,4 +1,12 @@
using Govor.Core;
namespace Govor.Data.Repositories.Exceptions;
public class UpdateException(string s, Exception ex)
: Exception(s, ex);
public class UpdateException : GovorCoreException
{
public UpdateException(string s)
: base(s) { }
public UpdateException(string s, Exception ex)
: base(s, ex) { }
}