Esempio n. 1
0
 public BL(IDAL dal, IBLProdukt blProdukt, IBLBestellung blBestellung, IBLUser blUser, IBLAuthentication blAuthentication)
 {
     _dal = dal;
     _blProdukt = blProdukt;
     _blBestellung = blBestellung;
     _blUser = blUser;
     _blAuthentication = blAuthentication;
 }
Esempio n. 2
0
 public UserService()
 {
     try
     {
         blUser = PluginHelper.Instance.GetPluginValue <IBLUser>();
         if (blUser == null)
         {
             blUser = new BLUser();
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public BLAuthentication(IDAL dal, IBLUser blUser)
 {
     _dal    = dal;
     _blUser = blUser;
 }