blob: a7e51938ea087c33b315f75e2af9812163dfaa06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using CrupestApi.Commons.Crud.Migrations;
using CrupestApi.Commons.Secrets;
using Microsoft.Extensions.DependencyInjection.Extensions;
namespace CrupestApi.Commons.Crud;
public static class CrudServiceCollectionExtensions
{
public static IServiceCollection AddCrudCore(this IServiceCollection services)
{
services.TryAddSingleton<IDbConnectionFactory, SqliteConnectionFactory>();
services.TryAddSingleton<IColumnTypeProvider, ColumnTypeProvider>();
services.TryAddSingleton<ITableInfoFactory, TableInfoFactory>();
services.TryAddSingleton<IDatabaseMigrator, SqliteDatabaseMigrator>();
services.AddSecrets();
return services;
}
public static IServiceCollection AddCrud<TEntity, TCrudService>(this IServiceCollection services) where TEntity : class where TCrudService : CrudService<TEntity>
{
AddCrudCore(services);
services.TryAddScoped<CrudService<TEntity>, TCrudService>();
services.TryAddScoped<EntityJsonHelper<TEntity>>();
return services;
}
public static IServiceCollection AddCrud<TEntity>(this IServiceCollection services) where TEntity : class
{
return services.AddCrud<TEntity, CrudService<TEntity>>();
}
}
|