using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using TEAMModelOS.SDK.Module.AzureCosmosDB.Interfaces; using TEAMModelOS.SDK.Module.AzureTable.Interfaces; namespace TEAMModelOS.Service.Core.Interfaces { public interface IBaseService: IBusinessService, IAzureTableDBRepository { Task> FindListByDictHasAll(Dictionary dict) where T : TableEntity, new(); Task DeleteAll(Dictionary dict) where T : TableEntity, new(); } }