using back.Entities.DTOs.Request; using back.Entities; namespace back.Application.Contracts.Services { public interface IBaseService where T : class { Task> GetAll(); Task GetOne(int id); Task Add(A dto); Task Delete(int id); Task Update(U dto); } }