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