using Api.Books.Core.Interface;
using System;
using System.Threading.Tasks;
nnnn
namespace Api.Books.Core.Interfaces
{
public interface IUnitOfWork : IDisposable
{
IBookRepository Books { get; }
Task Save();
}
}
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();
}
}