0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-29 18:21:08 +00:00
CleanArchitecture/CleanArchitecture.gRPC/Interfaces/ITenantsContext.cs
2023-08-28 19:41:49 +02:00

11 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using CleanArchitecture.Shared.Tenants;
namespace CleanArchitecture.gRPC.Interfaces;
public interface ITenantsContext
{
Task<IEnumerable<TenantViewModel>> GetTenantsByIds(IEnumerable<Guid> ids);
}