예제 #1
0
 public ManageService(RedoakContext context, IUserService userService,
                      UserManager <ApplicationUser> userManager,
                      RoleManager <IdentityRole> roleManager) : base(context)
 {
     UserService = userService;
     UserManager = userManager;
     RoleManager = roleManager;
 }
 public CustomerManageService(RedoakContext context) : base(context)
 {
 }
예제 #3
0
 public BaseService(RedoakContext context)
 {
     Context = context;
 }
예제 #4
0
 public RoleRepository(RedoakContext context) : base(context)
 {
 }
 public StockManageService(RedoakContext context) : base(context)
 {
 }
예제 #6
0
 public UserService(RedoakContext context) : base(context)
 {
 }
예제 #7
0
 public CacheService(IMemoryCache cache, RedoakContext context, RoleManager <IdentityRole> roleManager)
 {
     Cache        = cache;
     Context      = context;
     _roleManager = roleManager;
 }
예제 #8
0
 protected BaseRepository(RedoakContext context)
 {
     Context = context;
 }
예제 #9
0
 public UserRepository(RedoakContext context) : base(context)
 {
 }