/// <summary>
        /// delete state
        /// </summary>
        /// <param name="state"></param>
        public void DeleteStateProvince(Domain.Entities.StateProvince state)
        {
            if (state == null)
            {
                throw new ArgumentNullException("StateProvince");
            }

            _stateProvinceRepository.Delete(state);
        }
        public void InsertStateProvince(Domain.Entities.StateProvince state)
        {
            if (state == null)
            {
                throw new ArgumentNullException("state");
            }

            _stateProvinceRepository.Insert(state);
        }