Created
June 16, 2011 15:01
-
-
Save aidanmorgan/1029426 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace WhiskeyRecommender.Persistence | |
{ | |
/// <summary> | |
/// A simple factory interface that is used for creating implementations of the <see cref="IUnitOfWork"/> interface. | |
/// </summary> | |
public interface IUnitOfWorkFactory | |
{ | |
/// <summary> | |
/// Create a new <see cref="IUnitOfWork"/> with the provided name. | |
/// </summary> | |
IUnitOfWork Create(string Name); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment