예제 #1
0
 //
 // GET: /AddressBank/
 public async Task<ActionResult> _GetBankByCityMathod(string city, string country, string bank)
 {
     AddressForBankBinder binder = new AddressForBankBinder();
    /* if(bank==null){
         var res = await binder.BindData(city, country);
         return PartialView(res);
     }else{*/
         string banks = bank;
          var res = await binder.BindDataByBank(city, country,bank);
          return PartialView(res);
     }
예제 #2
0
 public  ActionResult _GetAllBanksByBankMathod(string bank, string country)
 {
     AddressForBankBinder binder = new AddressForBankBinder();
     var res = binder.BindDataByBank(bank, country);
     return PartialView(res);
 }