namespace WyvernInventory.Core.Interfaces.Services; public interface IDataObjectService { public Task> GetAsync(List? filter = null); public Task<(int created, int updated)> UpsertAsync(List items); public Task DeleteAsync(List items); }