public UpdateItemModelValidator(IItemsCrudService itemsCrudService, ICollectionsCrudService collectionsCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService) { this.itemsCrudService = itemsCrudService; this.collectionsCrudService = collectionsCrudService; this.userCrudService = userCrudService; this.resourceCrudService = resourceCrudService; }
public UpdateCollectionModelValidator(ICollectionsCrudService collectionsCrudService, IThemesCrudService themesCrudService, IUserCrudService userCrudService, IResourceCrudService resourceCrudService) { this.collectionsCrudService = collectionsCrudService; this.themesCrudService = themesCrudService; this.userCrudService = userCrudService; this.resourceCrudService = resourceCrudService; }
public Profile(IMapper mapper, ISessionHelper sessionHelper, IUserCrudService userCrudService, ICollectionsManager collectionsManager, ICollectionsCrudService collectionsCrudService, IItemsManager itemsManager, IItemsCrudService itemsCrudService) { this.mapper = mapper; this.userCrudService = userCrudService; this.collectionsManager = collectionsManager; this.collectionsCrudService = collectionsCrudService; this.itemsManager = itemsManager; this.itemsCrudService = itemsCrudService; this.sessionHelper = sessionHelper; }
public GamesManager(IHubContext <MainHub> hubContext, IMapper mapper, IGamesCrudService gamesCrudService, IUserCrudService userCrudService, ISessionTagCrudService sessionTagCrudService, ITagCrudService tagCrudService) { this.hubContext = hubContext; this.mapper = mapper; this.gamesCrudService = gamesCrudService; this.userCrudService = userCrudService; this.sessionTagCrudService = sessionTagCrudService; this.tagCrudService = tagCrudService; }
public UsersController( IUserCrudService crudService, ICheckEmailService checkEmailService, IMapper mapper ) { _crudService = crudService; _checkEmailService = checkEmailService; _mapper = mapper; }
public AppUsersManager(IIdentityUnitOfWork identityUnitOfWork, IMapper mapper, IUserCrudService userCrudService) { this.identityUnitOfWork = identityUnitOfWork; this.mapper = mapper; this.userCrudService = userCrudService; }
public UserCrudController(IUserCrudService userCrudService) { _userCrudService = userCrudService; }
public AppSignInManager(IIdentityUnitOfWork identityUnitOfWork, IUserCrudService userCrudService, IMapper mapper) { this.identityUnitOfWork = identityUnitOfWork; this.userCrudService = userCrudService; this.mapper = mapper; }
public CreateDefaultOptionalFieldModelValidator(ICollectionsCrudService collectionsCrudService, IFieldTypesCrudService fieldTypesCrudService, IUserCrudService userCrudService) { this.collectionsCrudService = collectionsCrudService; this.fieldTypesCrudService = fieldTypesCrudService; this.userCrudService = userCrudService; }
public LikeItemModelValidator(IUserCrudService userCrudService, IItemsCrudService itemsCrudService) { this.userCrudService = userCrudService; this.itemsCrudService = itemsCrudService; }
public DeleteCollectionModelValidator(IUserCrudService userCrudService, ICollectionsCrudService collectionsCrudService) { this.userCrudService = userCrudService; this.collectionsCrudService = collectionsCrudService; }
public CommentItemModelValidator(IUserCrudService userCrudService) { this.userCrudService = userCrudService; }
public DeleteOptionalFieldModelValidator(IOptionalFieldsCrudService optionalFieldsCrudService, ICollectionsCrudService collectionsCrudService, IUserCrudService userCrudService) { this.collectionsCrudService = collectionsCrudService; this.userCrudService = userCrudService; this.optionalFieldsCrudService = optionalFieldsCrudService; }