Exemple #1
0
        //public List<AccountType> accountsType;

        public SettingsAccount(string connectionString)
        {
            db           = new DAL.liteDbEntity(connectionString);
            servicesUser = new ServiceUser.ServicesUser(connectionString);

            //accountsType = new List<AccountType>()
            //{
            //    new AccountType(){ Id =1, Name="Loan"},
            //    new AccountType(){ Id =2, Name="Deposit"}
            //};
        }
 public ServicesUser(string connectionString)
 {
     db = new DAL.liteDbEntity(connectionString);
 }