コード例 #1
0
 public CampaighnOperations(IEntityDb <Campaighn> campaighnContext,
                            IEntityDb <CampaighnRace> campaighnRaceContext)
 {
     _campaighnContext     = campaighnContext;
     _campaighnRaceContext = campaighnRaceContext;
     _campaighnRaceContext.SetSession(_campaighnContext.GetSession());
 }
コード例 #2
0
        public AttribureOperations(IEntityDb <DictionaryAttributeType> dictionaryAttrTypeContext,
                                   IEntityDb <DictionaryAttribute> dictionaryAttrContext)
        {
            _dictionaryAttrTypeContext = dictionaryAttrTypeContext;
            _dictionaryAttrContext     = dictionaryAttrContext;

            _dictionaryAttrContext.SetSession(_dictionaryAttrTypeContext.GetSession());
        }
コード例 #3
0
ファイル: DictionaryOperations.cs プロジェクト: DrFen/dnd
        public DictionaryOperations(IEntityDb <Race> raceContext,
                                    IEntityDb <Subrace> subraceContext,
                                    IEntityDb <ItemType> itemTypeContext,
                                    IEntityDb <RaceAttribute> raceAttributeContext)
        {
            _raceContext          = raceContext;
            _subraceContext       = subraceContext;
            _itemTypeContext      = itemTypeContext;
            _raceAttributeContext = raceAttributeContext;

            _subraceContext.SetSession(_raceContext.GetSession());
            _itemTypeContext.SetSession(_raceContext.GetSession());
            _raceAttributeContext.SetSession(_raceContext.GetSession());
        }