Skip to content

Instantly share code, notes, and snippets.

@adlerpagliarini
Created January 19, 2019 02:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adlerpagliarini/7eb574ec900546731bb7173ab660a48e to your computer and use it in GitHub Desktop.
Save adlerpagliarini/7eb574ec900546731bb7173ab660a48e to your computer and use it in GitHub Desktop.
public abstract class OrmTypes : IOrmTypes
{
internal abstract IServiceCollection AddOrm(IServiceCollection services, IConfiguration configuration = null);
public IServiceCollection ResolveOrm(IServiceCollection services, IConfiguration configuration = null)
{
return AddOrm(services, configuration);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment