Esempio n. 1
0
        private void btnclick(object sender, EventArgs e)
        {
            Rc = new RegistrationClass();
            Rc.CreateDatabaseBook();
            String           t   = C_id.ToString();
            List <CLocation> res = Rc.SelectBookedLocation(t);
            List <CLocation> k   = Rc.SelectTableLocation();
            int o = k.Count;

            if (res != null)
            {
                int i = res.Count;

                CLocation Loc  = res.Last();
                CLocation Loc1 = res[0];

                Mssage = Loc.Message;
                Addrss = Loc.address;
            }

            RM         = new Book();
            RM.Message = Mssage;
            RM.C_id    = C_id.Text;
            RM.D_id    = D_id.Text;
            RM.Address = Addrss;
            bool r = Rc.InsertBook(RM);

            if (r)
            {
                FindViewById <TextView>(Resource.Id.textView1).Text = "Booked Successfully ! Enjoy Your Ride";
            }
        }