using Api.Books.Core.Interface; using System; using System.Threading.Tasks; namespace Api.Books.Core.Interfaces { public interface IUnitOfWork : IDisposable { IBookRepository Books { get; } Task Save(); } }