public bool Create(dto.Account user, string password)
 {
     return(base.Channel.Create(user, password));
 }
 public System.Threading.Tasks.Task <bool> CreateAsync(dto.Account user, string password)
 {
     return(base.Channel.CreateAsync(user, password));
 }
Exemple #3
0
 public Account(dto.Account baseAccount)
     : base(baseAccount)
 {
 }