コード例 #1
0
        public void DeleteAppUsersModulesByID(Guid id)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                AppUsersModules appusermodule = (from c in dbContext.AppUsersModules
                                    where c.PK_AppUsersModules == id
                                    select c).FirstOrDefault();

                if (appusermodule != null)
                {
                    dbContext.Entry(appusermodule).State = EntityState.Deleted;
                    dbContext.SaveChanges();
                }
            }
        }
コード例 #2
0
        public void DeleteAgentByID(Guid id)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                MstrAgency agent = (from c in dbContext.MstrAgency
                                    where c.PK_MstrAgency == id
                                    select c).FirstOrDefault();

                if (agent != null)
                {
                    dbContext.Entry(agent).State = EntityState.Deleted;
                    dbContext.SaveChanges();
                }
            }
        }
コード例 #3
0
        public void DeleteBranchByID(Guid id)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                MstrBranches branch = (from c in dbContext.MstrBranches
                                    where c.PK_MstrBranches == id
                                    select c).FirstOrDefault();

                if (branch != null)
                {
                    dbContext.Entry(branch).State = EntityState.Deleted;
                    dbContext.SaveChanges();
                }
            }
        }
コード例 #4
0
        public void DeleteDealerByID(Guid id)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                MstrDealer dealer = (from c in dbContext.MstrDealer
                                       where c.PK_MstrDealer == id
                                       select c).FirstOrDefault();

                if (dealer != null)
                {
                    dbContext.Entry(dealer).State = EntityState.Deleted;
                    dbContext.SaveChanges();
                }
            }
        }
コード例 #5
0
        public MstrDealer SaveDealer(MstrDealer dealer)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingDealer = (from c in dbContext.MstrDealer
                                      where c.PK_MstrDealer == dealer.PK_MstrDealer
                                      select c).FirstOrDefault();

                if (existingDealer != null)
                {
                    existingDealer.Address = dealer.Address;
                    existingDealer.DealerName = dealer.DealerName;
                    existingDealer.FK_MscIncentiveClass = dealer.FK_MscIncentiveClass;
                    existingDealer.FK_MstrAgency = dealer.FK_MstrAgency;
                    existingDealer.IsActive = dealer.IsActive;
                    dbContext.Entry(existingDealer).State = EntityState.Modified;
                }
                else
                {
                    if (dealer.PK_MstrDealer == null)
                        dealer.PK_MstrDealer = Guid.NewGuid();

                    dbContext.Entry(dealer).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return dealer;
            }
        }
コード例 #6
0
        public AppUsersModules SaveAppUsersModules(AppUsersModules userModules)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingUserModule = (from c in dbContext.AppUsersModules
                                    where c.PK_AppUsersModules == userModules.PK_AppUsersModules
                                    select c).FirstOrDefault();

                if (existingUserModule != null)
                {
                    existingUserModule.FK_MstrModules = userModules.FK_MstrModules;
                    existingUserModule.FK_AppUsers = userModules.FK_AppUsers;
                    existingUserModule.AllowToAdd = userModules.AllowToAdd;
                    existingUserModule.AllowToDelete = userModules.AllowToDelete;
                    existingUserModule.AllowToEdit = userModules.AllowToEdit;
                    existingUserModule.AllowToPost = userModules.AllowToPost;
                    existingUserModule.AllowToVoid = userModules.AllowToVoid;
                    dbContext.Entry(existingUserModule).State = EntityState.Modified;
                }
                else
                {
                    if (userModules.PK_AppUsersModules == null)
                        userModules.PK_AppUsersModules = Guid.NewGuid();

                    dbContext.Entry(userModules).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return userModules;
            }
        }
コード例 #7
0
 public ICollection<TrxSellOutFromAgency> GetAllSellOutFromAgency()
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.TrxSellOutFromAgency
                 select c).ToList();
     }
 }
コード例 #8
0
 public ICollection<TrxRawDataFromLogistics> GetAllUploadedDataFromLogistics()
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.TrxRawDataFromLogistics
                 select c).ToList();
     }
 }
