Domain.QualityTestFactory.getQTF C# (CSharp) Method

getQTF() public static method

public static getQTF ( ) : QualityTestFactory
return QualityTestFactory
        public static QualityTestFactory getQTF()
        {
            if (qtf == null)
            {
                qtf = new QualityTestFactory();
            }
            return qtf;
        }

Usage Example

Esempio n. 1
0
 public QualityTestFactory GetQTF()
 {
     return(QualityTestFactory.getQTF());
 }
QualityTestFactory