-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCoreModule.cs
65 lines (59 loc) · 3.53 KB
/
CoreModule.cs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using Api.Core.Interfaces.UseCases.Client;
using Api.Core.Interfaces.UseCases.ClientConfig;
using Api.Core.Interfaces.UseCases.Group;
using Api.Core.Interfaces.UseCases.Invite;
using Api.Core.Interfaces.UseCases.Organisation;
using Api.Core.Interfaces.UseCases.OrganisationUser;
using Api.Core.UseCases.Client;
using Api.Core.UseCases.ClientConfig;
using Api.Core.UseCases.Group;
using Api.Core.UseCases.Invite;
using Api.Core.UseCases.Organisation;
using Api.Core.UseCases.OrganisationUser;
using Autofac;
namespace Api.Core
{
public class CoreModule : Module
{
protected override void Load(ContainerBuilder builder)
{
// Client
builder.RegisterType<CreateClientUseCase>().As<ICreateClientUseCase>().InstancePerLifetimeScope();
builder.RegisterType<DeleteClientUseCase>().As<IDeleteClientUseCase>().InstancePerLifetimeScope();
builder.RegisterType<GetClientUseCase>().As<IGetClientUseCase>().InstancePerLifetimeScope();
builder.RegisterType<GetClientsUseCase>().As<IGetClientsUseCase>().InstancePerLifetimeScope();
builder.RegisterType<UpdateClientUseCase>().As<IUpdateClientUseCase>().InstancePerLifetimeScope();
// Client Config
builder.RegisterType<GetClientConfigUseCase>().As<IGetClientConfigUseCase>().InstancePerLifetimeScope();
builder.RegisterType<UpdateClientConfigUseCase>().As<IUpdateClientConfigUseCase>()
.InstancePerLifetimeScope();
// Group
builder.RegisterType<CreateGroupUseCase>().As<ICreateGroupUseCase>().InstancePerLifetimeScope();
builder.RegisterType<DeleteGroupUseCase>().As<IDeleteGroupUseCase>().InstancePerLifetimeScope();
builder.RegisterType<GetGroupUseCase>().As<IGetGroupUseCase>().InstancePerLifetimeScope();
builder.RegisterType<GetGroupsUseCase>().As<IGetGroupsUseCase>().InstancePerLifetimeScope();
builder.RegisterType<UpdateGroupUseCase>().As<IUpdateGroupUseCase>().InstancePerLifetimeScope();
// Invite
builder.RegisterType<CreateInviteUseCase>().As<ICreateInviteUseCase>().InstancePerLifetimeScope();
builder.RegisterType<UseInviteUseCase>().As<IUseInviteUseCase>().InstancePerLifetimeScope();
// Organisation
builder.RegisterType<CreateOrganisationUseCase>().As<ICreateOrganisationUseCase>()
.InstancePerLifetimeScope();
builder.RegisterType<DeleteOrganisationUseCase>().As<IDeleteOrganisationUseCase>()
.InstancePerLifetimeScope();
builder.RegisterType<GetOrganisationUseCase>().As<IGetOrganisationUseCase>().InstancePerLifetimeScope();
builder.RegisterType<GetOrganisationsUseCase>().As<IGetOrganisationsUseCase>().InstancePerLifetimeScope();
builder.RegisterType<UpdateOrganisationUseCase>().As<IUpdateOrganisationUseCase>()
.InstancePerLifetimeScope();
// Organisation User
builder.RegisterType<DeleteOrganisationUserUseCase>().As<IDeleteOrganisationUserUseCase>()
.InstancePerLifetimeScope();
builder.RegisterType<GetOrganisationUserUseCase>().As<IGetOrganisationUserUseCase>()
.InstancePerLifetimeScope();
builder.RegisterType<GetOrganisationUsersUseCase>().As<IGetOrganisationUsersUseCase>()
.InstancePerLifetimeScope();
builder.RegisterType<UpdateOrganisationUserUseCase>().As<IUpdateOrganisationUserUseCase>()
.InstancePerLifetimeScope();
}
}
}