This commit is contained in:
2023-11-27 06:56:03 +02:00
commit 343564fcc0
236 changed files with 101156 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace DAL
{
using Domain;
public interface ITaxBandRepository
{
Task<List<TaxBand>> GetTaxBands();
}
}