using System; using System.Collections.Generic; using System.Text; namespace Emergence.services.Interface { public interface IService where T : class { public Task> GetAllAsync(); public Task GetByIdAsync(I id); public Task CreateAsync(T tenant); } }