Пример #1
0
 public MainModel(IFactoryLogic factoryLogic)
 {
     logic = factoryLogic ?? throw new ArgumentNullException(nameof(factoryLogic));
     db    = Context.GetContext();
     if (db == null)
     {
         throw new ArgumentNullException(nameof(db));
     }
 }
Пример #2
0
        public KeyFeatureModel(IFactoryLogic factoryLogic)
        {
            this.factoryLogic = factoryLogic ?? throw new ArgumentNullException(nameof(factoryLogic));

            db = Context.GetContext();
            if (db == null)
            {
                throw new ArgumentNullException(nameof(db));
            }

            featLogic       = this.factoryLogic.CreateFeature(db);
            keyFeatureLogic = this.factoryLogic.CreateKeyFeature(db);
        }
Пример #3
0
        public FeatureModel(IFactoryLogic factoryLogic)
        {
            if (factoryLogic == null)
            {
                throw new ArgumentNullException(nameof(factoryLogic));
            }

            db = Context.GetContext();
            if (db == null)
            {
                throw new ArgumentNullException(nameof(db));
            }
            featLogic = factoryLogic.CreateFeature(db);
        }
Пример #4
0
        public HaspKeyModel(IFactoryLogic factoryLogic)
        {
            if (factoryLogic == null)
            {
                throw new ArgumentNullException(nameof(factoryLogic));
            }

            db = Context.GetContext(); if (db == null)
            {
                throw new ArgumentNullException(nameof(db));
            }

            keyLogic = factoryLogic.CreateHaspKey(db);
        }
Пример #5
0
        public ClientModel(IFactoryLogic factoryLogic)
        {
            if (factoryLogic == null)
            {
                throw new ArgumentNullException(nameof(factoryLogic));
            }

            db = Context.GetContext();
            if (db == null)
            {
                throw new ArgumentNullException(nameof(db));
            }

            clientLogic = factoryLogic.CreateClient(db);
        }
Пример #6
0
        public List <ModelViewMain> GetAll()
        {
            try
            {
                using (db = Context.GetContext())
                {
                    if (db == null)
                    {
                        throw new ArgumentNullException(nameof(db));
                    }

                    List <KeyFeatureClient> keyFeatureClients = logic.CreateKeyFeatureClient(db).GetAll();
                    List <KeyFeature>       keyFeatures       = logic.CreateKeyFeature(db).GetAll();
                    List <Client>           clients           = logic.CreateClient(db).GetAll();
                    List <Feature>          features          = logic.CreateFeature(db).GetAll();
                    List <HaspKey>          haspKeys          = logic.CreateHaspKey(db).GetByActive();;

                    var item = from keyFeatCl in keyFeatureClients
                               join keyFeat in keyFeatures
                               on keyFeatCl.IdKeyFeature equals keyFeat.Id
                               join cl in clients
                               on keyFeatCl.IdClient equals cl.Id
                               join feature in features
                               on keyFeat.IdFeature equals feature.Id
                               join key in haspKeys
                               on keyFeat.IdHaspKey equals key.Id
                               where keyFeat.EndDate >= date
                               select new ModelViewMain
                    {
                        Client = cl.Name + (string.IsNullOrEmpty(cl.Address)
                                                            ? string.Empty : " - " + cl.Address),
                        IdClient  = cl.Id,
                        EndDate   = keyFeat.EndDate,
                        Feature   = feature.Name,
                        NumberKey = key.InnerId.ToString() + " - \"" + key.Number + "\"",
                    };

                    return(item
                           .OrderBy(x => x.Client)
                           .ToList());
                }
            }
            catch
            {
                throw;
            }
        }