public MenuService(WebEntityModel context, IUserService userService)
 {
     _context     = context;
     _userService = userService;
 }
 public SettingService(WebEntityModel context)
 {
     _context = context;
 }
예제 #3
0
 public PageComponentService(WebEntityModel context)
 {
     _context = context;
 }
예제 #4
0
 public PostCommentService(WebEntityModel context)
 {
     _context = context;
 }
예제 #5
0
 public LoginService(WebEntityModel context)
 {
     _context = context;
 }
 public TokenService(WebEntityModel context, IUserService userService, IRegistrationService registrationService)
 {
     _context             = context;
     _userService         = userService;
     _registartionService = registrationService;
 }
 public RegistrationService(WebEntityModel context)
 {
     _context = context;
 }
 public PostCategoryService(WebEntityModel context)
 {
     _context = context;
 }
예제 #9
0
 public ImageService(WebEntityModel context)
 {
     _context = context;
 }
 public PageSectionTypeService(WebEntityModel context)
 {
     _context = context;
 }
 public UserService(WebEntityModel context)
 {
     _context = context;
 }
예제 #12
0
 public RoleService(WebEntityModel context)
 {
     _context = context;
 }
 public MenuItemService(WebEntityModel context)
 {
     _context = context;
 }
예제 #14
0
 public CopyService(WebEntityModel context)
 {
     _context = context;
 }