It is model for the Flash card App-Template
        /// <summary>
        /// Gets the Instance of the Flash-Card App-Template
        /// </summary>
        /// <returns>Returns the Instance of the Flash-Card App-Template</returns>
        public static FlashModel getInstance()
        {
            if (mFlashModel == null)
                mFlashModel = new FlashModel();
            return mFlashModel;

        }
Example #2
0
 /// <summary>
 /// Gets the Instance of the Flash-Card App-Template
 /// </summary>
 /// <returns>Returns the Instance of the Flash-Card App-Template</returns>
 public static FlashModel getInstance()
 {
     if (mFlashModel == null)
     {
         mFlashModel = new FlashModel();
     }
     return(mFlashModel);
 }