예제 #1
0
 public static AccountImage GetAccountImageByAccountId(int AccountId)
 {
     return(AccountLayer.GetAccountImageByAccountId(AccountId));
 }
예제 #2
0
 public static AccountStatus GetAccountStatusById(string AccountStatusId)
 {
     return(AccountLayer.GetAccountStatusById(AccountStatusId));
 }
예제 #3
0
 public static Account GetAccountById(int AccountId)
 {
     return(AccountLayer.GetAccountById(AccountId));
 }
예제 #4
0
 public static List <Account> GetAccountsWithAdverts()
 {
     return(AccountLayer.GetAccountsWithAdverts());
 }
예제 #5
0
 public static AccountType GetAccountTypeById(int AccountTypeId)
 {
     return(AccountLayer.GetAccountTypeById(AccountTypeId));
 }
예제 #6
0
 public static Account AddAccount(Account objAccount, string ConfirmationCode)
 {
     return(AccountLayer.AddAccount(objAccount, ConfirmationCode));
 }
예제 #7
0
 public static bool IsEmailExist(string EmailAddress)
 {
     return(AccountLayer.IsEmailExist(EmailAddress));
 }