IBaseService.cs 595 B

12345678910111213141516
  1. using Microsoft.WindowsAzure.Storage.Table;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TEAMModelOS.SDK.Module.AzureCosmosDB.Interfaces;
  7. using TEAMModelOS.SDK.Module.AzureTable.Interfaces;
  8. namespace TEAMModelOS.Service.Core.Interfaces
  9. {
  10. public interface IBaseService: IBusinessService, IAzureTableDBRepository
  11. {
  12. Task<List<T>> FindListByDictHasAll<T>(Dictionary<string, object> dict) where T : TableEntity, new();
  13. Task<int> DeleteAll<T>(Dictionary<string, object> dict) where T : TableEntity, new();
  14. }
  15. }