Beispiel #1
0
        public PersonalInfoDAL()
        {
            personalInfoModel = new PersonalInfoModel();
            _dataContext = new MDKDBMLDataContext();
            tPersonalInfoData = new TPersonalInfoData();
            personalInfoEntity = new PersonInfo();

            clients = new TClientInfo();
            clientModel = new ClientInfoModel();
        }
        public BusinessServices()
        {
            _serializer = new JavaScriptSerializer();

            personalInfoList = new List<PersonalInfoModel>();
            personalInfoBAL = new PersonalInfoBAL();

            tPersonalInfoData = new TPersonalInfoData();
            tBankData = new TBankData();

            lineDetailsBAL = new LineDetailsBAL();
            bankBAL = new BankBAL();

            tITInfoData = new TITInfoData();
            iTInfoBAL = new ITInfoBAL();

            tOtherInfoData = new TOtherInfoData();
            otherInfoBAL = new OtherInfoBAL();
             
            tClientInfoData = new TClientInfo();
            clientInfoBAL = new ClientInfoBAL();
 
        }
Beispiel #3
0
 public ClientInfoDAL()
 {
     _dataContext = new MDKDBMLDataContext();
     entity = new ClientInfo();
     tClientInfoData = new TClientInfo();
 }