public List <Lookup> getAllCities()
 {
     return(LookupBL.getListLookupByTableName(Constants.CitiesTableName));;
 }
 public List <Lookup> getAllBookName()
 {
     return(LookupBL.getListLookupByTableName(Constants.BooksNameTableName));;
 }
 public List <Lookup> getAllCategory()
 {
     return(LookupBL.getListLookupByTableName(Constants.BooksCategoryTableName));
 }
 public List <Lookup> getAllPublishing()
 {
     return(LookupBL.getListLookupByTableName(Constants.PuplishingTableName));
 }
 public List <Lookup> getAllAuther()
 {
     return(LookupBL.getListLookupByTableName(Constants.AutherTableName));
 }
 public List <Lookup> getGenderList()
 {
     return(LookupBL.getListLookupByTableName(Constants.GenderTableName));
 }