예제 #1
0
        public async Task <IEnumerable <string> > RemoveAsync(string userId, IEnumerable <string> ids)
        {
            if (ids == null || !ids.Any())
            {
                return(Enumerable.Empty <string>());
            }

            return(await _orgRepo.RemoveAsync(userId, ids));
        }