Ejemplo n.º 1
0
        public async Task <bool> Join(User user, bool asGarant = false)
        {
            await MembersLazyLoad();

            UpdateLocalMember(user, asGarant);
            var requestModel = new ActionUserJoinModel {
                Id_User   = user.Id,
                Id_Action = Id,
                IsGarant  = asGarant,
            };

            return(await Gateway.JoinAsync(requestModel));
        }
Ejemplo n.º 2
0
 public Task <bool> JoinAsync(ActionUserJoinModel model)
 {
     return(SendRequestFor <bool>(API.METHOD.JOIN, model));
 }