public UpdatableAppService( IUnitOfWorkFactory unitOfWorkFactory, IMapper mapper, IUpdatableService <TDomainEntity> service) : base(unitOfWorkFactory, mapper) { _service = service; }
public BetsHub(IUpdatableService <BetViewModel> updatableService, ISportsRepository sportsRepository) : base(updatableService) { this._sportsRepository = sportsRepository; }
protected UpdatableServiceHub(IUpdatableService <TItem> updatableService) { this._updatableService = updatableService; }