public void GetById_UnknowGuiPased_ReturnNotFoundResult()
        {
            var notFoundResult = _controller.GetById(Guid.NewGuid());

            Assert.IsType <NotFoundResult>(notFoundResult.Result);
        }