public ApiKey GetApiKey(string apiKey) { JarsApiKey key = ApiKeyRepository.GetById(apiKey); return(key.ConvertTo <ApiKey>()); }
public bool ApiKeyExists(string apiKey) { JarsApiKey key = ApiKeyRepository.GetById(apiKey); return(key != null); }