private void DoSendToConstructionDepartment(object sender, RoutedEventArgs e)
        {
            int id;

            Int32.TryParse(idText.Text, out id);

            if (ConnectionController.GetInstance().HeaderResponses.Where(x => x.ResponseStatus.Equals("Declined") && x.Id.Equals(id)).FirstOrDefault() != null)
            {
                MessageBox.Show("You can only sent Approved File!");
            }
            else
            {
                ResponseController.DoSendToConstructionDepartment(id);
                MessageBox.Show("File Sent to Construction Department!");
            }

            CreativeHomePage creativeHomePage = new CreativeHomePage();

            this.NavigationService.Navigate(creativeHomePage);
        }