// 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 List <AppFile> GetAppFiles()
        {
            List <AppFile>  appfiles       = new List <AppFile>();
            AppFileServices AppFileManager = new AppFileServices();

            appfiles = AppFileManager.GetUploadedFiles();

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

            AppFileServices AppFileManager = new AppFileServices();

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