mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
20 lines
553 B
C#
20 lines
553 B
C#
using FSO.Common.Domain.Realestate;
|
|
using FSO.Common.Domain.Shards;
|
|
using Ninject.Modules;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FSO.Common.Domain
|
|
{
|
|
public class ClientDomainModule : NinjectModule
|
|
{
|
|
public override void Load()
|
|
{
|
|
Bind<IShardsDomain>().To<Shards.ClientShards>().InSingletonScope();
|
|
Bind<IRealestateDomain>().To<FSO.Common.Domain.Realestate.RealestateDomain>().InSingletonScope();
|
|
}
|
|
}
|
|
}
|