public async Task <ServiceResponse> DeleteList([FromBody] List <string> listID) { try { ServiceResponse res = new ServiceResponse(); res.Data = await _baseBL.DeleteList(listID, curentType); return(res); } catch (Exception e) { return(_baseBL.Error(e)); } }