Example #1
0
 public EditAreaVM(string areaid, string areaname, string stateid)
 {
     updateAre     = new UpdateAreModel();
     Area.id       = areaid;
     Area.areaName = areaname;
     Area.stateId  = stateid;
     web           = new MasterServices((CountryI)this, (EditAreaI)this);
     web.StateListForEditing(stateid);
     CountryList = new CountryModel();
     web.GetCountryDetails();
 }
Example #2
0
 public async void UpdateAreaDetailSucess(string result)
 {
     updateAre = new UpdateAreModel();
     await App.Current.MainPage.DisplayAlert("HMS", result, "OK");
 }