Sample code is taken from ShareLatex, where it works fine.
Why TeXnicCenter do not generate bibliography list?
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\bibliography {Sample}
\usepackage{biblatex}
\addbibresource{Sample.bib}
\title{Bibliography management: \texttt{biblatex} package}
\author{Share\LaTeX}
\begin{document}
\maketitle
This document is an example of \texttt{biblatex} package using in bibliography management. Three items are cited: \textit{The \LaTeX\ Companion} book \cite{latexcompanion}, the Einstein journal paper \cite{einstein}, and the Donald Knuth's website \cite{knuthwebsite}. The \LaTeX\ related items are \cite{latexcompanion,knuthwebsite}.
\medskip
\printbibliography
\end{document}


biblatexyou have to run Biber, see Biblatex with Biber: Configuring my editor to avoid undefined citations. For a bit of background on what Biber does, see Question mark or bold citation key instead of citation number and bibtex vs. biber and biblatex vs. natbib. – moewe Jul 23 '17 at 08:51\bibliography {Sample}line,\addbibresource{Sample.bib}is enough (and\addbibresourceis preferred over\bbliographyinbiblatex). – moewe Jul 23 '17 at 08:52