zoneofdevelopment code example
Example 1: zoneofdevelopment
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();
}
}
Example 2: zoneofdevelopment
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();
}
}