예제 #1
0
 public static DataSet GetACC_UserTypeByUserTypeID(int UserTypeID,bool isdataset)
 {
     DataSet aCC_AccountingUser = new DataSet();
     SqlACC_AccountingUserProvider sqlACC_AccountingUserProvider = new SqlACC_AccountingUserProvider();
     aCC_AccountingUser = sqlACC_AccountingUserProvider.GetACC_AccountingUserByUserTypeID(UserTypeID,isdataset);
     return aCC_AccountingUser;
 }
예제 #2
0
 public static ACC_AccountingUser GetACC_UserTypeByUserTypeID(int UserTypeID)
 {
     ACC_AccountingUser aCC_AccountingUser = new ACC_AccountingUser();
     SqlACC_AccountingUserProvider sqlACC_AccountingUserProvider = new SqlACC_AccountingUserProvider();
     aCC_AccountingUser = sqlACC_AccountingUserProvider.GetACC_AccountingUserByUserTypeID(UserTypeID);
     return aCC_AccountingUser;
 }