/// <summary>
        /// Налаштування форми вводу даних для редагування існуючого товару
        /// </summary>
        /// <param name="id">id існуючого товару</param>
        public void SetupProductsDetailForEdit(int id)
        {
            PrepareBindings();
            Dictionary <string, string> modelDictionary = BuildModelDictionary(facade.GetProductById(id));

            productsDetailUC.SetupControls(modelDictionary, bindingSourceSuppliersIdNameModel, bindingSourceCategoriesIdNameModel,
                                           bindingSourceGroupsIdNameModel, bindingSourceUnitsIdNameModel);
            EventHelper.RaiseEvent(this, ReadyToShowProductsDetailEventRaised, new EventArgs());
        }