// singleton
 public static ListMessageModel GetInstance()
 {
     if (instance == null)
     {
         instance = new ListMessageModel();
     }
     return(instance);
 }
 // singleton
 public static ListMessageModel GetInstance()
 {
     if (instance == null)
         instance = new ListMessageModel();
     return instance;
 }