11 lines
228 B
C#
11 lines
228 B
C#
|
|
using Netina.Common.Models;
|
|||
|
|
|
|||
|
|
namespace Netina.Repository.Services.Abstracts;
|
|||
|
|
|
|||
|
|
|
|||
|
|
public interface IDbInitializerService : IScopedDependency
|
|||
|
|
{
|
|||
|
|
void Initialize();
|
|||
|
|
Task SeedDate(bool force = false);
|
|||
|
|
Task SeedRoles();
|
|||
|
|
}
|