public static Cluster ToModel(this GetClustersInArea_Result cl)
 {
     Cluster cluster = new Cluster();
     cluster.Id = cl.Id;
     cluster.Latitude = cl.Latitude;
     cluster.Longitude = cl.Longitude;
     cluster.Time = cl.Time;
     return cluster;
 }
 public static Cluster ToModel(this Clusters cl)
 {
     Cluster cluster = new Cluster();
     cluster.Id = cl.Id;
     cluster.Latitude = cl.Latitude;
     cluster.Longitude = cl.Longitude;
     cluster.RestaurantID = cl.RestaurantID;
     cluster.Time = cl.Time;
     return cluster;
 }