// ASHTON - SUBMIT 3D FILE
        public bool UploadAppFile(AppFile newFile)
        {
            bool            confirmation   = false;
            AppFileServices AppFileManager = new AppFileServices();

            confirmation = AppFileManager.UploadAppFile(newFile);

            return(confirmation);
        }
        // ASHTON - VIEW 3D FILE
        public AppFile DownloadAppFile(int id)
        {
            AppFile DownloadFile = new AppFile();

            AppFileServices AppFileManager = new AppFileServices();

            DownloadFile = AppFileManager.DownloadAppFile(id);
            return(DownloadFile);
        }