namespace GestorFacturas.API.Services.Interfaces; public interface IEncryptionService { string Encrypt(string plainText); string Decrypt(string cipherText); }