public void Add(int companycode, int citycode, string companyname, string cityname)
 {
     var structure = new tblStructuredetail()
     {
         CompanyCode = companycode,
         CityCode    = citycode,
         CompanyName = companyname,
         CityName    = cityname,
     };
 }
 public void Update(tblStructuredetail obj)
 {
     throw new NotImplementedException();
 }