Example #1
0
 public oMService(oMSystemParameter SysParameter, iDataContext oDC)
     : base(SysParameter, oDC)
 {
     if (SysParameter.GetType() != typeof(oMSystemParameter))
     {
         throw new ArgumentException("Wrong SysParameter Type. Must be oMSystemParameter!");
     }
     base.SysParameter = SysParameter;
     this.DAL          = new DAL.WbGenericDAL(oDC);
     ServiceTemplate   = new Core.TemplateMessages.Business.TemplatesForOtherService(oDC);
 }
Example #2
0
        public eWService(eWSystemParameter SysParameter, iApplicationContext oContext)
            : base(SysParameter, oContext)
        {
            if (SysParameter.GetType() != typeof(eWSystemParameter))
            {
                throw new ArgumentException("Wrong SysParameter Type. Must be eWSystemParameter!");
            }

            base.SysParameter = SysParameter;
            ServiceTemplate   = new Core.TemplateMessages.Business.TemplatesForOtherService(oContext);
            this.DAL          = new DAL.WbGenericDAL(oContext);
        }
Example #3
0
 public TemplateSelectorPresenter(iApplicationContext oContext, IViewTemplateSelector view)
     : base(oContext, view)
 {
     service             = new lm.Comol.Core.TemplateMessages.Business.TemplatesForOtherService(oContext);
     this.CurrentManager = new BaseModuleManager(oContext);
 }
Example #4
0
 public WbEditPresenter(iApplicationContext oContext, View.iViewWbEdit view)
     : base(oContext, view)
 {
     this.CurrentManager  = new BaseModuleManager(oContext);
     this.ServiceTemplate = new Core.TemplateMessages.Business.TemplatesForOtherService(oContext);
 }
 public TemplateAssociationPresenter(iApplicationContext oContext)
     : base(oContext)
 {
     service             = new lm.Comol.Core.TemplateMessages.Business.TemplatesForOtherService(oContext);
     this.CurrentManager = new BaseModuleManager(oContext);
 }