No repository description.
namespace Base.Contracts;
public interface IUnitOfWork
{
Task<int> SaveChangesAsync();
}