9 lines
202 B
C#
9 lines
202 B
C#
|
|
namespace NetinaCMS.Repository.Services.Abstracts;
|
|||
|
|
|
|||
|
|
|
|||
|
|
public interface IDbInitializerService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
void Initialize();
|
|||
|
|
Task SeedDate(bool force = false);
|
|||
|
|
Task SeedRoles();
|
|||
|
|
}
|