private void LoadDropDownLists()
        {
            presenter.SetSources(Global.GetDefaultCurrency());

            ShipmentType.DataTextField  = "Name";
            ShipmentType.DataValueField = "Id";
            ShipmentType.DataBind();

            ItemCategory.DataTextField  = "Name";
            ItemCategory.DataValueField = "Id";
            ItemCategory.DataBind();
        }