12345678910111213141516 |
- 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<List<T>> FindListByDictHasAll<T>(Dictionary<string, object> dict) where T : TableEntity, new();
- Task<int> DeleteAll<T>(Dictionary<string, object> dict) where T : TableEntity, new();
- }
- }
|