public async Task <List <UserInvitationCoreDto> > GetInvitedUsers() { var srvObj = HttpServiceFactory.CreateService <ISubscriptionService>(); var result = await srvObj.GetInvitedUsersAsync(); return(result); }
public async Task InviteUserAsync(InviteUserDto userInfo) { var srvObj = HttpServiceFactory.CreateService <ISubscriptionService>(); await srvObj.InviteUserAsync(userInfo); }