2024-04-16 20:01:34 +03:30
|
|
|
|
using Netina.Common.Models;
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|