2024-05-07 11:01:55 +03:30
|
|
|
|
namespace Netina.Repository.Services.Abstracts;
|
2023-12-16 20:25:12 +03:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public interface IDbInitializerService : IScopedDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
void Initialize();
|
|
|
|
|
|
Task SeedDate(bool force = false);
|
|
|
|
|
|
Task SeedRoles();
|
2024-04-22 13:33:39 +03:30
|
|
|
|
Task Refactor();
|
2023-12-16 20:25:12 +03:30
|
|
|
|
}
|