public PresentationEntityCollection(Payanar.SS.Net.Libraries.Common.IObserver observer, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IPresenter presenter, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IPresentationEntityFactory presentationEntityFactory, Payanar.SS.Net.Libraries.BusinessLayer.Interfaces.IBusinessObjectCollection businessObjectCollection, Payanar.SS.Net.Libraries.Common.IParent parent)
     : base(observer, presenter, presentationEntityFactory, businessObjectCollection, parent)
 {
 }
Example #2
0
 public PresentationEntity(Payanar.SS.Net.Libraries.Common.IObserver observer, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IPresenter presenter, Payanar.SS.Net.Libraries.BusinessLayer.Interfaces.IBusinessObject businessObject, Payanar.SS.Net.Libraries.Common.IParent parent)
     : base(observer, presenter, businessObject, parent)
 {
 }
Example #3
0
 public Presenter(Payanar.SS.Net.Libraries.Common.IObserver observer, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IView view, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IPresentationEntityFactory presentationEntityFactory, Payanar.SS.Net.Libraries.Common.IParent parent)
     : base(observer, view, presentationEntityFactory, parent)
 {
 }
Example #4
0
 public HeaderView(Payanar.SS.Net.Libraries.Common.IObserver observer, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IPresenterFactory presenterFactory)
     : base(observer, presenterFactory)
 {
     InitializeComponent();
 }
Example #5
0
 public TransientEntity(Payanar.SS.Net.Libraries.Common.IObserver observer, Payanar.SS.Net.Libraries.PresentationLayer.Interfaces.IPresenter presenter, Payanar.SS.Net.Libraries.BusinessLayer.Interfaces.IBusinessObjectFactory businessObjectFactory)
     : base(observer, presenter, businessObjectFactory)
 {
 }