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