예제 #1
0
        public void ImageNeeded(string listingNumber)
        {
            FlexMLSController controller = new FlexMLSController();
            FlexMLSInfo       item       = new FlexMLSInfo();

            item.ListingNumber = listingNumber;

            controller.FlexMLS_ImagesNeeded_Insert(item);
        }
예제 #2
0
        public void ImageNeeded(string listingNumber)
        {
            try
            {
                FlexMLSController controller = new FlexMLSController();
                FlexMLSInfo       item       = new FlexMLSInfo();

                item.ListingNumber = listingNumber.ToString();

                controller.FlexMLS_ImagesNeeded_Insert(item);
            }
            catch (Exception ex)
            {
                Exceptions.ProcessModuleLoadException(this, ex);
            }
        }