Ejemplo n.º 1
0
 public SubcscriptionIndVM()
 {
     subcatalog       = new SubscriptionCatalog();
     appcatalog       = new ApplicantCatalog();
     makeSubscription = new RelayCommand(MakeNewSubscription);
     List             = new ObservableCollection <Models.Subscription>();
 }
Ejemplo n.º 2
0
        public RenewVM()
        {
            RenewIndividualSubscription = new RelayCommand(RenewIndividual);

            RenewCorporateSubscription = new RelayCommand(RenewCorporate);
            clean        = new ObjectClean();
            subcatalog   = new SubscriptionCatalog();
            ListOfRenews = new ObservableCollection <Subscription>();
        }
Ejemplo n.º 3
0
 public SubscriptionCorpVM()
 {
     App2                 = new CorporApplicant();
     subcatalog           = new SubscriptionCatalog();
     appcatalog           = new ApplicantCatalog();
     makeSubscriptioncorp = new RelayCommand(MakeNewSubscription);
     clean                = new ObjectClean();
     List                 = new ObservableCollection <Subscription>();
     LoadDafaultData();
 }
Ejemplo n.º 4
0
        public SubcscriptionIndVM()
        {
            App1             = new IndApplicant();
            subcatalog       = new SubscriptionCatalog();
            appcatalog       = new ApplicantCatalog();
            makeSubscription = new RelayCommand(MakeNewSubscription);
            ListInd          = new ObservableCollection <Subscription>();
            clean            = new ObjectClean();

            // load default data which is avaliable in the file
            //LoadDafaultData();
        }