コード例 #9
0
        public MstrModules SaveModule(MstrModules module)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingmodule = (from c in dbContext.MstrModules
                                      where c.PK_MstrModules == module.PK_MstrModules
                                      select c).FirstOrDefault();

                if (existingmodule != null)
                {
                    existingmodule.Name = module.Name;
                    existingmodule.WithAdd = module.WithAdd;
                    existingmodule.WithEdit = module.WithEdit;
                    existingmodule.WithDelete = module.WithDelete;
                    existingmodule.WithPost = module.WithPost;
                    existingmodule.WithVoid = module.WithVoid;
                    existingmodule.IsVisible = module.IsVisible;
                    dbContext.Entry(existingmodule).State = EntityState.Modified;
                }
                else
                {
                    if (module.PK_MstrModules == null)
                        module.PK_MstrModules = Guid.NewGuid();

                    dbContext.Entry(module).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return module;
            }
        }
コード例 #10
0
        public MstrItems SaveItems(MstrItems items)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingItems = (from c in dbContext.MstrItems
                                   where c.PK_MstrItems == items.PK_MstrItems
                                   select c).FirstOrDefault();

                if (existingItems != null)
                {
                    existingItems.AutoPerUnitIncentive = items.AutoPerUnitIncentive;
                    existingItems.FK_MscItemCategory = items.FK_MscItemCategory;
                    existingItems.FK_MscSubClassification = items.FK_MscSubClassification;
                    existingItems.FK_MstrDealer = items.FK_MstrDealer;
                    existingItems.IncrePerUnitIncentive = items.IncrePerUnitIncentive;
                    existingItems.IsActive = items.IsActive;
                    existingItems.ItemCode = items.ItemCode;
                    existingItems.ItemDescription = items.ItemDescription;
                    existingItems.Model = items.Model;
                    existingItems.SerialNo = items.SerialNo;
                    existingItems.SRP = items.SRP;
                    existingItems.TargetPerUnitIncentive = items.TargetPerUnitIncentive;
                    existingItems.TargetQty = items.TargetQty;
                    dbContext.Entry(existingItems).State = EntityState.Modified;
                }
                else
                {
                    if (items.PK_MstrItems == null)
                        items.PK_MstrItems = Guid.NewGuid();

                    dbContext.Entry(items).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return items;
            }
        }
コード例 #11
0
 public TrxSellOutFromAgency GetSellOutFromAgencyByID(Guid id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.TrxSellOutFromAgency
                 where c.PK_TrxSellOutFromAgency == id
                 select c).FirstOrDefault();
     }
 }
コード例 #12
0
 public MstrModules GetModuleByID(Guid id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MstrModules
                 where c.PK_MstrModules == id
                 select c).FirstOrDefault();
     }
 }
コード例 #13
0
 public MscItemCategory GetItemCategoryByID(Int32 id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MscItemCategory
                 where c.PK_MscItemCategory == id
                 select c).FirstOrDefault();
     }
 }
コード例 #14
0
 public MscIncentiveClass GetIncentiveClassByID(Int32 id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MscIncentiveClass
                 where c.PK_MscIncentiveClass == id
                 select c).FirstOrDefault();
     }
 }
コード例 #15
0
 public MstrFPS GetFPSByID(Guid id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MstrFPS
                 where c.PK_MstrFPS == id
                 select c).FirstOrDefault();
     }
 }
コード例 #16
0
 public MstrDealer GetDealerByID(Guid id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MstrDealer
                 where c.PK_MstrDealer == id
                 select c).FirstOrDefault();
     }
 }
コード例 #17
0
 public AppUsersModules GetAppUsersModulesByID(Guid id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.AppUsersModules
                 where c.PK_AppUsersModules == id
                 select c).FirstOrDefault();
     }
 }
コード例 #18
0
        public MstrFPS SaveFPS(MstrFPS fps)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingFPS = (from c in dbContext.MstrFPS
                                      where c.PK_MstrFPS == fps.PK_MstrFPS
                                      select c).FirstOrDefault();

                if (existingFPS != null)
                {
                    existingFPS.FK_MstrAgency = fps.FK_MstrAgency;
                    existingFPS.FK_MstrBranches = fps.FK_MstrBranches;
                    existingFPS.FK_MstrDealer = fps.FK_MstrDealer;
                    existingFPS.FPSName = fps.FPSName;
                    existingFPS.FPSNumber = fps.FPSNumber;
                    existingFPS.IsActive = fps.IsActive;
                    existingFPS.StoreClassification = fps.StoreClassification;
                    dbContext.Entry(existingFPS).State = EntityState.Modified;
                }
                else
                {
                    if (fps.PK_MstrFPS == null)
                        fps.PK_MstrFPS = Guid.NewGuid();

                    dbContext.Entry(fps).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return fps;
            }
        }
コード例 #19
0
        public MscIncentiveClass SaveIncentiveClass(MscIncentiveClass incentiveclass)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingIncentiveClass = (from c in dbContext.MscIncentiveClass
                                      where c.PK_MscIncentiveClass == incentiveclass.PK_MscIncentiveClass
                                      select c).FirstOrDefault();

                if (existingIncentiveClass != null)
                {
                    existingIncentiveClass.IncentiveClass = incentiveclass.IncentiveClass;
                    dbContext.Entry(existingIncentiveClass).State = EntityState.Modified;
                }
                else
                {
                    dbContext.Entry(incentiveclass).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return incentiveclass;
            }
        }
コード例 #20
0
 public MscSubClassification GetSubClassificationByID(Int32 id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MscSubClassification
                 where c.PK_MscSubClassification == id
                 select c).FirstOrDefault();
     }
 }
コード例 #21
0
        public MscItemCategory SaveItemCategory(MscItemCategory category)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingItemCategory = (from c in dbContext.MscItemCategory
                                          where c.PK_MscItemCategory == category.PK_MscItemCategory
                                          select c).FirstOrDefault();

                if (existingItemCategory != null)
                {
                    existingItemCategory.ItemCategory = category.ItemCategory;
                    dbContext.Entry(existingItemCategory).State = EntityState.Modified;
                }
                else
                {
                    dbContext.Entry(category).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return category;
            }
        }
コード例 #22
0
 public TrxRawDataFromLogistics GetUploadedDataFromLogisticsByID(Guid id)
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.TrxRawDataFromLogistics
                 where c.PK_trxRawDataFromLogistics == id
                 select c).FirstOrDefault();
     }
 }
コード例 #23
0
        public MstrBranches SaveModule(MstrBranches branch)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingBranch = (from c in dbContext.MstrBranches
                                     where c.PK_MstrBranches == branch.PK_MstrBranches
                                     select c).FirstOrDefault();

                if (existingBranch != null)
                {
                    existingBranch.Address = branch.Address;
                    existingBranch.Area = branch.Area;
                    existingBranch.Branch = branch.Branch;
                    existingBranch.Classification = branch.Classification;
                    existingBranch.FK_MstrDealer = branch.FK_MstrDealer;
                    existingBranch.IsActive = branch.IsActive;
                    existingBranch.NoOfFPS = branch.NoOfFPS;
                    existingBranch.QtrMonth1 = branch.QtrMonth1;
                    existingBranch.QtrMonth2 = branch.QtrMonth2;
                    existingBranch.QtrMonth3 = branch.QtrMonth3;
                    dbContext.Entry(existingBranch).State = EntityState.Modified;
                }
                else
                {
                    if (branch.PK_MstrBranches == null)
                        branch.PK_MstrBranches = Guid.NewGuid();

                    dbContext.Entry(branch).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return branch;
            }
        }
コード例 #24
0
        public TrxRawDataFromLogistics SaveUploadedDataFromLogistics(TrxRawDataFromLogistics rawdatatosave)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingRecord = (from c in dbContext.TrxRawDataFromLogistics
                                              where c.PK_trxRawDataFromLogistics == rawdatatosave.PK_trxRawDataFromLogistics
                                              select c).FirstOrDefault();

                if (existingRecord != null)
                {
                    existingRecord.dealername = rawdatatosave.dealername;
                    existingRecord.serialno = rawdatatosave.serialno;
                    existingRecord.modelno = rawdatatosave.modelno;
                    existingRecord.dateuploaded = DateTime.Now;
                    dbContext.Entry(existingRecord).State = EntityState.Modified;
                }
                else
                {
                    dbContext.Entry(rawdatatosave).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return rawdatatosave;
            }
        }
