public void Update_NotFound_EstimationDoNotExists()
        {
            const int estId = 13;

            _estimationRepository.Exists(estId).Returns(false);

            var respone = _estimationsController.Update(12, estId, new Estimation
            {
                Amount       = 1,
                CompanyId    = 1,
                Description  = "desc",
                EstimationId = "EstID",
                Id           = 1,
                Quantity     = 1,
                SpecNumber   = "SPEC",
                Unit         = "unit",
                UnitPrice    = 1
            });

            Assert.That(respone, Is.TypeOf <NotFoundResult>());
        }