Add Db Seeder ...

This commit is contained in:
2026-05-11 23:23:37 +03:30
parent ac462bd7a7
commit 5385691047
3 changed files with 34 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
using System;
using xDataService.Interfaces;
using xServices.Models.Entities;
namespace xServices.Interfaces
{
public interface IXTestDbSeeder : IXBaseDbSeeder<XTest, Guid>
{ }
}