Exemple #1
0
 /// <summary>
 /// This Function is used to get list of all the Cities in a particular State from Database.
 /// </summary>
 public static List <City> GetAllByState(int stateId)
 {
     return(CityDA.GetAllByState(stateId));
 }