This repository has been archived on 2023-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
gswi-server/gswi.Interface/Repositories/IUnitOfWork.cs

12 lines
263 B
C#
Raw Normal View History

2022-02-20 19:04:11 +01:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace gswi.Interface.Repositories {
public interface IUnitOfWork : IDisposable {
int SaveChanges();
Task<int> SaveChangesAsync();
}
}