using FamilyTreeAPI.Entities; namespace FamilyTreeAPI.Interface; public interface IPersonPhoto { Task> SaveAsync(UploadCriteria criteria); Task> DownloadPersonPhoto(int id, string? filename); Task> DeletePersonPhoto(int id); Task>> LoadPersonPhoto(int personId); }