Ejemplo n.º 1
0
 public int UpdateAccount(WebApplication.Service.Account Account)
 {
     return(base.Channel.UpdateAccount(Account));
 }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task <int> UpdateAccountAsync(WebApplication.Service.Account Account)
 {
     return(base.Channel.UpdateAccountAsync(Account));
 }
Ejemplo n.º 3
0
 public void RemoveAccount(WebApplication.Service.Account Account)
 {
     base.Channel.RemoveAccount(Account);
 }
Ejemplo n.º 4
0
 public System.Threading.Tasks.Task <bool> LoginAsync(WebApplication.Service.Account acc, string password)
 {
     return(base.Channel.LoginAsync(acc, password));
 }
Ejemplo n.º 5
0
 public bool Login(WebApplication.Service.Account acc, string password)
 {
     return(base.Channel.Login(acc, password));
 }
Ejemplo n.º 6
0
 public System.Threading.Tasks.Task <WebApplication.Service.Account> HashAndSaltPasswordAsync(WebApplication.Service.Account acc)
 {
     return(base.Channel.HashAndSaltPasswordAsync(acc));
 }
Ejemplo n.º 7
0
 public WebApplication.Service.Account HashAndSaltPassword(WebApplication.Service.Account acc)
 {
     return(base.Channel.HashAndSaltPassword(acc));
 }