Пример #1
0
        public static List <ATTAccountType> GetAccountType(int?AccountType, string active, int defaultFlag)
        {
            List <ATTAccountType> AccountTypeList = new List <ATTAccountType>();

            try
            {
                foreach (DataRow row in DLLAccountType.GetAccountType(AccountType, active).Rows)
                {
                    ATTAccountType Reglst = new ATTAccountType(
                        int.Parse(row["ACCOUNT_TYPE_ID"].ToString()),
                        row["ACCOUNT_TYPE_NAME"].ToString(),
                        row["ACTIVE"].ToString());
                    AccountTypeList.Add(Reglst);
                }

                if (defaultFlag > 0)
                {
                    AccountTypeList.Insert(0, new ATTAccountType(0, "छान्नुहोस", ""));
                }
                return(AccountTypeList);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Пример #2
0
 public static bool SaveAccountType(ATTAccountType objAccountType)
 {
     try
     {
         return(DLLAccountType.SaveAccountType(objAccountType));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }