示例#1
0
		///<summary></summary>
		public static long Insert(Sop sop){
			if(RemotingClient.RemotingRole==RemotingRole.ClientWeb){
				sop.SopNum=Meth.GetLong(MethodBase.GetCurrentMethod(),sop);
				return sop.SopNum;
			}
			return Crud.SopCrud.Insert(sop);
		}
示例#2
0
        ///<summary>Called after file is downloaded.  Throws exceptions.  It is assumed that this is called from a worker thread.  Progress delegate will be called every 100th iteration to inform thread of current progress. Quit flag can be set at any time in order to quit importing prematurely.</summary>
        public static void ImportSop(string tempFileName, ProgressArgs progress, ref bool quit)
        {
            if (tempFileName == null)
            {
                return;
            }
            HashSet <string> codeHash = new HashSet <string>(Sops.GetAllCodes());

            string[] lines = File.ReadAllLines(tempFileName);
            string[] arraySop;
            Sop      sop = new Sop();

            for (int i = 0; i < lines.Length; i++)       //each loop should read exactly one line of code. and each line of code should be a unique code
            {
                if (quit)
                {
                    return;
                }
                if (i % 100 == 0)
                {
                    progress(i + 1, lines.Length);
                }
                arraySop = lines[i].Split('\t');
                if (codeHash.Contains(arraySop[0]))                 //code already exists
                {
                    continue;
                }
                sop.SopCode     = arraySop[0];
                sop.Description = arraySop[1];
                Sops.Insert(sop);
            }
        }
示例#3
0
 ///<summary></summary>
 public static long Insert(Sop sop)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         sop.SopNum = Meth.GetLong(MethodBase.GetCurrentMethod(), sop);
         return(sop.SopNum);
     }
     return(Crud.SopCrud.Insert(sop));
 }
示例#4
0
 ///<summary></summary>
 public static void Update(Sop sop)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         Meth.GetVoid(MethodBase.GetCurrentMethod(), sop);
         return;
     }
     Crud.SopCrud.Update(sop);
 }
示例#5
0
        ///<summary>Called after file is downloaded.  Throws exceptions.  It is assumed that this is called from a worker thread.  Progress delegate will be called every 100th iteration to inform thread of current progress. Quit flag can be set at any time in order to quit importing prematurely.</summary>
        public static void ImportSop(string tempFileName, ProgressArgs progress, ref bool quit, ref int numCodesImported, ref int numcodesUpdated,
                                     bool updateExisting)
        {
            if (tempFileName == null)
            {
                return;
            }
            Dictionary <string, Sop> dictSops = Sops.GetDeepCopy().ToDictionary(x => x.SopCode, x => x);

            string[] lines = File.ReadAllLines(tempFileName);
            string[] arraySop;
            Sop      sop = new Sop();

            for (int i = 0; i < lines.Length; i++)       //each loop should read exactly one line of code. and each line of code should be a unique code
            {
                if (quit)
                {
                    return;
                }
                if (i % 100 == 0)
                {
                    progress(i + 1, lines.Length);
                }
                arraySop = lines[i].Split('\t');
                if (dictSops.ContainsKey(arraySop[0]))                 //code already exists
                {
                    sop = dictSops[arraySop[0]];
                    if (updateExisting && sop.Description != arraySop[1])
                    {
                        sop.Description = arraySop[1];
                        Sops.Update(sop);
                        numcodesUpdated++;
                    }
                    continue;
                }
                sop.SopCode     = arraySop[0];
                sop.Description = arraySop[1];
                Sops.Insert(sop);
                numCodesImported++;
            }
        }
示例#6
0
		///<summary>Called after file is downloaded.  Throws exceptions.  It is assumed that this is called from a worker thread.  Progress delegate will be called every 100th iteration to inform thread of current progress. Quit flag can be set at any time in order to quit importing prematurely.</summary>
		public static void ImportSop(string tempFileName,ProgressArgs progress,ref bool quit) {
			if(tempFileName==null) {
				return;
			}
			HashSet<string> codeHash=new HashSet<string>(Sops.GetAllCodes());
			string[] lines=File.ReadAllLines(tempFileName);
			string[] arraySop;
			Sop sop=new Sop();
			for(int i=0;i<lines.Length;i++) {//each loop should read exactly one line of code. and each line of code should be a unique code
				if(quit) {
					return;
				}
				if(i%100==0) {
					progress(i+1,lines.Length);
				}
				arraySop=lines[i].Split('\t');
				if(codeHash.Contains(arraySop[0])) {//code already exists
					continue;
				}
				sop.SopCode			=arraySop[0];
				sop.Description	=arraySop[1];
				Sops.Insert(sop);
			}
		}
示例#7
0
        ///<summary>Returns the description for the specified SopCode.  Returns an empty string if no code is found.</summary>
        public static string GetDescriptionFromCode(string sopCode)
        {
            Sop sop = GetFirstOrDefault(x => x.SopCode == sopCode);

            return(sop == null ? "" : sop.Description);
        }