From 498f5d339a21e4e18e44505bf5df9c9f43673b3d Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 31 Jul 2022 18:38:50 -0400 Subject: [PATCH] bridged the BLL and DAL together --- BLL/DataAccess.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 BLL/DataAccess.cs diff --git a/BLL/DataAccess.cs b/BLL/DataAccess.cs new file mode 100644 index 0000000..46a2f7c --- /dev/null +++ b/BLL/DataAccess.cs @@ -0,0 +1,14 @@ +public class DataAccess +{ + private IDataService _dataService; + + public DataAccess(IDataService dataService) + { + _dataService = dataService; + } + + public void WriteData(SortedList dictResults) + { + _dataService.WriteAll(dictResults); + } +}