/// <summary>
        /// 批量新增
        /// </summary>
        /// <param name="organizationElementRequestDtos"></param>
        /// <returns></returns>
        public async Task <bool> BatchCreateAsync(IList <OrganizationElementRequestDto> organizationElementRequestDtos)
        {
            var entities = organizationElementRequestDtos.MapToCreateEntities <OrganizationElementRequestDto, OrganizationElement>();
            await OrganizationElementValidatorsFilter.DoValidationAsync(_organizationElementRespository, entities, ValidatorTypeConstants.Create);

            await _organizationElementRespository.BatchInsertAsync(entities);

            return(true);
        }