Esempio n. 1
0
 public LineDetailsDAL()
 {
     _dataContext = new MDKDBMLDataContext();
     tLineDetails = new TLineDetails();
     personalInfoModel = new PersonalInfoModel();
   
 }
Esempio n. 2
0
        public BankDAL()
        {
            bankModel = new BankModel();
            bankEntity = new BankInfo();
            tbankData = new TBankData();
            tbankData.bankModel = new BankModel();

            _dataContext = new MDKDBMLDataContext();
        }
Esempio n. 3
0
        public PersonalInfoDAL()
        {
            personalInfoModel = new PersonalInfoModel();
            _dataContext = new MDKDBMLDataContext();
            tPersonalInfoData = new TPersonalInfoData();
            personalInfoEntity = new PersonInfo();

            clients = new TClientInfo();
            clientModel = new ClientInfoModel();
        }
Esempio n. 4
0
 public PersonalInfoDAL()
 {
     personalInfoModel = new PersonalInfoModel();
     _dataContext = new MDKDBMLDataContext();
     tPersonalInfoData = new TPersonalInfoData();
 }
Esempio n. 5
0
   public LoginDAL()
   {
       _dataContext = new MDKDBMLDataContext();
       tLoginData = new TLoginData();
 
   }
Esempio n. 6
0
 public OtherInfoDAL()
 {
     _dataContext = new MDKDBMLDataContext();
     entity = new OtherInfo();
     tOtherInfoData = new TOtherInfoData();
 }
Esempio n. 7
0
 public ClientInfoDAL()
 {
     _dataContext = new MDKDBMLDataContext();
     entity = new ClientInfo();
     tClientInfoData = new TClientInfo();
 }