Until now by Business Layer was instantiating one instance of my needed DAL objects:
public class BarcodeBLL : IBarcodeBLL
{
private BarcodeConfig _MyConfig;
private readonly IJDE8Dal _JDE8dal;
private readonly IBarcodeDal _barcodeDal;
public BarcodeBLL(BarcodeConfig MyConfig, ERPConfig erpConfig, BarcodeDALConfig barcodeDalConfig)
{
_MyConfig = MyConfig;
_JDE8dal = new JDE8Dal(erpConfig);
_barcodeDal = new BarcodeDAL(barcodeDalConfig);
}
...
...
}
A new set of front end applications need to access data on 4 different servers (SAME Data Access Layer implementation with 4 different connectionstrings).
One way is to let Ui instantiate 4 BarcodeBLL objects and do the job which i dont want in any case , because i would transfer business logic to UI.
So i have to find a proper way of instantiating from 1 to 4 DAL instances according to the UI application.
One thought is to pass a List<ERPConfig>
and/or a List<BarcodeDALConfig>
and let somewhow the contructor (???) decide what to do..
I started doing it like this:
public partial class BusinessLayer
{
private readonly Dictionary<string,IJDE8Dal> _JDE8dals;
public BusinessLayer(Dictionary<string,JDEDalConfig> jdeConfigs)
{
foreach (var j in jdeConfigs)
{
_JDE8dals.Add(j.Key,new JDE8Dal(j.Value));
}
}
}
This is what i am looking for..
Additional Info for clarity:
My goal as i see it now is for ONE method in BLL to be able to get from 1 to 4 DAL objects and execute methods in each of them.
Possible scenarions:
UI asks from BLL method GetItemList data from 2 countries.
Bll must unserstand somehow to create 2 DAL objects withg the correct connectionstring and do its job.
So i am consolidating operations for all my servers in the BLL and letting DAL to be alone.
Enum
, and modify your constructor to take a variable of theEnum
?enum
.from Business Layer
or