using Rs_system.Models; namespace Rs_system.Services; public interface IEstadoArticuloService { Task> GetAllAsync(); Task GetByIdAsync(int id); Task CreateAsync(EstadoArticulo estado); Task UpdateAsync(EstadoArticulo estado); Task DeleteAsync(int id); Task ExistsAsync(string nombre, int? excludeId = null); }