Exemple #1
0
        public BindingList <ClientAddressModel> GetClientAddressBi(int clientId, int?clientAddressId)
        {
            DAClientAddress dac = new DAClientAddress();
            DataTable       dt  = new DataTable();

            dt = dac.GetClientAddress(clientId, clientAddressId);


            BindingList <ClientAddressModel> list = new BindingList <ClientAddressModel>();

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                ClientAddressModel address = new ClientAddressModel();
                address.ClientAddressId = Convert.ToInt32(dt.Rows[i]["ClientAddressId"].ToString());
                address.ClientId        = Convert.ToInt32(dt.Rows[i]["ClientId"].ToString());
                address.City            = new CityModel
                {
                    CityId   = Convert.ToInt32(dt.Rows[i]["CityId"]),
                    CityName = dt.Rows[i]["CityName"].ToString()
                };
                address.County = new CountyModel {
                    CountyId   = Convert.ToInt32(dt.Rows[i]["CountyId"]),
                    CountyName = dt.Rows[i]["CountyName"].ToString()
                };
                address.StreetName = dt.Rows[i]["StreetName"].ToString();
                address.StreetNo   = dt.Rows[i]["StreetNo"].ToString();
                address.unique     = address.RandomString(8);


                list.Add(address);
            }

            return(list);
        }
Exemple #2
0
        public BindingList <CountyModel> GetCountyBi()
        {
            DAClientAddress dac = new DAClientAddress();
            DataTable       dt  = new DataTable();

            dt = dac.GetCounty();

            BindingList <CountyModel> list = new BindingList <CountyModel>();

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                CountyModel county = new CountyModel();
                county.CountyId   = Convert.ToInt32(dt.Rows[i]["CountyId"].ToString());
                county.CountyName = dt.Rows[i]["CountyName"].ToString();

                list.Add(county);
            }

            return(list);
        }
Exemple #3
0
        public void BIPrepareClientAddress(BindingList <ClientAddressModel> listAddress)
        {
            DAClientAddress da = new DAClientAddress();

            da.PrepareClientAddress(listAddress);
        }