public Guid SaveQuoteSheetToDMS(QuoteSheet quoteSheet, byte[] reportBytes, Submission submission)
        {
	        var fileId = Guid.Empty.ToString();

			// TODO: Exception handling
	        using (var dmsService = new DMSService())
	        {
		        fileId = dmsService.FNUploadDocument(quoteSheet.Title + ".pdf", quoteSheet.Title, reportBytes,
		                                             quoteSheet.ObjectStore, quoteSheet.ObjectStore);

				dmsService.FNUpdateDocumentProperties(fileId, quoteSheet.ObjectStore, quoteSheet.ObjectStore,
		                                              this.SetFileNetProperties(quoteSheet, submission));
	        }

			return new Guid(fileId);
        }