| 1234567891011121314151617181920 |
- using WePlatform.EF;
- namespace WePlatform.SeedData
- {
- public class InitialUserAndFun
- {
- private readonly WePlatformDbContext _context;
- public InitialUserAndFun(WePlatformDbContext context)
- {
- _context = context;
- }
- public void Create()
- {
- new DefaultFunctionsCreator(_context).Create();
- new RoleAndUserCreator(_context).Create();
- }
- }
- }
|