private List <MatrimonyProfile> GetAllProfiles(string websiteName)
 {
     try
     {
         List <MatrimonyProfile> allProfiles = new List <MatrimonyProfile>();
         var dbResult = adaptor.GetAllProfiles(out allProfiles);
         return(allProfiles);
     }
     catch (Exception ex)
     {
         throw;
     }
 }