Esempio n. 1
0
 public IFamilyLogic GetFamilyLogic()
 {
     if (_familyLogic == null)
     {
         _familyLogic = new FamilyLogic(_configuration);
     }
     return(_familyLogic);
 }
Esempio n. 2
0
 public IFamilyLogic GetFamilyLogic()
 {
     if (_familyLogic == null)
     {
         _familyLogic = new FamilyLogic(this.imisModules);
     }
     return(_familyLogic);
 }
Esempio n. 3
0
 public IFamilyLogic GetFamilyLogic()
 {
     if (_familyLogic == null)
     {
         _familyLogic = new FamilyLogic(_configuration, _hostingEnvironment);
     }
     return(_familyLogic);
 }
Esempio n. 4
0
 public IInsureeManagementModule SetFamilyLogic(IFamilyLogic familyLogic)
 {
     _familyLogic = familyLogic;
     return(this);
 }