using BMA.EHR.Domain.Common; namespace BMA.EHR.Application.Common.Interfaces { public interface IGenericRepository where T : class { Task GetByIdAsync(S id); Task> GetAllAsync(); } }