This commit is contained in:
2026-02-01 14:28:17 -06:00
parent 700af7ea60
commit 1784131456
109 changed files with 19894 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using Rs_system.Models;
namespace Rs_system.Services;
public interface IUbicacionService
{
Task<IEnumerable<Ubicacion>> GetAllAsync();
Task<Ubicacion?> GetByIdAsync(int id);
Task<bool> CreateAsync(Ubicacion ubicacion);
Task<bool> UpdateAsync(Ubicacion ubicacion);
Task<bool> DeleteAsync(int id);
Task<bool> ExistsAsync(string nombre, int? excludeId = null);
}