/// <summary> /// Save and create collected data out of the imported file /// </summary> /// <param name="SubCampaignId"></param> /// <param name="QuestionId"></param> public static void CreateImportListCollectedData(int ImportFileId, bool CustomerOwnedData, bool BvOwnedData, int CustomerId) { using (BrightPlatformEntities objDbModel = new BrightPlatformEntities(UserSession.EntityConnection)) { objDbModel.CommandTimeout = 0; objDbModel.FICreateImportFileCollectedData(ImportFileId, CustomerOwnedData, BvOwnedData, CustomerId); } }