using System.Collections.Generic; using skydiveLogs_api.Model; namespace skydiveLogs_api.Business.Interface { public interface IImageService { IEnumerable GetAllImages(); Image GetImageById(int id); void AddNewImage(Image Image); void UpdateImage(int id, Image Image); void DeleteImageById(int id); } }