Domain.QualityTestController.ChangeQualityTest C# (CSharp) Method

ChangeQualityTest() private method

private ChangeQualityTest ( bool done, bool cHecked, string comment, string result ) : string
done bool
cHecked bool
comment string
result string
return string
        internal string ChangeQualityTest(bool done, bool cHecked, string comment, string result)
        {
            this.result.setComment(comment);
            this.result.setResult(result);
            this.result.setDone(done);
            this.result.setApproved(cHecked);
            Persistance.DBController.getController().saveQualityTest(this.result);
            return "The data has been saved";
        }