コード例 #25
0
        public TrxSellOutFromAgency SaveSellOutFromAgency(TrxSellOutFromAgency selloutdatatosave)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingRecord = (from c in dbContext.TrxSellOutFromAgency
                                      where c.PK_TrxSellOutFromAgency == selloutdatatosave.PK_TrxSellOutFromAgency
                                      select c).FirstOrDefault();

                if (existingRecord != null)
                {
                    existingRecord.area = selloutdatatosave.area;
                    existingRecord.category1 = selloutdatatosave.category1;
                    existingRecord.dealer = selloutdatatosave.dealer;
                    existingRecord.FK_cancelledby = selloutdatatosave.FK_cancelledby;
                    existingRecord.FK_MstrBranches = selloutdatatosave.FK_MstrBranches;
                    existingRecord.FK_MstrFPS = selloutdatatosave.FK_MstrFPS;
                    existingRecord.FK_uploadedby = selloutdatatosave.FK_uploadedby;
                    existingRecord.modelno = selloutdatatosave.modelno;
                    existingRecord.modeofpayment = selloutdatatosave.modeofpayment;
                    existingRecord.month = selloutdatatosave.month;
                    existingRecord.monthday = selloutdatatosave.monthday;
                    existingRecord.offtakeqty = selloutdatatosave.offtakeqty;
                    existingRecord.orprice = selloutdatatosave.orprice;
                    existingRecord.periodcoveredfrom = selloutdatatosave.periodcoveredfrom;
                    existingRecord.periodcoveredto = selloutdatatosave.periodcoveredto;
                    existingRecord.pesoofftake_or = selloutdatatosave.pesoofftake_or;
                    existingRecord.pesoofftake_srp = selloutdatatosave.pesoofftake_srp;
                    existingRecord.product2 = selloutdatatosave.product2;
                    existingRecord.product3 = selloutdatatosave.product3;
                    existingRecord.product4 = selloutdatatosave.product4;
                    existingRecord.productcategory = selloutdatatosave.productcategory;
                    existingRecord.serialno = selloutdatatosave.serialno;
                    existingRecord.srpprice = selloutdatatosave.srpprice;
                    existingRecord.typeofpromotion = selloutdatatosave.typeofpromotion;
                    existingRecord.uploaddate = selloutdatatosave.uploaddate;
                    dbContext.Entry(existingRecord).State = EntityState.Modified;
                }
                else
                {
                    dbContext.Entry(selloutdatatosave).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return selloutdatatosave;
            }
        }
コード例 #26
0
 public ICollection<MscSubClassification> GetAllSubClassification()
 {
     using (IMsDBContext dbContext = new IMsDBContext())
     {
         return (from c in dbContext.MscSubClassification
                 select c).ToList();
     }
 }
コード例 #27
0
        public MscSubClassification SaveSubClassification(MscSubClassification subclass)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingSubclass = (from c in dbContext.MscSubClassification
                                            where c.PK_MscSubClassification == subclass.PK_MscSubClassification
                                            select c).FirstOrDefault();

                if (existingSubclass != null)
                {
                    existingSubclass.SubClassification = subclass.SubClassification;
                    dbContext.Entry(existingSubclass).State = EntityState.Modified;
                }
                else
                {
                    dbContext.Entry(subclass).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return subclass;
            }
        }
コード例 #28
0
        public MstrAgency SaveAgent(MstrAgency agent)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existingagent = (from c in dbContext.MstrAgency
                                    where c.PK_MstrAgency == agent.PK_MstrAgency
                                    select c).FirstOrDefault();

                if (existingagent != null)
                {
                    existingagent.IsActive = agent.IsActive;
                    existingagent.Address = agent.Address;
                    existingagent.Name = agent.Name;
                    dbContext.Entry(existingagent).State = EntityState.Modified;
                }
                else
                {
                    if (agent.PK_MstrAgency == null)
                        agent.PK_MstrAgency = Guid.NewGuid();

                    dbContext.Entry(agent).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return agent;
            }
        }
コード例 #29
0
        public void DeleteFPSByID(Guid id)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                MstrFPS fps = (from c in dbContext.MstrFPS
                                     where c.PK_MstrFPS == id
                                     select c).FirstOrDefault();

                if (fps != null)
                {
                    dbContext.Entry(fps).State = EntityState.Deleted;
                    dbContext.SaveChanges();
                }
            }
        }
コード例 #30
0
        public AppUsers SaveAppUser(AppUsers user)
        {
            using (IMsDBContext dbContext = new IMsDBContext())
            {
                var existinguser = (from c in dbContext.AppUsers
                                    where c.PK_appUsers == user.PK_appUsers
                                    select c).FirstOrDefault();

                if (existinguser != null)
                {
                    existinguser.IsActive = user.IsActive;
                    existinguser.IsAdmin = user.IsAdmin;
                    existinguser.UserCode = user.UserCode;
                    existinguser.UserName = user.UserName;
                    existinguser.UserPassword = user.UserPassword;
                    existinguser.ExpiryDate = user.ExpiryDate;
                    dbContext.Entry(existinguser).State = EntityState.Modified;
                }
                else
                {
                    if (user.PK_appUsers == null)
                        user.PK_appUsers = Guid.NewGuid();

                    dbContext.Entry(user).State = EntityState.Added;
                }

                dbContext.SaveChanges();
                return user;
            }
        }