Skip to content

Instantly share code, notes, and snippets.

View SeanKilleen's full-sized avatar

Sean Killeen SeanKilleen

View GitHub Profile
public class RavenDBRepository<T, I> : IRepository<T, I> where T: IAggregateRoot<I> where I : struct, IIdentity<I>
{
private readonly IAsyncDocumentSession _session;
public RavenDBRepository(IAsyncDocumentSession session)
{
_session = session;
}
public async Task<T> GetAsync(I identity)
@hilios
hilios / README.md
Last active September 8, 2024 22:39
ngPageTitle - AngularJS page title service

$pageTitle

Allows to control the page title from the AngularJS route system, controllers or any other component through an injectable service.

ngPageTitle - Page title service (run tests)

To get started add the module to your app and configure the page title provider: