public void PutNotification_No_Test([Values(0)] int applyId)
        {
            _controller.Request.Method = HttpMethod.Get;

            var actual = _controller.PutNotification(applyId, new ApplyNotifyRequest()
            {
            }
                                                     , new UserProfile()) as OkNegotiatedContentResult <ShopApplicationDto>;

            Assert.IsNotNull(actual);

            Assert.IsTrue(applyId == actual.Content.Id);
        }