// // 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); }
public async Task<List<AddressModelForBanks>> Get(string city, string country){ AddressForBankBinder binder = new AddressForBankBinder(); var res = await binder.BindData(city, country); return null; }
public async Task<ActionResult> GetBankByCityMathod(string city,string country) { AddressForBankBinder binder = new AddressForBankBinder(); var res = await binder.BindData(city, country); return View(res); }
public IEnumerable<AddressModelForBanks> Get(string city, string country) { AddressForBankBinder binder = new AddressForBankBinder(); var res = binder.BindData(city, country); return res; }
public ActionResult _GetAllBanksMathod() { AddressForBankBinder binder = new AddressForBankBinder(); var res = binder.BindDataAll(); return PartialView(res); }
public ActionResult _GetAllBanksByBankMathod(string bank, string country) { AddressForBankBinder binder = new AddressForBankBinder(); var res = binder.BindDataByBank(bank, country); return PartialView(res); }