using System; namespace Gestor.Infrastructure.Repository.Interface { public interface IAtualizacaoRepository { long FindLastUpdate(); void Save(long fileId); } }