예제 #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 async Task<List<AddressModelForBanks>> Get(string city, string country){
            AddressForBankBinder binder = new AddressForBankBinder();
            var res = await binder.BindData(city, country);

            return null;
        }
예제 #3
0
 public async Task<ActionResult> GetBankByCityMathod(string city,string country)
 {
     AddressForBankBinder binder = new AddressForBankBinder(); 
     var res = await binder.BindData(city, country);
     return View(res);
 }
예제 #4
0
 public IEnumerable<AddressModelForBanks> Get(string city, string country)
 {
     AddressForBankBinder binder = new AddressForBankBinder();
     var res = binder.BindData(city, country);
     return res;
 }
예제 #5
0
 public ActionResult _GetAllBanksMathod()
 {
     AddressForBankBinder binder = new AddressForBankBinder();
     var res = binder.BindDataAll();
     return PartialView(res);
 }
예제 #6
0
 public  ActionResult _GetAllBanksByBankMathod(string bank, string country)
 {
     AddressForBankBinder binder = new AddressForBankBinder();
     var res = binder.BindDataByBank(bank, country);
     return PartialView(res);
 }