Ejemplo n.º 1
0
        public async Task <IHttpActionResult> EditUser([FromBody] Office365UserEditViewModel model)
        {
            var office365EditUser = Office365ServiceConstants.QueueManageSubscriptionsAndLicences;

            await _messageBroker.GetSendEndpoint(office365EditUser)
            .Send <IManageSubscriptionsAndLicencesCommand>(model.ToManageSubscriptionsAndLicencesCommand());

            return(Ok());
        }