Khozeev_ФАБРИКАDataSet.Designer.cs 592 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан программой.
  4. // Исполняемая версия:4.0.30319.42000
  5. //
  6. // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
  7. // повторной генерации кода.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. #pragma warning disable 1591
  11. namespace WindowsFormsApp1 {
  12. /// <summary>
  13. ///Represents a strongly typed in-memory cache of data.
  14. ///</summary>
  15. [global::System.Serializable()]
  16. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  17. [global::System.ComponentModel.ToolboxItem(true)]
  18. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
  19. [global::System.Xml.Serialization.XmlRootAttribute("Khozeev_ФАБРИКАDataSet")]
  20. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
  21. public partial class Khozeev_ФАБРИКАDataSet : global::System.Data.DataSet {
  22. private МоделиDataTable tableМодели;
  23. private ПоступленияDataTable tableПоступления;
  24. private ТоварDataTable tableТовар;
  25. private _Запрос_Модели___поступленияDataTable _tableЗапрос_Модели___поступления;
  26. private _Запрос_Модель___ТоварDataTable _tableЗапрос_Модель___Товар;
  27. private Фильтр_АддидасDataTable tableФильтр_Аддидас;
  28. private Фильтр_диорDataTable tableФильтр_диор;
  29. private _Фильтр_кол_ва_больше_15DataTable _tableФильтр_кол_ва_больше_15;
  30. private _Фильтр_кол_ва_меньше_15DataTable _tableФильтр_кол_ва_меньше_15;
  31. private фильтр_найкDataTable tableфильтр_найк;
  32. private фильтр_прадаDataTable tableфильтр_прада;
  33. private Фильтр_цены_больше_20_кDataTable tableФильтр_цены_больше_20_к;
  34. private Фильтр_цены_меньше_20_кDataTable tableФильтр_цены_меньше_20_к;
  35. private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  36. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  37. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  38. public Khozeev_ФАБРИКАDataSet() {
  39. this.BeginInit();
  40. this.InitClass();
  41. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  42. base.Tables.CollectionChanged += schemaChangedHandler;
  43. base.Relations.CollectionChanged += schemaChangedHandler;
  44. this.EndInit();
  45. }
  46. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  47. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  48. protected Khozeev_ФАБРИКАDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  49. base(info, context, false) {
  50. if ((this.IsBinarySerialized(info, context) == true)) {
  51. this.InitVars(false);
  52. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  53. this.Tables.CollectionChanged += schemaChangedHandler1;
  54. this.Relations.CollectionChanged += schemaChangedHandler1;
  55. return;
  56. }
  57. string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
  58. if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  59. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  60. ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  61. if ((ds.Tables["Модели"] != null)) {
  62. base.Tables.Add(new МоделиDataTable(ds.Tables["Модели"]));
  63. }
  64. if ((ds.Tables["Поступления"] != null)) {
  65. base.Tables.Add(new ПоступленияDataTable(ds.Tables["Поступления"]));
  66. }
  67. if ((ds.Tables["Товар"] != null)) {
  68. base.Tables.Add(new ТоварDataTable(ds.Tables["Товар"]));
  69. }
  70. if ((ds.Tables["Запрос Модели + поступления"] != null)) {
  71. base.Tables.Add(new _Запрос_Модели___поступленияDataTable(ds.Tables["Запрос Модели + поступления"]));
  72. }
  73. if ((ds.Tables["Запрос Модель + Товар"] != null)) {
  74. base.Tables.Add(new _Запрос_Модель___ТоварDataTable(ds.Tables["Запрос Модель + Товар"]));
  75. }
  76. if ((ds.Tables["Фильтр Аддидас"] != null)) {
  77. base.Tables.Add(new Фильтр_АддидасDataTable(ds.Tables["Фильтр Аддидас"]));
  78. }
  79. if ((ds.Tables["Фильтр диор"] != null)) {
  80. base.Tables.Add(new Фильтр_диорDataTable(ds.Tables["Фильтр диор"]));
  81. }
  82. if ((ds.Tables["Фильтр кол-ва больше 15"] != null)) {
  83. base.Tables.Add(new _Фильтр_кол_ва_больше_15DataTable(ds.Tables["Фильтр кол-ва больше 15"]));
  84. }
  85. if ((ds.Tables["Фильтр кол-ва меньше 15"] != null)) {
  86. base.Tables.Add(new _Фильтр_кол_ва_меньше_15DataTable(ds.Tables["Фильтр кол-ва меньше 15"]));
  87. }
  88. if ((ds.Tables["фильтр найк"] != null)) {
  89. base.Tables.Add(new фильтр_найкDataTable(ds.Tables["фильтр найк"]));
  90. }
  91. if ((ds.Tables["фильтр прада"] != null)) {
  92. base.Tables.Add(new фильтр_прадаDataTable(ds.Tables["фильтр прада"]));
  93. }
  94. if ((ds.Tables["Фильтр цены больше 20 к"] != null)) {
  95. base.Tables.Add(new Фильтр_цены_больше_20_кDataTable(ds.Tables["Фильтр цены больше 20 к"]));
  96. }
  97. if ((ds.Tables["Фильтр цены меньше 20 к"] != null)) {
  98. base.Tables.Add(new Фильтр_цены_меньше_20_кDataTable(ds.Tables["Фильтр цены меньше 20 к"]));
  99. }
  100. this.DataSetName = ds.DataSetName;
  101. this.Prefix = ds.Prefix;
  102. this.Namespace = ds.Namespace;
  103. this.Locale = ds.Locale;
  104. this.CaseSensitive = ds.CaseSensitive;
  105. this.EnforceConstraints = ds.EnforceConstraints;
  106. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  107. this.InitVars();
  108. }
  109. else {
  110. this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  111. }
  112. this.GetSerializationData(info, context);
  113. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  114. base.Tables.CollectionChanged += schemaChangedHandler;
  115. this.Relations.CollectionChanged += schemaChangedHandler;
  116. }
  117. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  118. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  119. [global::System.ComponentModel.Browsable(false)]
  120. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  121. public МоделиDataTable Модели {
  122. get {
  123. return this.tableМодели;
  124. }
  125. }
  126. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  127. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  128. [global::System.ComponentModel.Browsable(false)]
  129. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  130. public ПоступленияDataTable Поступления {
  131. get {
  132. return this.tableПоступления;
  133. }
  134. }
  135. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  136. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  137. [global::System.ComponentModel.Browsable(false)]
  138. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  139. public ТоварDataTable Товар {
  140. get {
  141. return this.tableТовар;
  142. }
  143. }
  144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  145. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  146. [global::System.ComponentModel.Browsable(false)]
  147. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  148. public _Запрос_Модели___поступленияDataTable _Запрос_Модели___поступления {
  149. get {
  150. return this._tableЗапрос_Модели___поступления;
  151. }
  152. }
  153. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  154. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  155. [global::System.ComponentModel.Browsable(false)]
  156. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  157. public _Запрос_Модель___ТоварDataTable _Запрос_Модель___Товар {
  158. get {
  159. return this._tableЗапрос_Модель___Товар;
  160. }
  161. }
  162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  164. [global::System.ComponentModel.Browsable(false)]
  165. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  166. public Фильтр_АддидасDataTable Фильтр_Аддидас {
  167. get {
  168. return this.tableФильтр_Аддидас;
  169. }
  170. }
  171. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  172. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  173. [global::System.ComponentModel.Browsable(false)]
  174. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  175. public Фильтр_диорDataTable Фильтр_диор {
  176. get {
  177. return this.tableФильтр_диор;
  178. }
  179. }
  180. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  181. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  182. [global::System.ComponentModel.Browsable(false)]
  183. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  184. public _Фильтр_кол_ва_больше_15DataTable _Фильтр_кол_ва_больше_15 {
  185. get {
  186. return this._tableФильтр_кол_ва_больше_15;
  187. }
  188. }
  189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  190. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  191. [global::System.ComponentModel.Browsable(false)]
  192. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  193. public _Фильтр_кол_ва_меньше_15DataTable _Фильтр_кол_ва_меньше_15 {
  194. get {
  195. return this._tableФильтр_кол_ва_меньше_15;
  196. }
  197. }
  198. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  199. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  200. [global::System.ComponentModel.Browsable(false)]
  201. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  202. public фильтр_найкDataTable фильтр_найк {
  203. get {
  204. return this.tableфильтр_найк;
  205. }
  206. }
  207. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  208. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  209. [global::System.ComponentModel.Browsable(false)]
  210. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  211. public фильтр_прадаDataTable фильтр_прада {
  212. get {
  213. return this.tableфильтр_прада;
  214. }
  215. }
  216. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  217. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  218. [global::System.ComponentModel.Browsable(false)]
  219. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  220. public Фильтр_цены_больше_20_кDataTable Фильтр_цены_больше_20_к {
  221. get {
  222. return this.tableФильтр_цены_больше_20_к;
  223. }
  224. }
  225. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  226. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  227. [global::System.ComponentModel.Browsable(false)]
  228. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  229. public Фильтр_цены_меньше_20_кDataTable Фильтр_цены_меньше_20_к {
  230. get {
  231. return this.tableФильтр_цены_меньше_20_к;
  232. }
  233. }
  234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  236. [global::System.ComponentModel.BrowsableAttribute(true)]
  237. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
  238. public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
  239. get {
  240. return this._schemaSerializationMode;
  241. }
  242. set {
  243. this._schemaSerializationMode = value;
  244. }
  245. }
  246. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  247. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  248. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  249. public new global::System.Data.DataTableCollection Tables {
  250. get {
  251. return base.Tables;
  252. }
  253. }
  254. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  255. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  256. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  257. public new global::System.Data.DataRelationCollection Relations {
  258. get {
  259. return base.Relations;
  260. }
  261. }
  262. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  263. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  264. protected override void InitializeDerivedDataSet() {
  265. this.BeginInit();
  266. this.InitClass();
  267. this.EndInit();
  268. }
  269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  271. public override global::System.Data.DataSet Clone() {
  272. Khozeev_ФАБРИКАDataSet cln = ((Khozeev_ФАБРИКАDataSet)(base.Clone()));
  273. cln.InitVars();
  274. cln.SchemaSerializationMode = this.SchemaSerializationMode;
  275. return cln;
  276. }
  277. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  278. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  279. protected override bool ShouldSerializeTables() {
  280. return false;
  281. }
  282. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  283. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  284. protected override bool ShouldSerializeRelations() {
  285. return false;
  286. }
  287. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  288. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  289. protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
  290. if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  291. this.Reset();
  292. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  293. ds.ReadXml(reader);
  294. if ((ds.Tables["Модели"] != null)) {
  295. base.Tables.Add(new МоделиDataTable(ds.Tables["Модели"]));
  296. }
  297. if ((ds.Tables["Поступления"] != null)) {
  298. base.Tables.Add(new ПоступленияDataTable(ds.Tables["Поступления"]));
  299. }
  300. if ((ds.Tables["Товар"] != null)) {
  301. base.Tables.Add(new ТоварDataTable(ds.Tables["Товар"]));
  302. }
  303. if ((ds.Tables["Запрос Модели + поступления"] != null)) {
  304. base.Tables.Add(new _Запрос_Модели___поступленияDataTable(ds.Tables["Запрос Модели + поступления"]));
  305. }
  306. if ((ds.Tables["Запрос Модель + Товар"] != null)) {
  307. base.Tables.Add(new _Запрос_Модель___ТоварDataTable(ds.Tables["Запрос Модель + Товар"]));
  308. }
  309. if ((ds.Tables["Фильтр Аддидас"] != null)) {
  310. base.Tables.Add(new Фильтр_АддидасDataTable(ds.Tables["Фильтр Аддидас"]));
  311. }
  312. if ((ds.Tables["Фильтр диор"] != null)) {
  313. base.Tables.Add(new Фильтр_диорDataTable(ds.Tables["Фильтр диор"]));
  314. }
  315. if ((ds.Tables["Фильтр кол-ва больше 15"] != null)) {
  316. base.Tables.Add(new _Фильтр_кол_ва_больше_15DataTable(ds.Tables["Фильтр кол-ва больше 15"]));
  317. }
  318. if ((ds.Tables["Фильтр кол-ва меньше 15"] != null)) {
  319. base.Tables.Add(new _Фильтр_кол_ва_меньше_15DataTable(ds.Tables["Фильтр кол-ва меньше 15"]));
  320. }
  321. if ((ds.Tables["фильтр найк"] != null)) {
  322. base.Tables.Add(new фильтр_найкDataTable(ds.Tables["фильтр найк"]));
  323. }
  324. if ((ds.Tables["фильтр прада"] != null)) {
  325. base.Tables.Add(new фильтр_прадаDataTable(ds.Tables["фильтр прада"]));
  326. }
  327. if ((ds.Tables["Фильтр цены больше 20 к"] != null)) {
  328. base.Tables.Add(new Фильтр_цены_больше_20_кDataTable(ds.Tables["Фильтр цены больше 20 к"]));
  329. }
  330. if ((ds.Tables["Фильтр цены меньше 20 к"] != null)) {
  331. base.Tables.Add(new Фильтр_цены_меньше_20_кDataTable(ds.Tables["Фильтр цены меньше 20 к"]));
  332. }
  333. this.DataSetName = ds.DataSetName;
  334. this.Prefix = ds.Prefix;
  335. this.Namespace = ds.Namespace;
  336. this.Locale = ds.Locale;
  337. this.CaseSensitive = ds.CaseSensitive;
  338. this.EnforceConstraints = ds.EnforceConstraints;
  339. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  340. this.InitVars();
  341. }
  342. else {
  343. this.ReadXml(reader);
  344. this.InitVars();
  345. }
  346. }
  347. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  348. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  349. protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
  350. global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
  351. this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
  352. stream.Position = 0;
  353. return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
  354. }
  355. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  356. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  357. internal void InitVars() {
  358. this.InitVars(true);
  359. }
  360. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  361. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  362. internal void InitVars(bool initTable) {
  363. this.tableМодели = ((МоделиDataTable)(base.Tables["Модели"]));
  364. if ((initTable == true)) {
  365. if ((this.tableМодели != null)) {
  366. this.tableМодели.InitVars();
  367. }
  368. }
  369. this.tableПоступления = ((ПоступленияDataTable)(base.Tables["Поступления"]));
  370. if ((initTable == true)) {
  371. if ((this.tableПоступления != null)) {
  372. this.tableПоступления.InitVars();
  373. }
  374. }
  375. this.tableТовар = ((ТоварDataTable)(base.Tables["Товар"]));
  376. if ((initTable == true)) {
  377. if ((this.tableТовар != null)) {
  378. this.tableТовар.InitVars();
  379. }
  380. }
  381. this._tableЗапрос_Модели___поступления = ((_Запрос_Модели___поступленияDataTable)(base.Tables["Запрос Модели + поступления"]));
  382. if ((initTable == true)) {
  383. if ((this._tableЗапрос_Модели___поступления != null)) {
  384. this._tableЗапрос_Модели___поступления.InitVars();
  385. }
  386. }
  387. this._tableЗапрос_Модель___Товар = ((_Запрос_Модель___ТоварDataTable)(base.Tables["Запрос Модель + Товар"]));
  388. if ((initTable == true)) {
  389. if ((this._tableЗапрос_Модель___Товар != null)) {
  390. this._tableЗапрос_Модель___Товар.InitVars();
  391. }
  392. }
  393. this.tableФильтр_Аддидас = ((Фильтр_АддидасDataTable)(base.Tables["Фильтр Аддидас"]));
  394. if ((initTable == true)) {
  395. if ((this.tableФильтр_Аддидас != null)) {
  396. this.tableФильтр_Аддидас.InitVars();
  397. }
  398. }
  399. this.tableФильтр_диор = ((Фильтр_диорDataTable)(base.Tables["Фильтр диор"]));
  400. if ((initTable == true)) {
  401. if ((this.tableФильтр_диор != null)) {
  402. this.tableФильтр_диор.InitVars();
  403. }
  404. }
  405. this._tableФильтр_кол_ва_больше_15 = ((_Фильтр_кол_ва_больше_15DataTable)(base.Tables["Фильтр кол-ва больше 15"]));
  406. if ((initTable == true)) {
  407. if ((this._tableФильтр_кол_ва_больше_15 != null)) {
  408. this._tableФильтр_кол_ва_больше_15.InitVars();
  409. }
  410. }
  411. this._tableФильтр_кол_ва_меньше_15 = ((_Фильтр_кол_ва_меньше_15DataTable)(base.Tables["Фильтр кол-ва меньше 15"]));
  412. if ((initTable == true)) {
  413. if ((this._tableФильтр_кол_ва_меньше_15 != null)) {
  414. this._tableФильтр_кол_ва_меньше_15.InitVars();
  415. }
  416. }
  417. this.tableфильтр_найк = ((фильтр_найкDataTable)(base.Tables["фильтр найк"]));
  418. if ((initTable == true)) {
  419. if ((this.tableфильтр_найк != null)) {
  420. this.tableфильтр_найк.InitVars();
  421. }
  422. }
  423. this.tableфильтр_прада = ((фильтр_прадаDataTable)(base.Tables["фильтр прада"]));
  424. if ((initTable == true)) {
  425. if ((this.tableфильтр_прада != null)) {
  426. this.tableфильтр_прада.InitVars();
  427. }
  428. }
  429. this.tableФильтр_цены_больше_20_к = ((Фильтр_цены_больше_20_кDataTable)(base.Tables["Фильтр цены больше 20 к"]));
  430. if ((initTable == true)) {
  431. if ((this.tableФильтр_цены_больше_20_к != null)) {
  432. this.tableФильтр_цены_больше_20_к.InitVars();
  433. }
  434. }
  435. this.tableФильтр_цены_меньше_20_к = ((Фильтр_цены_меньше_20_кDataTable)(base.Tables["Фильтр цены меньше 20 к"]));
  436. if ((initTable == true)) {
  437. if ((this.tableФильтр_цены_меньше_20_к != null)) {
  438. this.tableФильтр_цены_меньше_20_к.InitVars();
  439. }
  440. }
  441. }
  442. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  443. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  444. private void InitClass() {
  445. this.DataSetName = "Khozeev_ФАБРИКАDataSet";
  446. this.Prefix = "";
  447. this.Namespace = "http://tempuri.org/Khozeev_ФАБРИКАDataSet.xsd";
  448. this.EnforceConstraints = true;
  449. this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  450. this.tableМодели = new МоделиDataTable();
  451. base.Tables.Add(this.tableМодели);
  452. this.tableПоступления = new ПоступленияDataTable();
  453. base.Tables.Add(this.tableПоступления);
  454. this.tableТовар = new ТоварDataTable();
  455. base.Tables.Add(this.tableТовар);
  456. this._tableЗапрос_Модели___поступления = new _Запрос_Модели___поступленияDataTable();
  457. base.Tables.Add(this._tableЗапрос_Модели___поступления);
  458. this._tableЗапрос_Модель___Товар = new _Запрос_Модель___ТоварDataTable();
  459. base.Tables.Add(this._tableЗапрос_Модель___Товар);
  460. this.tableФильтр_Аддидас = new Фильтр_АддидасDataTable();
  461. base.Tables.Add(this.tableФильтр_Аддидас);
  462. this.tableФильтр_диор = new Фильтр_диорDataTable();
  463. base.Tables.Add(this.tableФильтр_диор);
  464. this._tableФильтр_кол_ва_больше_15 = new _Фильтр_кол_ва_больше_15DataTable();
  465. base.Tables.Add(this._tableФильтр_кол_ва_больше_15);
  466. this._tableФильтр_кол_ва_меньше_15 = new _Фильтр_кол_ва_меньше_15DataTable();
  467. base.Tables.Add(this._tableФильтр_кол_ва_меньше_15);
  468. this.tableфильтр_найк = new фильтр_найкDataTable();
  469. base.Tables.Add(this.tableфильтр_найк);
  470. this.tableфильтр_прада = new фильтр_прадаDataTable();
  471. base.Tables.Add(this.tableфильтр_прада);
  472. this.tableФильтр_цены_больше_20_к = new Фильтр_цены_больше_20_кDataTable();
  473. base.Tables.Add(this.tableФильтр_цены_больше_20_к);
  474. this.tableФильтр_цены_меньше_20_к = new Фильтр_цены_меньше_20_кDataTable();
  475. base.Tables.Add(this.tableФильтр_цены_меньше_20_к);
  476. }
  477. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  478. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  479. private bool ShouldSerializeМодели() {
  480. return false;
  481. }
  482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  484. private bool ShouldSerializeПоступления() {
  485. return false;
  486. }
  487. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  488. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  489. private bool ShouldSerializeТовар() {
  490. return false;
  491. }
  492. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  493. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  494. private bool ShouldSerialize_Запрос_Модели___поступления() {
  495. return false;
  496. }
  497. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  498. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  499. private bool ShouldSerialize_Запрос_Модель___Товар() {
  500. return false;
  501. }
  502. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  503. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  504. private bool ShouldSerializeФильтр_Аддидас() {
  505. return false;
  506. }
  507. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  508. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  509. private bool ShouldSerializeФильтр_диор() {
  510. return false;
  511. }
  512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  513. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  514. private bool ShouldSerialize_Фильтр_кол_ва_больше_15() {
  515. return false;
  516. }
  517. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  518. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  519. private bool ShouldSerialize_Фильтр_кол_ва_меньше_15() {
  520. return false;
  521. }
  522. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  523. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  524. private bool ShouldSerializeфильтр_найк() {
  525. return false;
  526. }
  527. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  528. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  529. private bool ShouldSerializeфильтр_прада() {
  530. return false;
  531. }
  532. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  533. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  534. private bool ShouldSerializeФильтр_цены_больше_20_к() {
  535. return false;
  536. }
  537. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  538. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  539. private bool ShouldSerializeФильтр_цены_меньше_20_к() {
  540. return false;
  541. }
  542. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  543. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  544. private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
  545. if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
  546. this.InitVars();
  547. }
  548. }
  549. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  550. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  551. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  552. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  553. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  554. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  555. global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
  556. any.Namespace = ds.Namespace;
  557. sequence.Items.Add(any);
  558. type.Particle = sequence;
  559. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  560. if (xs.Contains(dsSchema.TargetNamespace)) {
  561. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  562. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  563. try {
  564. global::System.Xml.Schema.XmlSchema schema = null;
  565. dsSchema.Write(s1);
  566. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  567. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  568. s2.SetLength(0);
  569. schema.Write(s2);
  570. if ((s1.Length == s2.Length)) {
  571. s1.Position = 0;
  572. s2.Position = 0;
  573. for (; ((s1.Position != s1.Length)
  574. && (s1.ReadByte() == s2.ReadByte())); ) {
  575. ;
  576. }
  577. if ((s1.Position == s1.Length)) {
  578. return type;
  579. }
  580. }
  581. }
  582. }
  583. finally {
  584. if ((s1 != null)) {
  585. s1.Close();
  586. }
  587. if ((s2 != null)) {
  588. s2.Close();
  589. }
  590. }
  591. }
  592. xs.Add(dsSchema);
  593. return type;
  594. }
  595. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  596. public delegate void МоделиRowChangeEventHandler(object sender, МоделиRowChangeEvent e);
  597. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  598. public delegate void ПоступленияRowChangeEventHandler(object sender, ПоступленияRowChangeEvent e);
  599. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  600. public delegate void ТоварRowChangeEventHandler(object sender, ТоварRowChangeEvent e);
  601. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  602. public delegate void _Запрос_Модели___поступленияRowChangeEventHandler(object sender, _Запрос_Модели___поступленияRowChangeEvent e);
  603. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  604. public delegate void _Запрос_Модель___ТоварRowChangeEventHandler(object sender, _Запрос_Модель___ТоварRowChangeEvent e);
  605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  606. public delegate void Фильтр_АддидасRowChangeEventHandler(object sender, Фильтр_АддидасRowChangeEvent e);
  607. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  608. public delegate void Фильтр_диорRowChangeEventHandler(object sender, Фильтр_диорRowChangeEvent e);
  609. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  610. public delegate void _Фильтр_кол_ва_больше_15RowChangeEventHandler(object sender, _Фильтр_кол_ва_больше_15RowChangeEvent e);
  611. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  612. public delegate void _Фильтр_кол_ва_меньше_15RowChangeEventHandler(object sender, _Фильтр_кол_ва_меньше_15RowChangeEvent e);
  613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  614. public delegate void фильтр_найкRowChangeEventHandler(object sender, фильтр_найкRowChangeEvent e);
  615. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  616. public delegate void фильтр_прадаRowChangeEventHandler(object sender, фильтр_прадаRowChangeEvent e);
  617. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  618. public delegate void Фильтр_цены_больше_20_кRowChangeEventHandler(object sender, Фильтр_цены_больше_20_кRowChangeEvent e);
  619. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  620. public delegate void Фильтр_цены_меньше_20_кRowChangeEventHandler(object sender, Фильтр_цены_меньше_20_кRowChangeEvent e);
  621. /// <summary>
  622. ///Represents the strongly named DataTable class.
  623. ///</summary>
  624. [global::System.Serializable()]
  625. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  626. public partial class МоделиDataTable : global::System.Data.TypedTableBase<МоделиRow> {
  627. private global::System.Data.DataColumn columnКод_модели;
  628. private global::System.Data.DataColumn columnНаименование_модели;
  629. private global::System.Data.DataColumn columnКод_товара;
  630. private global::System.Data.DataColumn columnЦена_модели;
  631. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  632. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  633. public МоделиDataTable() {
  634. this.TableName = "Модели";
  635. this.BeginInit();
  636. this.InitClass();
  637. this.EndInit();
  638. }
  639. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  640. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  641. internal МоделиDataTable(global::System.Data.DataTable table) {
  642. this.TableName = table.TableName;
  643. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  644. this.CaseSensitive = table.CaseSensitive;
  645. }
  646. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  647. this.Locale = table.Locale;
  648. }
  649. if ((table.Namespace != table.DataSet.Namespace)) {
  650. this.Namespace = table.Namespace;
  651. }
  652. this.Prefix = table.Prefix;
  653. this.MinimumCapacity = table.MinimumCapacity;
  654. }
  655. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  656. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  657. protected МоделиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  658. base(info, context) {
  659. this.InitVars();
  660. }
  661. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  662. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  663. public global::System.Data.DataColumn Код_моделиColumn {
  664. get {
  665. return this.columnКод_модели;
  666. }
  667. }
  668. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  669. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  670. public global::System.Data.DataColumn Наименование_моделиColumn {
  671. get {
  672. return this.columnНаименование_модели;
  673. }
  674. }
  675. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  676. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  677. public global::System.Data.DataColumn Код_товараColumn {
  678. get {
  679. return this.columnКод_товара;
  680. }
  681. }
  682. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  683. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  684. public global::System.Data.DataColumn Цена_моделиColumn {
  685. get {
  686. return this.columnЦена_модели;
  687. }
  688. }
  689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  690. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  691. [global::System.ComponentModel.Browsable(false)]
  692. public int Count {
  693. get {
  694. return this.Rows.Count;
  695. }
  696. }
  697. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  698. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  699. public МоделиRow this[int index] {
  700. get {
  701. return ((МоделиRow)(this.Rows[index]));
  702. }
  703. }
  704. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  705. public event МоделиRowChangeEventHandler МоделиRowChanging;
  706. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  707. public event МоделиRowChangeEventHandler МоделиRowChanged;
  708. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  709. public event МоделиRowChangeEventHandler МоделиRowDeleting;
  710. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  711. public event МоделиRowChangeEventHandler МоделиRowDeleted;
  712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  714. public void AddМоделиRow(МоделиRow row) {
  715. this.Rows.Add(row);
  716. }
  717. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  718. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  719. public МоделиRow AddМоделиRow(long Код_модели, string Наименование_модели, long Код_товара, decimal Цена_модели) {
  720. МоделиRow rowМоделиRow = ((МоделиRow)(this.NewRow()));
  721. object[] columnValuesArray = new object[] {
  722. Код_модели,
  723. Наименование_модели,
  724. Код_товара,
  725. Цена_модели};
  726. rowМоделиRow.ItemArray = columnValuesArray;
  727. this.Rows.Add(rowМоделиRow);
  728. return rowМоделиRow;
  729. }
  730. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  731. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  732. public override global::System.Data.DataTable Clone() {
  733. МоделиDataTable cln = ((МоделиDataTable)(base.Clone()));
  734. cln.InitVars();
  735. return cln;
  736. }
  737. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  738. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  739. protected override global::System.Data.DataTable CreateInstance() {
  740. return new МоделиDataTable();
  741. }
  742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  744. internal void InitVars() {
  745. this.columnКод_модели = base.Columns["Код модели"];
  746. this.columnНаименование_модели = base.Columns["Наименование модели"];
  747. this.columnКод_товара = base.Columns["Код товара"];
  748. this.columnЦена_модели = base.Columns["Цена модели"];
  749. }
  750. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  751. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  752. private void InitClass() {
  753. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  754. base.Columns.Add(this.columnКод_модели);
  755. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  756. base.Columns.Add(this.columnНаименование_модели);
  757. this.columnКод_товара = new global::System.Data.DataColumn("Код товара", typeof(long), null, global::System.Data.MappingType.Element);
  758. base.Columns.Add(this.columnКод_товара);
  759. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  760. base.Columns.Add(this.columnЦена_модели);
  761. this.columnНаименование_модели.MaxLength = 50;
  762. }
  763. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  764. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  765. public МоделиRow NewМоделиRow() {
  766. return ((МоделиRow)(this.NewRow()));
  767. }
  768. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  769. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  770. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  771. return new МоделиRow(builder);
  772. }
  773. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  774. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  775. protected override global::System.Type GetRowType() {
  776. return typeof(МоделиRow);
  777. }
  778. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  779. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  780. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  781. base.OnRowChanged(e);
  782. if ((this.МоделиRowChanged != null)) {
  783. this.МоделиRowChanged(this, new МоделиRowChangeEvent(((МоделиRow)(e.Row)), e.Action));
  784. }
  785. }
  786. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  787. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  788. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  789. base.OnRowChanging(e);
  790. if ((this.МоделиRowChanging != null)) {
  791. this.МоделиRowChanging(this, new МоделиRowChangeEvent(((МоделиRow)(e.Row)), e.Action));
  792. }
  793. }
  794. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  795. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  796. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  797. base.OnRowDeleted(e);
  798. if ((this.МоделиRowDeleted != null)) {
  799. this.МоделиRowDeleted(this, new МоделиRowChangeEvent(((МоделиRow)(e.Row)), e.Action));
  800. }
  801. }
  802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  803. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  804. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  805. base.OnRowDeleting(e);
  806. if ((this.МоделиRowDeleting != null)) {
  807. this.МоделиRowDeleting(this, new МоделиRowChangeEvent(((МоделиRow)(e.Row)), e.Action));
  808. }
  809. }
  810. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  811. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  812. public void RemoveМоделиRow(МоделиRow row) {
  813. this.Rows.Remove(row);
  814. }
  815. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  816. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  817. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  818. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  819. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  820. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  821. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  822. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  823. any1.MinOccurs = new decimal(0);
  824. any1.MaxOccurs = decimal.MaxValue;
  825. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  826. sequence.Items.Add(any1);
  827. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  828. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  829. any2.MinOccurs = new decimal(1);
  830. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  831. sequence.Items.Add(any2);
  832. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  833. attribute1.Name = "namespace";
  834. attribute1.FixedValue = ds.Namespace;
  835. type.Attributes.Add(attribute1);
  836. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  837. attribute2.Name = "tableTypeName";
  838. attribute2.FixedValue = "МоделиDataTable";
  839. type.Attributes.Add(attribute2);
  840. type.Particle = sequence;
  841. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  842. if (xs.Contains(dsSchema.TargetNamespace)) {
  843. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  844. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  845. try {
  846. global::System.Xml.Schema.XmlSchema schema = null;
  847. dsSchema.Write(s1);
  848. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  849. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  850. s2.SetLength(0);
  851. schema.Write(s2);
  852. if ((s1.Length == s2.Length)) {
  853. s1.Position = 0;
  854. s2.Position = 0;
  855. for (; ((s1.Position != s1.Length)
  856. && (s1.ReadByte() == s2.ReadByte())); ) {
  857. ;
  858. }
  859. if ((s1.Position == s1.Length)) {
  860. return type;
  861. }
  862. }
  863. }
  864. }
  865. finally {
  866. if ((s1 != null)) {
  867. s1.Close();
  868. }
  869. if ((s2 != null)) {
  870. s2.Close();
  871. }
  872. }
  873. }
  874. xs.Add(dsSchema);
  875. return type;
  876. }
  877. }
  878. /// <summary>
  879. ///Represents the strongly named DataTable class.
  880. ///</summary>
  881. [global::System.Serializable()]
  882. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  883. public partial class ПоступленияDataTable : global::System.Data.TypedTableBase<ПоступленияRow> {
  884. private global::System.Data.DataColumn columnКод_поступления;
  885. private global::System.Data.DataColumn columnКод_модели;
  886. private global::System.Data.DataColumn columnДата_поступления;
  887. private global::System.Data.DataColumn columnМодели_товара;
  888. private global::System.Data.DataColumn columnКоличество;
  889. private global::System.Data.DataColumn columnКто_принял_товар;
  890. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  891. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  892. public ПоступленияDataTable() {
  893. this.TableName = "Поступления";
  894. this.BeginInit();
  895. this.InitClass();
  896. this.EndInit();
  897. }
  898. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  899. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  900. internal ПоступленияDataTable(global::System.Data.DataTable table) {
  901. this.TableName = table.TableName;
  902. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  903. this.CaseSensitive = table.CaseSensitive;
  904. }
  905. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  906. this.Locale = table.Locale;
  907. }
  908. if ((table.Namespace != table.DataSet.Namespace)) {
  909. this.Namespace = table.Namespace;
  910. }
  911. this.Prefix = table.Prefix;
  912. this.MinimumCapacity = table.MinimumCapacity;
  913. }
  914. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  915. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  916. protected ПоступленияDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  917. base(info, context) {
  918. this.InitVars();
  919. }
  920. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  921. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  922. public global::System.Data.DataColumn Код_поступленияColumn {
  923. get {
  924. return this.columnКод_поступления;
  925. }
  926. }
  927. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  928. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  929. public global::System.Data.DataColumn Код_моделиColumn {
  930. get {
  931. return this.columnКод_модели;
  932. }
  933. }
  934. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  935. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  936. public global::System.Data.DataColumn Дата_поступленияColumn {
  937. get {
  938. return this.columnДата_поступления;
  939. }
  940. }
  941. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  942. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  943. public global::System.Data.DataColumn Модели_товараColumn {
  944. get {
  945. return this.columnМодели_товара;
  946. }
  947. }
  948. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  949. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  950. public global::System.Data.DataColumn КоличествоColumn {
  951. get {
  952. return this.columnКоличество;
  953. }
  954. }
  955. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  956. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  957. public global::System.Data.DataColumn Кто_принял_товарColumn {
  958. get {
  959. return this.columnКто_принял_товар;
  960. }
  961. }
  962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  964. [global::System.ComponentModel.Browsable(false)]
  965. public int Count {
  966. get {
  967. return this.Rows.Count;
  968. }
  969. }
  970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  972. public ПоступленияRow this[int index] {
  973. get {
  974. return ((ПоступленияRow)(this.Rows[index]));
  975. }
  976. }
  977. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  978. public event ПоступленияRowChangeEventHandler ПоступленияRowChanging;
  979. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  980. public event ПоступленияRowChangeEventHandler ПоступленияRowChanged;
  981. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  982. public event ПоступленияRowChangeEventHandler ПоступленияRowDeleting;
  983. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  984. public event ПоступленияRowChangeEventHandler ПоступленияRowDeleted;
  985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  986. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  987. public void AddПоступленияRow(ПоступленияRow row) {
  988. this.Rows.Add(row);
  989. }
  990. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  991. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  992. public ПоступленияRow AddПоступленияRow(long Код_поступления, long Код_модели, System.DateTime Дата_поступления, string Модели_товара, int Количество, string Кто_принял_товар) {
  993. ПоступленияRow rowПоступленияRow = ((ПоступленияRow)(this.NewRow()));
  994. object[] columnValuesArray = new object[] {
  995. Код_поступления,
  996. Код_модели,
  997. Дата_поступления,
  998. Модели_товара,
  999. Количество,
  1000. Кто_принял_товар};
  1001. rowПоступленияRow.ItemArray = columnValuesArray;
  1002. this.Rows.Add(rowПоступленияRow);
  1003. return rowПоступленияRow;
  1004. }
  1005. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1006. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1007. public override global::System.Data.DataTable Clone() {
  1008. ПоступленияDataTable cln = ((ПоступленияDataTable)(base.Clone()));
  1009. cln.InitVars();
  1010. return cln;
  1011. }
  1012. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1013. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1014. protected override global::System.Data.DataTable CreateInstance() {
  1015. return new ПоступленияDataTable();
  1016. }
  1017. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1018. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1019. internal void InitVars() {
  1020. this.columnКод_поступления = base.Columns["Код поступления"];
  1021. this.columnКод_модели = base.Columns["Код модели"];
  1022. this.columnДата_поступления = base.Columns["Дата поступления"];
  1023. this.columnМодели_товара = base.Columns["Модели товара"];
  1024. this.columnКоличество = base.Columns["Количество"];
  1025. this.columnКто_принял_товар = base.Columns["Кто принял товар"];
  1026. }
  1027. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1028. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1029. private void InitClass() {
  1030. this.columnКод_поступления = new global::System.Data.DataColumn("Код поступления", typeof(long), null, global::System.Data.MappingType.Element);
  1031. base.Columns.Add(this.columnКод_поступления);
  1032. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  1033. base.Columns.Add(this.columnКод_модели);
  1034. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1035. base.Columns.Add(this.columnДата_поступления);
  1036. this.columnМодели_товара = new global::System.Data.DataColumn("Модели товара", typeof(string), null, global::System.Data.MappingType.Element);
  1037. base.Columns.Add(this.columnМодели_товара);
  1038. this.columnКоличество = new global::System.Data.DataColumn("Количество", typeof(int), null, global::System.Data.MappingType.Element);
  1039. base.Columns.Add(this.columnКоличество);
  1040. this.columnКто_принял_товар = new global::System.Data.DataColumn("Кто принял товар", typeof(string), null, global::System.Data.MappingType.Element);
  1041. base.Columns.Add(this.columnКто_принял_товар);
  1042. this.columnМодели_товара.MaxLength = 50;
  1043. this.columnКто_принял_товар.MaxLength = 50;
  1044. }
  1045. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1046. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1047. public ПоступленияRow NewПоступленияRow() {
  1048. return ((ПоступленияRow)(this.NewRow()));
  1049. }
  1050. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1051. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1052. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1053. return new ПоступленияRow(builder);
  1054. }
  1055. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1056. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1057. protected override global::System.Type GetRowType() {
  1058. return typeof(ПоступленияRow);
  1059. }
  1060. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1061. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1062. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1063. base.OnRowChanged(e);
  1064. if ((this.ПоступленияRowChanged != null)) {
  1065. this.ПоступленияRowChanged(this, new ПоступленияRowChangeEvent(((ПоступленияRow)(e.Row)), e.Action));
  1066. }
  1067. }
  1068. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1069. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1070. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1071. base.OnRowChanging(e);
  1072. if ((this.ПоступленияRowChanging != null)) {
  1073. this.ПоступленияRowChanging(this, new ПоступленияRowChangeEvent(((ПоступленияRow)(e.Row)), e.Action));
  1074. }
  1075. }
  1076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1078. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1079. base.OnRowDeleted(e);
  1080. if ((this.ПоступленияRowDeleted != null)) {
  1081. this.ПоступленияRowDeleted(this, new ПоступленияRowChangeEvent(((ПоступленияRow)(e.Row)), e.Action));
  1082. }
  1083. }
  1084. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1085. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1086. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1087. base.OnRowDeleting(e);
  1088. if ((this.ПоступленияRowDeleting != null)) {
  1089. this.ПоступленияRowDeleting(this, new ПоступленияRowChangeEvent(((ПоступленияRow)(e.Row)), e.Action));
  1090. }
  1091. }
  1092. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1093. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1094. public void RemoveПоступленияRow(ПоступленияRow row) {
  1095. this.Rows.Remove(row);
  1096. }
  1097. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1098. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1099. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1100. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1101. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1102. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  1103. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1104. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1105. any1.MinOccurs = new decimal(0);
  1106. any1.MaxOccurs = decimal.MaxValue;
  1107. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1108. sequence.Items.Add(any1);
  1109. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1110. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1111. any2.MinOccurs = new decimal(1);
  1112. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1113. sequence.Items.Add(any2);
  1114. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1115. attribute1.Name = "namespace";
  1116. attribute1.FixedValue = ds.Namespace;
  1117. type.Attributes.Add(attribute1);
  1118. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1119. attribute2.Name = "tableTypeName";
  1120. attribute2.FixedValue = "ПоступленияDataTable";
  1121. type.Attributes.Add(attribute2);
  1122. type.Particle = sequence;
  1123. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1124. if (xs.Contains(dsSchema.TargetNamespace)) {
  1125. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1126. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1127. try {
  1128. global::System.Xml.Schema.XmlSchema schema = null;
  1129. dsSchema.Write(s1);
  1130. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1131. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1132. s2.SetLength(0);
  1133. schema.Write(s2);
  1134. if ((s1.Length == s2.Length)) {
  1135. s1.Position = 0;
  1136. s2.Position = 0;
  1137. for (; ((s1.Position != s1.Length)
  1138. && (s1.ReadByte() == s2.ReadByte())); ) {
  1139. ;
  1140. }
  1141. if ((s1.Position == s1.Length)) {
  1142. return type;
  1143. }
  1144. }
  1145. }
  1146. }
  1147. finally {
  1148. if ((s1 != null)) {
  1149. s1.Close();
  1150. }
  1151. if ((s2 != null)) {
  1152. s2.Close();
  1153. }
  1154. }
  1155. }
  1156. xs.Add(dsSchema);
  1157. return type;
  1158. }
  1159. }
  1160. /// <summary>
  1161. ///Represents the strongly named DataTable class.
  1162. ///</summary>
  1163. [global::System.Serializable()]
  1164. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1165. public partial class ТоварDataTable : global::System.Data.TypedTableBase<ТоварRow> {
  1166. private global::System.Data.DataColumn columnКод_товара;
  1167. private global::System.Data.DataColumn columnНаименование_товара;
  1168. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1169. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1170. public ТоварDataTable() {
  1171. this.TableName = "Товар";
  1172. this.BeginInit();
  1173. this.InitClass();
  1174. this.EndInit();
  1175. }
  1176. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1177. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1178. internal ТоварDataTable(global::System.Data.DataTable table) {
  1179. this.TableName = table.TableName;
  1180. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1181. this.CaseSensitive = table.CaseSensitive;
  1182. }
  1183. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1184. this.Locale = table.Locale;
  1185. }
  1186. if ((table.Namespace != table.DataSet.Namespace)) {
  1187. this.Namespace = table.Namespace;
  1188. }
  1189. this.Prefix = table.Prefix;
  1190. this.MinimumCapacity = table.MinimumCapacity;
  1191. }
  1192. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1193. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1194. protected ТоварDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1195. base(info, context) {
  1196. this.InitVars();
  1197. }
  1198. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1199. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1200. public global::System.Data.DataColumn Код_товараColumn {
  1201. get {
  1202. return this.columnКод_товара;
  1203. }
  1204. }
  1205. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1206. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1207. public global::System.Data.DataColumn Наименование_товараColumn {
  1208. get {
  1209. return this.columnНаименование_товара;
  1210. }
  1211. }
  1212. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1213. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1214. [global::System.ComponentModel.Browsable(false)]
  1215. public int Count {
  1216. get {
  1217. return this.Rows.Count;
  1218. }
  1219. }
  1220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1222. public ТоварRow this[int index] {
  1223. get {
  1224. return ((ТоварRow)(this.Rows[index]));
  1225. }
  1226. }
  1227. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1228. public event ТоварRowChangeEventHandler ТоварRowChanging;
  1229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1230. public event ТоварRowChangeEventHandler ТоварRowChanged;
  1231. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1232. public event ТоварRowChangeEventHandler ТоварRowDeleting;
  1233. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1234. public event ТоварRowChangeEventHandler ТоварRowDeleted;
  1235. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1236. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1237. public void AddТоварRow(ТоварRow row) {
  1238. this.Rows.Add(row);
  1239. }
  1240. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1241. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1242. public ТоварRow AddТоварRow(long Код_товара, string Наименование_товара) {
  1243. ТоварRow rowТоварRow = ((ТоварRow)(this.NewRow()));
  1244. object[] columnValuesArray = new object[] {
  1245. Код_товара,
  1246. Наименование_товара};
  1247. rowТоварRow.ItemArray = columnValuesArray;
  1248. this.Rows.Add(rowТоварRow);
  1249. return rowТоварRow;
  1250. }
  1251. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1252. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1253. public override global::System.Data.DataTable Clone() {
  1254. ТоварDataTable cln = ((ТоварDataTable)(base.Clone()));
  1255. cln.InitVars();
  1256. return cln;
  1257. }
  1258. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1259. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1260. protected override global::System.Data.DataTable CreateInstance() {
  1261. return new ТоварDataTable();
  1262. }
  1263. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1264. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1265. internal void InitVars() {
  1266. this.columnКод_товара = base.Columns["Код товара"];
  1267. this.columnНаименование_товара = base.Columns["Наименование товара"];
  1268. }
  1269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1271. private void InitClass() {
  1272. this.columnКод_товара = new global::System.Data.DataColumn("Код товара", typeof(long), null, global::System.Data.MappingType.Element);
  1273. base.Columns.Add(this.columnКод_товара);
  1274. this.columnНаименование_товара = new global::System.Data.DataColumn("Наименование товара", typeof(string), null, global::System.Data.MappingType.Element);
  1275. base.Columns.Add(this.columnНаименование_товара);
  1276. this.columnНаименование_товара.MaxLength = 50;
  1277. }
  1278. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1279. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1280. public ТоварRow NewТоварRow() {
  1281. return ((ТоварRow)(this.NewRow()));
  1282. }
  1283. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1284. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1285. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1286. return new ТоварRow(builder);
  1287. }
  1288. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1289. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1290. protected override global::System.Type GetRowType() {
  1291. return typeof(ТоварRow);
  1292. }
  1293. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1294. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1295. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1296. base.OnRowChanged(e);
  1297. if ((this.ТоварRowChanged != null)) {
  1298. this.ТоварRowChanged(this, new ТоварRowChangeEvent(((ТоварRow)(e.Row)), e.Action));
  1299. }
  1300. }
  1301. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1302. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1303. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1304. base.OnRowChanging(e);
  1305. if ((this.ТоварRowChanging != null)) {
  1306. this.ТоварRowChanging(this, new ТоварRowChangeEvent(((ТоварRow)(e.Row)), e.Action));
  1307. }
  1308. }
  1309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1311. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1312. base.OnRowDeleted(e);
  1313. if ((this.ТоварRowDeleted != null)) {
  1314. this.ТоварRowDeleted(this, new ТоварRowChangeEvent(((ТоварRow)(e.Row)), e.Action));
  1315. }
  1316. }
  1317. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1318. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1319. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1320. base.OnRowDeleting(e);
  1321. if ((this.ТоварRowDeleting != null)) {
  1322. this.ТоварRowDeleting(this, new ТоварRowChangeEvent(((ТоварRow)(e.Row)), e.Action));
  1323. }
  1324. }
  1325. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1326. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1327. public void RemoveТоварRow(ТоварRow row) {
  1328. this.Rows.Remove(row);
  1329. }
  1330. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1331. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1332. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1333. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1334. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1335. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  1336. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1337. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1338. any1.MinOccurs = new decimal(0);
  1339. any1.MaxOccurs = decimal.MaxValue;
  1340. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1341. sequence.Items.Add(any1);
  1342. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1343. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1344. any2.MinOccurs = new decimal(1);
  1345. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1346. sequence.Items.Add(any2);
  1347. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1348. attribute1.Name = "namespace";
  1349. attribute1.FixedValue = ds.Namespace;
  1350. type.Attributes.Add(attribute1);
  1351. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1352. attribute2.Name = "tableTypeName";
  1353. attribute2.FixedValue = "ТоварDataTable";
  1354. type.Attributes.Add(attribute2);
  1355. type.Particle = sequence;
  1356. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1357. if (xs.Contains(dsSchema.TargetNamespace)) {
  1358. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1359. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1360. try {
  1361. global::System.Xml.Schema.XmlSchema schema = null;
  1362. dsSchema.Write(s1);
  1363. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1364. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1365. s2.SetLength(0);
  1366. schema.Write(s2);
  1367. if ((s1.Length == s2.Length)) {
  1368. s1.Position = 0;
  1369. s2.Position = 0;
  1370. for (; ((s1.Position != s1.Length)
  1371. && (s1.ReadByte() == s2.ReadByte())); ) {
  1372. ;
  1373. }
  1374. if ((s1.Position == s1.Length)) {
  1375. return type;
  1376. }
  1377. }
  1378. }
  1379. }
  1380. finally {
  1381. if ((s1 != null)) {
  1382. s1.Close();
  1383. }
  1384. if ((s2 != null)) {
  1385. s2.Close();
  1386. }
  1387. }
  1388. }
  1389. xs.Add(dsSchema);
  1390. return type;
  1391. }
  1392. }
  1393. /// <summary>
  1394. ///Represents the strongly named DataTable class.
  1395. ///</summary>
  1396. [global::System.Serializable()]
  1397. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1398. public partial class _Запрос_Модели___поступленияDataTable : global::System.Data.TypedTableBase<_Запрос_Модели___поступленияRow> {
  1399. private global::System.Data.DataColumn columnКод_товара;
  1400. private global::System.Data.DataColumn columnНаименование_модели;
  1401. private global::System.Data.DataColumn columnЦена_модели;
  1402. private global::System.Data.DataColumn columnМодели_товара;
  1403. private global::System.Data.DataColumn columnДата_поступления;
  1404. private global::System.Data.DataColumn columnКод_поступления;
  1405. private global::System.Data.DataColumn columnКто_принял_товар;
  1406. private global::System.Data.DataColumn columnКоличество;
  1407. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1408. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1409. public _Запрос_Модели___поступленияDataTable() {
  1410. this.TableName = "Запрос Модели + поступления";
  1411. this.BeginInit();
  1412. this.InitClass();
  1413. this.EndInit();
  1414. }
  1415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1417. internal _Запрос_Модели___поступленияDataTable(global::System.Data.DataTable table) {
  1418. this.TableName = table.TableName;
  1419. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1420. this.CaseSensitive = table.CaseSensitive;
  1421. }
  1422. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1423. this.Locale = table.Locale;
  1424. }
  1425. if ((table.Namespace != table.DataSet.Namespace)) {
  1426. this.Namespace = table.Namespace;
  1427. }
  1428. this.Prefix = table.Prefix;
  1429. this.MinimumCapacity = table.MinimumCapacity;
  1430. }
  1431. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1432. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1433. protected _Запрос_Модели___поступленияDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1434. base(info, context) {
  1435. this.InitVars();
  1436. }
  1437. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1438. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1439. public global::System.Data.DataColumn Код_товараColumn {
  1440. get {
  1441. return this.columnКод_товара;
  1442. }
  1443. }
  1444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1445. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1446. public global::System.Data.DataColumn Наименование_моделиColumn {
  1447. get {
  1448. return this.columnНаименование_модели;
  1449. }
  1450. }
  1451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1452. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1453. public global::System.Data.DataColumn Цена_моделиColumn {
  1454. get {
  1455. return this.columnЦена_модели;
  1456. }
  1457. }
  1458. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1459. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1460. public global::System.Data.DataColumn Модели_товараColumn {
  1461. get {
  1462. return this.columnМодели_товара;
  1463. }
  1464. }
  1465. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1466. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1467. public global::System.Data.DataColumn Дата_поступленияColumn {
  1468. get {
  1469. return this.columnДата_поступления;
  1470. }
  1471. }
  1472. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1473. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1474. public global::System.Data.DataColumn Код_поступленияColumn {
  1475. get {
  1476. return this.columnКод_поступления;
  1477. }
  1478. }
  1479. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1480. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1481. public global::System.Data.DataColumn Кто_принял_товарColumn {
  1482. get {
  1483. return this.columnКто_принял_товар;
  1484. }
  1485. }
  1486. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1487. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1488. public global::System.Data.DataColumn КоличествоColumn {
  1489. get {
  1490. return this.columnКоличество;
  1491. }
  1492. }
  1493. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1494. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1495. [global::System.ComponentModel.Browsable(false)]
  1496. public int Count {
  1497. get {
  1498. return this.Rows.Count;
  1499. }
  1500. }
  1501. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1502. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1503. public _Запрос_Модели___поступленияRow this[int index] {
  1504. get {
  1505. return ((_Запрос_Модели___поступленияRow)(this.Rows[index]));
  1506. }
  1507. }
  1508. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1509. public event _Запрос_Модели___поступленияRowChangeEventHandler _Запрос_Модели___поступленияRowChanging;
  1510. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1511. public event _Запрос_Модели___поступленияRowChangeEventHandler _Запрос_Модели___поступленияRowChanged;
  1512. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1513. public event _Запрос_Модели___поступленияRowChangeEventHandler _Запрос_Модели___поступленияRowDeleting;
  1514. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1515. public event _Запрос_Модели___поступленияRowChangeEventHandler _Запрос_Модели___поступленияRowDeleted;
  1516. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1517. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1518. public void Add_Запрос_Модели___поступленияRow(_Запрос_Модели___поступленияRow row) {
  1519. this.Rows.Add(row);
  1520. }
  1521. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1522. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1523. public _Запрос_Модели___поступленияRow Add_Запрос_Модели___поступленияRow(long Код_товара, string Наименование_модели, decimal Цена_модели, string Модели_товара, System.DateTime Дата_поступления, long Код_поступления, string Кто_принял_товар, int Количество) {
  1524. _Запрос_Модели___поступленияRow row_Запрос_Модели___поступленияRow = ((_Запрос_Модели___поступленияRow)(this.NewRow()));
  1525. object[] columnValuesArray = new object[] {
  1526. Код_товара,
  1527. Наименование_модели,
  1528. Цена_модели,
  1529. Модели_товара,
  1530. Дата_поступления,
  1531. Код_поступления,
  1532. Кто_принял_товар,
  1533. Количество};
  1534. row_Запрос_Модели___поступленияRow.ItemArray = columnValuesArray;
  1535. this.Rows.Add(row_Запрос_Модели___поступленияRow);
  1536. return row_Запрос_Модели___поступленияRow;
  1537. }
  1538. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1539. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1540. public override global::System.Data.DataTable Clone() {
  1541. _Запрос_Модели___поступленияDataTable cln = ((_Запрос_Модели___поступленияDataTable)(base.Clone()));
  1542. cln.InitVars();
  1543. return cln;
  1544. }
  1545. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1547. protected override global::System.Data.DataTable CreateInstance() {
  1548. return new _Запрос_Модели___поступленияDataTable();
  1549. }
  1550. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1551. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1552. internal void InitVars() {
  1553. this.columnКод_товара = base.Columns["Код товара"];
  1554. this.columnНаименование_модели = base.Columns["Наименование модели"];
  1555. this.columnЦена_модели = base.Columns["Цена модели"];
  1556. this.columnМодели_товара = base.Columns["Модели товара"];
  1557. this.columnДата_поступления = base.Columns["Дата поступления"];
  1558. this.columnКод_поступления = base.Columns["Код поступления"];
  1559. this.columnКто_принял_товар = base.Columns["Кто принял товар"];
  1560. this.columnКоличество = base.Columns["Количество"];
  1561. }
  1562. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1563. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1564. private void InitClass() {
  1565. this.columnКод_товара = new global::System.Data.DataColumn("Код товара", typeof(long), null, global::System.Data.MappingType.Element);
  1566. base.Columns.Add(this.columnКод_товара);
  1567. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  1568. base.Columns.Add(this.columnНаименование_модели);
  1569. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  1570. base.Columns.Add(this.columnЦена_модели);
  1571. this.columnМодели_товара = new global::System.Data.DataColumn("Модели товара", typeof(string), null, global::System.Data.MappingType.Element);
  1572. base.Columns.Add(this.columnМодели_товара);
  1573. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1574. base.Columns.Add(this.columnДата_поступления);
  1575. this.columnКод_поступления = new global::System.Data.DataColumn("Код поступления", typeof(long), null, global::System.Data.MappingType.Element);
  1576. base.Columns.Add(this.columnКод_поступления);
  1577. this.columnКто_принял_товар = new global::System.Data.DataColumn("Кто принял товар", typeof(string), null, global::System.Data.MappingType.Element);
  1578. base.Columns.Add(this.columnКто_принял_товар);
  1579. this.columnКоличество = new global::System.Data.DataColumn("Количество", typeof(int), null, global::System.Data.MappingType.Element);
  1580. base.Columns.Add(this.columnКоличество);
  1581. this.columnНаименование_модели.MaxLength = 50;
  1582. this.columnМодели_товара.MaxLength = 50;
  1583. this.columnКто_принял_товар.MaxLength = 50;
  1584. this.ExtendedProperties.Add("Generator_TableVarName", "_tableЗапрос_Модели___поступления");
  1585. this.ExtendedProperties.Add("Generator_UserTableName", "Запрос Модели + поступления");
  1586. }
  1587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1589. public _Запрос_Модели___поступленияRow New_Запрос_Модели___поступленияRow() {
  1590. return ((_Запрос_Модели___поступленияRow)(this.NewRow()));
  1591. }
  1592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1593. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1594. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1595. return new _Запрос_Модели___поступленияRow(builder);
  1596. }
  1597. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1598. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1599. protected override global::System.Type GetRowType() {
  1600. return typeof(_Запрос_Модели___поступленияRow);
  1601. }
  1602. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1603. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1604. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1605. base.OnRowChanged(e);
  1606. if ((this._Запрос_Модели___поступленияRowChanged != null)) {
  1607. this._Запрос_Модели___поступленияRowChanged(this, new _Запрос_Модели___поступленияRowChangeEvent(((_Запрос_Модели___поступленияRow)(e.Row)), e.Action));
  1608. }
  1609. }
  1610. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1611. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1612. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1613. base.OnRowChanging(e);
  1614. if ((this._Запрос_Модели___поступленияRowChanging != null)) {
  1615. this._Запрос_Модели___поступленияRowChanging(this, new _Запрос_Модели___поступленияRowChangeEvent(((_Запрос_Модели___поступленияRow)(e.Row)), e.Action));
  1616. }
  1617. }
  1618. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1619. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1620. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1621. base.OnRowDeleted(e);
  1622. if ((this._Запрос_Модели___поступленияRowDeleted != null)) {
  1623. this._Запрос_Модели___поступленияRowDeleted(this, new _Запрос_Модели___поступленияRowChangeEvent(((_Запрос_Модели___поступленияRow)(e.Row)), e.Action));
  1624. }
  1625. }
  1626. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1627. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1628. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1629. base.OnRowDeleting(e);
  1630. if ((this._Запрос_Модели___поступленияRowDeleting != null)) {
  1631. this._Запрос_Модели___поступленияRowDeleting(this, new _Запрос_Модели___поступленияRowChangeEvent(((_Запрос_Модели___поступленияRow)(e.Row)), e.Action));
  1632. }
  1633. }
  1634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1636. public void Remove_Запрос_Модели___поступленияRow(_Запрос_Модели___поступленияRow row) {
  1637. this.Rows.Remove(row);
  1638. }
  1639. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1640. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1641. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1642. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1643. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1644. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  1645. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1646. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1647. any1.MinOccurs = new decimal(0);
  1648. any1.MaxOccurs = decimal.MaxValue;
  1649. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1650. sequence.Items.Add(any1);
  1651. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1652. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1653. any2.MinOccurs = new decimal(1);
  1654. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1655. sequence.Items.Add(any2);
  1656. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1657. attribute1.Name = "namespace";
  1658. attribute1.FixedValue = ds.Namespace;
  1659. type.Attributes.Add(attribute1);
  1660. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1661. attribute2.Name = "tableTypeName";
  1662. attribute2.FixedValue = "_Запрос_Модели___поступленияDataTable";
  1663. type.Attributes.Add(attribute2);
  1664. type.Particle = sequence;
  1665. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1666. if (xs.Contains(dsSchema.TargetNamespace)) {
  1667. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1668. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1669. try {
  1670. global::System.Xml.Schema.XmlSchema schema = null;
  1671. dsSchema.Write(s1);
  1672. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1673. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1674. s2.SetLength(0);
  1675. schema.Write(s2);
  1676. if ((s1.Length == s2.Length)) {
  1677. s1.Position = 0;
  1678. s2.Position = 0;
  1679. for (; ((s1.Position != s1.Length)
  1680. && (s1.ReadByte() == s2.ReadByte())); ) {
  1681. ;
  1682. }
  1683. if ((s1.Position == s1.Length)) {
  1684. return type;
  1685. }
  1686. }
  1687. }
  1688. }
  1689. finally {
  1690. if ((s1 != null)) {
  1691. s1.Close();
  1692. }
  1693. if ((s2 != null)) {
  1694. s2.Close();
  1695. }
  1696. }
  1697. }
  1698. xs.Add(dsSchema);
  1699. return type;
  1700. }
  1701. }
  1702. /// <summary>
  1703. ///Represents the strongly named DataTable class.
  1704. ///</summary>
  1705. [global::System.Serializable()]
  1706. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1707. public partial class _Запрос_Модель___ТоварDataTable : global::System.Data.TypedTableBase<_Запрос_Модель___ТоварRow> {
  1708. private global::System.Data.DataColumn columnНаименование_товара;
  1709. private global::System.Data.DataColumn columnЦена_модели;
  1710. private global::System.Data.DataColumn columnНаименование_модели;
  1711. private global::System.Data.DataColumn columnКод_модели;
  1712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1714. public _Запрос_Модель___ТоварDataTable() {
  1715. this.TableName = "Запрос Модель + Товар";
  1716. this.BeginInit();
  1717. this.InitClass();
  1718. this.EndInit();
  1719. }
  1720. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1721. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1722. internal _Запрос_Модель___ТоварDataTable(global::System.Data.DataTable table) {
  1723. this.TableName = table.TableName;
  1724. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1725. this.CaseSensitive = table.CaseSensitive;
  1726. }
  1727. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1728. this.Locale = table.Locale;
  1729. }
  1730. if ((table.Namespace != table.DataSet.Namespace)) {
  1731. this.Namespace = table.Namespace;
  1732. }
  1733. this.Prefix = table.Prefix;
  1734. this.MinimumCapacity = table.MinimumCapacity;
  1735. }
  1736. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1737. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1738. protected _Запрос_Модель___ТоварDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1739. base(info, context) {
  1740. this.InitVars();
  1741. }
  1742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1744. public global::System.Data.DataColumn Наименование_товараColumn {
  1745. get {
  1746. return this.columnНаименование_товара;
  1747. }
  1748. }
  1749. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1750. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1751. public global::System.Data.DataColumn Цена_моделиColumn {
  1752. get {
  1753. return this.columnЦена_модели;
  1754. }
  1755. }
  1756. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1757. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1758. public global::System.Data.DataColumn Наименование_моделиColumn {
  1759. get {
  1760. return this.columnНаименование_модели;
  1761. }
  1762. }
  1763. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1764. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1765. public global::System.Data.DataColumn Код_моделиColumn {
  1766. get {
  1767. return this.columnКод_модели;
  1768. }
  1769. }
  1770. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1772. [global::System.ComponentModel.Browsable(false)]
  1773. public int Count {
  1774. get {
  1775. return this.Rows.Count;
  1776. }
  1777. }
  1778. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1779. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1780. public _Запрос_Модель___ТоварRow this[int index] {
  1781. get {
  1782. return ((_Запрос_Модель___ТоварRow)(this.Rows[index]));
  1783. }
  1784. }
  1785. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1786. public event _Запрос_Модель___ТоварRowChangeEventHandler _Запрос_Модель___ТоварRowChanging;
  1787. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1788. public event _Запрос_Модель___ТоварRowChangeEventHandler _Запрос_Модель___ТоварRowChanged;
  1789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1790. public event _Запрос_Модель___ТоварRowChangeEventHandler _Запрос_Модель___ТоварRowDeleting;
  1791. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1792. public event _Запрос_Модель___ТоварRowChangeEventHandler _Запрос_Модель___ТоварRowDeleted;
  1793. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1794. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1795. public void Add_Запрос_Модель___ТоварRow(_Запрос_Модель___ТоварRow row) {
  1796. this.Rows.Add(row);
  1797. }
  1798. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1800. public _Запрос_Модель___ТоварRow Add_Запрос_Модель___ТоварRow(string Наименование_товара, decimal Цена_модели, string Наименование_модели, long Код_модели) {
  1801. _Запрос_Модель___ТоварRow row_Запрос_Модель___ТоварRow = ((_Запрос_Модель___ТоварRow)(this.NewRow()));
  1802. object[] columnValuesArray = new object[] {
  1803. Наименование_товара,
  1804. Цена_модели,
  1805. Наименование_модели,
  1806. Код_модели};
  1807. row_Запрос_Модель___ТоварRow.ItemArray = columnValuesArray;
  1808. this.Rows.Add(row_Запрос_Модель___ТоварRow);
  1809. return row_Запрос_Модель___ТоварRow;
  1810. }
  1811. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1812. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1813. public override global::System.Data.DataTable Clone() {
  1814. _Запрос_Модель___ТоварDataTable cln = ((_Запрос_Модель___ТоварDataTable)(base.Clone()));
  1815. cln.InitVars();
  1816. return cln;
  1817. }
  1818. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1819. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1820. protected override global::System.Data.DataTable CreateInstance() {
  1821. return new _Запрос_Модель___ТоварDataTable();
  1822. }
  1823. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1824. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1825. internal void InitVars() {
  1826. this.columnНаименование_товара = base.Columns["Наименование товара"];
  1827. this.columnЦена_модели = base.Columns["Цена модели"];
  1828. this.columnНаименование_модели = base.Columns["Наименование модели"];
  1829. this.columnКод_модели = base.Columns["Код модели"];
  1830. }
  1831. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1832. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1833. private void InitClass() {
  1834. this.columnНаименование_товара = new global::System.Data.DataColumn("Наименование товара", typeof(string), null, global::System.Data.MappingType.Element);
  1835. base.Columns.Add(this.columnНаименование_товара);
  1836. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  1837. base.Columns.Add(this.columnЦена_модели);
  1838. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  1839. base.Columns.Add(this.columnНаименование_модели);
  1840. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  1841. base.Columns.Add(this.columnКод_модели);
  1842. this.columnНаименование_товара.MaxLength = 50;
  1843. this.columnНаименование_модели.MaxLength = 50;
  1844. this.ExtendedProperties.Add("Generator_TableVarName", "_tableЗапрос_Модель___Товар");
  1845. this.ExtendedProperties.Add("Generator_UserTableName", "Запрос Модель + Товар");
  1846. }
  1847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1849. public _Запрос_Модель___ТоварRow New_Запрос_Модель___ТоварRow() {
  1850. return ((_Запрос_Модель___ТоварRow)(this.NewRow()));
  1851. }
  1852. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1853. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1854. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1855. return new _Запрос_Модель___ТоварRow(builder);
  1856. }
  1857. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1858. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1859. protected override global::System.Type GetRowType() {
  1860. return typeof(_Запрос_Модель___ТоварRow);
  1861. }
  1862. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1863. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1864. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1865. base.OnRowChanged(e);
  1866. if ((this._Запрос_Модель___ТоварRowChanged != null)) {
  1867. this._Запрос_Модель___ТоварRowChanged(this, new _Запрос_Модель___ТоварRowChangeEvent(((_Запрос_Модель___ТоварRow)(e.Row)), e.Action));
  1868. }
  1869. }
  1870. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1871. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1872. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1873. base.OnRowChanging(e);
  1874. if ((this._Запрос_Модель___ТоварRowChanging != null)) {
  1875. this._Запрос_Модель___ТоварRowChanging(this, new _Запрос_Модель___ТоварRowChangeEvent(((_Запрос_Модель___ТоварRow)(e.Row)), e.Action));
  1876. }
  1877. }
  1878. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1879. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1880. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1881. base.OnRowDeleted(e);
  1882. if ((this._Запрос_Модель___ТоварRowDeleted != null)) {
  1883. this._Запрос_Модель___ТоварRowDeleted(this, new _Запрос_Модель___ТоварRowChangeEvent(((_Запрос_Модель___ТоварRow)(e.Row)), e.Action));
  1884. }
  1885. }
  1886. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1887. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1888. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1889. base.OnRowDeleting(e);
  1890. if ((this._Запрос_Модель___ТоварRowDeleting != null)) {
  1891. this._Запрос_Модель___ТоварRowDeleting(this, new _Запрос_Модель___ТоварRowChangeEvent(((_Запрос_Модель___ТоварRow)(e.Row)), e.Action));
  1892. }
  1893. }
  1894. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1895. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1896. public void Remove_Запрос_Модель___ТоварRow(_Запрос_Модель___ТоварRow row) {
  1897. this.Rows.Remove(row);
  1898. }
  1899. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1900. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1901. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1902. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1903. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1904. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  1905. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1906. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1907. any1.MinOccurs = new decimal(0);
  1908. any1.MaxOccurs = decimal.MaxValue;
  1909. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1910. sequence.Items.Add(any1);
  1911. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1912. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1913. any2.MinOccurs = new decimal(1);
  1914. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1915. sequence.Items.Add(any2);
  1916. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1917. attribute1.Name = "namespace";
  1918. attribute1.FixedValue = ds.Namespace;
  1919. type.Attributes.Add(attribute1);
  1920. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1921. attribute2.Name = "tableTypeName";
  1922. attribute2.FixedValue = "_Запрос_Модель___ТоварDataTable";
  1923. type.Attributes.Add(attribute2);
  1924. type.Particle = sequence;
  1925. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1926. if (xs.Contains(dsSchema.TargetNamespace)) {
  1927. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1928. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1929. try {
  1930. global::System.Xml.Schema.XmlSchema schema = null;
  1931. dsSchema.Write(s1);
  1932. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1933. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1934. s2.SetLength(0);
  1935. schema.Write(s2);
  1936. if ((s1.Length == s2.Length)) {
  1937. s1.Position = 0;
  1938. s2.Position = 0;
  1939. for (; ((s1.Position != s1.Length)
  1940. && (s1.ReadByte() == s2.ReadByte())); ) {
  1941. ;
  1942. }
  1943. if ((s1.Position == s1.Length)) {
  1944. return type;
  1945. }
  1946. }
  1947. }
  1948. }
  1949. finally {
  1950. if ((s1 != null)) {
  1951. s1.Close();
  1952. }
  1953. if ((s2 != null)) {
  1954. s2.Close();
  1955. }
  1956. }
  1957. }
  1958. xs.Add(dsSchema);
  1959. return type;
  1960. }
  1961. }
  1962. /// <summary>
  1963. ///Represents the strongly named DataTable class.
  1964. ///</summary>
  1965. [global::System.Serializable()]
  1966. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1967. public partial class Фильтр_АддидасDataTable : global::System.Data.TypedTableBase<Фильтр_АддидасRow> {
  1968. private global::System.Data.DataColumn columnКод_модели;
  1969. private global::System.Data.DataColumn columnНаименование_модели;
  1970. private global::System.Data.DataColumn columnЦена_модели;
  1971. private global::System.Data.DataColumn columnНаименование_товара;
  1972. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1973. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1974. public Фильтр_АддидасDataTable() {
  1975. this.TableName = "Фильтр Аддидас";
  1976. this.BeginInit();
  1977. this.InitClass();
  1978. this.EndInit();
  1979. }
  1980. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1981. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1982. internal Фильтр_АддидасDataTable(global::System.Data.DataTable table) {
  1983. this.TableName = table.TableName;
  1984. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1985. this.CaseSensitive = table.CaseSensitive;
  1986. }
  1987. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1988. this.Locale = table.Locale;
  1989. }
  1990. if ((table.Namespace != table.DataSet.Namespace)) {
  1991. this.Namespace = table.Namespace;
  1992. }
  1993. this.Prefix = table.Prefix;
  1994. this.MinimumCapacity = table.MinimumCapacity;
  1995. }
  1996. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1997. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1998. protected Фильтр_АддидасDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1999. base(info, context) {
  2000. this.InitVars();
  2001. }
  2002. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2003. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2004. public global::System.Data.DataColumn Код_моделиColumn {
  2005. get {
  2006. return this.columnКод_модели;
  2007. }
  2008. }
  2009. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2010. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2011. public global::System.Data.DataColumn Наименование_моделиColumn {
  2012. get {
  2013. return this.columnНаименование_модели;
  2014. }
  2015. }
  2016. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2017. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2018. public global::System.Data.DataColumn Цена_моделиColumn {
  2019. get {
  2020. return this.columnЦена_модели;
  2021. }
  2022. }
  2023. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2024. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2025. public global::System.Data.DataColumn Наименование_товараColumn {
  2026. get {
  2027. return this.columnНаименование_товара;
  2028. }
  2029. }
  2030. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2031. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2032. [global::System.ComponentModel.Browsable(false)]
  2033. public int Count {
  2034. get {
  2035. return this.Rows.Count;
  2036. }
  2037. }
  2038. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2039. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2040. public Фильтр_АддидасRow this[int index] {
  2041. get {
  2042. return ((Фильтр_АддидасRow)(this.Rows[index]));
  2043. }
  2044. }
  2045. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2046. public event Фильтр_АддидасRowChangeEventHandler Фильтр_АддидасRowChanging;
  2047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2048. public event Фильтр_АддидасRowChangeEventHandler Фильтр_АддидасRowChanged;
  2049. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2050. public event Фильтр_АддидасRowChangeEventHandler Фильтр_АддидасRowDeleting;
  2051. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2052. public event Фильтр_АддидасRowChangeEventHandler Фильтр_АддидасRowDeleted;
  2053. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2054. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2055. public void AddФильтр_АддидасRow(Фильтр_АддидасRow row) {
  2056. this.Rows.Add(row);
  2057. }
  2058. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2059. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2060. public Фильтр_АддидасRow AddФильтр_АддидасRow(long Код_модели, string Наименование_модели, decimal Цена_модели, string Наименование_товара) {
  2061. Фильтр_АддидасRow rowФильтр_АддидасRow = ((Фильтр_АддидасRow)(this.NewRow()));
  2062. object[] columnValuesArray = new object[] {
  2063. Код_модели,
  2064. Наименование_модели,
  2065. Цена_модели,
  2066. Наименование_товара};
  2067. rowФильтр_АддидасRow.ItemArray = columnValuesArray;
  2068. this.Rows.Add(rowФильтр_АддидасRow);
  2069. return rowФильтр_АддидасRow;
  2070. }
  2071. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2072. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2073. public override global::System.Data.DataTable Clone() {
  2074. Фильтр_АддидасDataTable cln = ((Фильтр_АддидасDataTable)(base.Clone()));
  2075. cln.InitVars();
  2076. return cln;
  2077. }
  2078. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2079. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2080. protected override global::System.Data.DataTable CreateInstance() {
  2081. return new Фильтр_АддидасDataTable();
  2082. }
  2083. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2084. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2085. internal void InitVars() {
  2086. this.columnКод_модели = base.Columns["Код модели"];
  2087. this.columnНаименование_модели = base.Columns["Наименование модели"];
  2088. this.columnЦена_модели = base.Columns["Цена модели"];
  2089. this.columnНаименование_товара = base.Columns["Наименование товара"];
  2090. }
  2091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2092. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2093. private void InitClass() {
  2094. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  2095. base.Columns.Add(this.columnКод_модели);
  2096. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  2097. base.Columns.Add(this.columnНаименование_модели);
  2098. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  2099. base.Columns.Add(this.columnЦена_модели);
  2100. this.columnНаименование_товара = new global::System.Data.DataColumn("Наименование товара", typeof(string), null, global::System.Data.MappingType.Element);
  2101. base.Columns.Add(this.columnНаименование_товара);
  2102. this.columnНаименование_модели.MaxLength = 50;
  2103. this.columnНаименование_товара.MaxLength = 50;
  2104. }
  2105. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2106. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2107. public Фильтр_АддидасRow NewФильтр_АддидасRow() {
  2108. return ((Фильтр_АддидасRow)(this.NewRow()));
  2109. }
  2110. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2111. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2112. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2113. return new Фильтр_АддидасRow(builder);
  2114. }
  2115. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2116. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2117. protected override global::System.Type GetRowType() {
  2118. return typeof(Фильтр_АддидасRow);
  2119. }
  2120. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2121. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2122. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2123. base.OnRowChanged(e);
  2124. if ((this.Фильтр_АддидасRowChanged != null)) {
  2125. this.Фильтр_АддидасRowChanged(this, new Фильтр_АддидасRowChangeEvent(((Фильтр_АддидасRow)(e.Row)), e.Action));
  2126. }
  2127. }
  2128. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2129. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2130. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2131. base.OnRowChanging(e);
  2132. if ((this.Фильтр_АддидасRowChanging != null)) {
  2133. this.Фильтр_АддидасRowChanging(this, new Фильтр_АддидасRowChangeEvent(((Фильтр_АддидасRow)(e.Row)), e.Action));
  2134. }
  2135. }
  2136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2137. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2138. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2139. base.OnRowDeleted(e);
  2140. if ((this.Фильтр_АддидасRowDeleted != null)) {
  2141. this.Фильтр_АддидасRowDeleted(this, new Фильтр_АддидасRowChangeEvent(((Фильтр_АддидасRow)(e.Row)), e.Action));
  2142. }
  2143. }
  2144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2145. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2146. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2147. base.OnRowDeleting(e);
  2148. if ((this.Фильтр_АддидасRowDeleting != null)) {
  2149. this.Фильтр_АддидасRowDeleting(this, new Фильтр_АддидасRowChangeEvent(((Фильтр_АддидасRow)(e.Row)), e.Action));
  2150. }
  2151. }
  2152. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2153. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2154. public void RemoveФильтр_АддидасRow(Фильтр_АддидасRow row) {
  2155. this.Rows.Remove(row);
  2156. }
  2157. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2158. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2159. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2160. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2161. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2162. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  2163. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2164. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2165. any1.MinOccurs = new decimal(0);
  2166. any1.MaxOccurs = decimal.MaxValue;
  2167. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2168. sequence.Items.Add(any1);
  2169. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2170. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2171. any2.MinOccurs = new decimal(1);
  2172. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2173. sequence.Items.Add(any2);
  2174. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2175. attribute1.Name = "namespace";
  2176. attribute1.FixedValue = ds.Namespace;
  2177. type.Attributes.Add(attribute1);
  2178. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2179. attribute2.Name = "tableTypeName";
  2180. attribute2.FixedValue = "Фильтр_АддидасDataTable";
  2181. type.Attributes.Add(attribute2);
  2182. type.Particle = sequence;
  2183. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2184. if (xs.Contains(dsSchema.TargetNamespace)) {
  2185. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2186. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2187. try {
  2188. global::System.Xml.Schema.XmlSchema schema = null;
  2189. dsSchema.Write(s1);
  2190. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2191. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2192. s2.SetLength(0);
  2193. schema.Write(s2);
  2194. if ((s1.Length == s2.Length)) {
  2195. s1.Position = 0;
  2196. s2.Position = 0;
  2197. for (; ((s1.Position != s1.Length)
  2198. && (s1.ReadByte() == s2.ReadByte())); ) {
  2199. ;
  2200. }
  2201. if ((s1.Position == s1.Length)) {
  2202. return type;
  2203. }
  2204. }
  2205. }
  2206. }
  2207. finally {
  2208. if ((s1 != null)) {
  2209. s1.Close();
  2210. }
  2211. if ((s2 != null)) {
  2212. s2.Close();
  2213. }
  2214. }
  2215. }
  2216. xs.Add(dsSchema);
  2217. return type;
  2218. }
  2219. }
  2220. /// <summary>
  2221. ///Represents the strongly named DataTable class.
  2222. ///</summary>
  2223. [global::System.Serializable()]
  2224. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2225. public partial class Фильтр_диорDataTable : global::System.Data.TypedTableBase<Фильтр_диорRow> {
  2226. private global::System.Data.DataColumn columnНаименование_товара;
  2227. private global::System.Data.DataColumn columnЦена_модели;
  2228. private global::System.Data.DataColumn columnНаименование_модели;
  2229. private global::System.Data.DataColumn columnКод_модели;
  2230. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2231. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2232. public Фильтр_диорDataTable() {
  2233. this.TableName = "Фильтр диор";
  2234. this.BeginInit();
  2235. this.InitClass();
  2236. this.EndInit();
  2237. }
  2238. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2239. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2240. internal Фильтр_диорDataTable(global::System.Data.DataTable table) {
  2241. this.TableName = table.TableName;
  2242. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2243. this.CaseSensitive = table.CaseSensitive;
  2244. }
  2245. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2246. this.Locale = table.Locale;
  2247. }
  2248. if ((table.Namespace != table.DataSet.Namespace)) {
  2249. this.Namespace = table.Namespace;
  2250. }
  2251. this.Prefix = table.Prefix;
  2252. this.MinimumCapacity = table.MinimumCapacity;
  2253. }
  2254. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2255. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2256. protected Фильтр_диорDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2257. base(info, context) {
  2258. this.InitVars();
  2259. }
  2260. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2261. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2262. public global::System.Data.DataColumn Наименование_товараColumn {
  2263. get {
  2264. return this.columnНаименование_товара;
  2265. }
  2266. }
  2267. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2268. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2269. public global::System.Data.DataColumn Цена_моделиColumn {
  2270. get {
  2271. return this.columnЦена_модели;
  2272. }
  2273. }
  2274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2276. public global::System.Data.DataColumn Наименование_моделиColumn {
  2277. get {
  2278. return this.columnНаименование_модели;
  2279. }
  2280. }
  2281. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2282. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2283. public global::System.Data.DataColumn Код_моделиColumn {
  2284. get {
  2285. return this.columnКод_модели;
  2286. }
  2287. }
  2288. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2289. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2290. [global::System.ComponentModel.Browsable(false)]
  2291. public int Count {
  2292. get {
  2293. return this.Rows.Count;
  2294. }
  2295. }
  2296. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2297. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2298. public Фильтр_диорRow this[int index] {
  2299. get {
  2300. return ((Фильтр_диорRow)(this.Rows[index]));
  2301. }
  2302. }
  2303. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2304. public event Фильтр_диорRowChangeEventHandler Фильтр_диорRowChanging;
  2305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2306. public event Фильтр_диорRowChangeEventHandler Фильтр_диорRowChanged;
  2307. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2308. public event Фильтр_диорRowChangeEventHandler Фильтр_диорRowDeleting;
  2309. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2310. public event Фильтр_диорRowChangeEventHandler Фильтр_диорRowDeleted;
  2311. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2312. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2313. public void AddФильтр_диорRow(Фильтр_диорRow row) {
  2314. this.Rows.Add(row);
  2315. }
  2316. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2317. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2318. public Фильтр_диорRow AddФильтр_диорRow(string Наименование_товара, decimal Цена_модели, string Наименование_модели, long Код_модели) {
  2319. Фильтр_диорRow rowФильтр_диорRow = ((Фильтр_диорRow)(this.NewRow()));
  2320. object[] columnValuesArray = new object[] {
  2321. Наименование_товара,
  2322. Цена_модели,
  2323. Наименование_модели,
  2324. Код_модели};
  2325. rowФильтр_диорRow.ItemArray = columnValuesArray;
  2326. this.Rows.Add(rowФильтр_диорRow);
  2327. return rowФильтр_диорRow;
  2328. }
  2329. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2330. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2331. public override global::System.Data.DataTable Clone() {
  2332. Фильтр_диорDataTable cln = ((Фильтр_диорDataTable)(base.Clone()));
  2333. cln.InitVars();
  2334. return cln;
  2335. }
  2336. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2337. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2338. protected override global::System.Data.DataTable CreateInstance() {
  2339. return new Фильтр_диорDataTable();
  2340. }
  2341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2343. internal void InitVars() {
  2344. this.columnНаименование_товара = base.Columns["Наименование товара"];
  2345. this.columnЦена_модели = base.Columns["Цена модели"];
  2346. this.columnНаименование_модели = base.Columns["Наименование модели"];
  2347. this.columnКод_модели = base.Columns["Код модели"];
  2348. }
  2349. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2350. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2351. private void InitClass() {
  2352. this.columnНаименование_товара = new global::System.Data.DataColumn("Наименование товара", typeof(string), null, global::System.Data.MappingType.Element);
  2353. base.Columns.Add(this.columnНаименование_товара);
  2354. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  2355. base.Columns.Add(this.columnЦена_модели);
  2356. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  2357. base.Columns.Add(this.columnНаименование_модели);
  2358. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  2359. base.Columns.Add(this.columnКод_модели);
  2360. this.columnНаименование_товара.MaxLength = 50;
  2361. this.columnНаименование_модели.MaxLength = 50;
  2362. }
  2363. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2364. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2365. public Фильтр_диорRow NewФильтр_диорRow() {
  2366. return ((Фильтр_диорRow)(this.NewRow()));
  2367. }
  2368. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2369. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2370. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2371. return new Фильтр_диорRow(builder);
  2372. }
  2373. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2374. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2375. protected override global::System.Type GetRowType() {
  2376. return typeof(Фильтр_диорRow);
  2377. }
  2378. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2379. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2380. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2381. base.OnRowChanged(e);
  2382. if ((this.Фильтр_диорRowChanged != null)) {
  2383. this.Фильтр_диорRowChanged(this, new Фильтр_диорRowChangeEvent(((Фильтр_диорRow)(e.Row)), e.Action));
  2384. }
  2385. }
  2386. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2388. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2389. base.OnRowChanging(e);
  2390. if ((this.Фильтр_диорRowChanging != null)) {
  2391. this.Фильтр_диорRowChanging(this, new Фильтр_диорRowChangeEvent(((Фильтр_диорRow)(e.Row)), e.Action));
  2392. }
  2393. }
  2394. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2395. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2396. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2397. base.OnRowDeleted(e);
  2398. if ((this.Фильтр_диорRowDeleted != null)) {
  2399. this.Фильтр_диорRowDeleted(this, new Фильтр_диорRowChangeEvent(((Фильтр_диорRow)(e.Row)), e.Action));
  2400. }
  2401. }
  2402. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2403. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2404. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2405. base.OnRowDeleting(e);
  2406. if ((this.Фильтр_диорRowDeleting != null)) {
  2407. this.Фильтр_диорRowDeleting(this, new Фильтр_диорRowChangeEvent(((Фильтр_диорRow)(e.Row)), e.Action));
  2408. }
  2409. }
  2410. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2411. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2412. public void RemoveФильтр_диорRow(Фильтр_диорRow row) {
  2413. this.Rows.Remove(row);
  2414. }
  2415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2417. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2418. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2419. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2420. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  2421. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2422. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2423. any1.MinOccurs = new decimal(0);
  2424. any1.MaxOccurs = decimal.MaxValue;
  2425. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2426. sequence.Items.Add(any1);
  2427. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2428. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2429. any2.MinOccurs = new decimal(1);
  2430. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2431. sequence.Items.Add(any2);
  2432. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2433. attribute1.Name = "namespace";
  2434. attribute1.FixedValue = ds.Namespace;
  2435. type.Attributes.Add(attribute1);
  2436. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2437. attribute2.Name = "tableTypeName";
  2438. attribute2.FixedValue = "Фильтр_диорDataTable";
  2439. type.Attributes.Add(attribute2);
  2440. type.Particle = sequence;
  2441. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2442. if (xs.Contains(dsSchema.TargetNamespace)) {
  2443. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2444. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2445. try {
  2446. global::System.Xml.Schema.XmlSchema schema = null;
  2447. dsSchema.Write(s1);
  2448. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2449. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2450. s2.SetLength(0);
  2451. schema.Write(s2);
  2452. if ((s1.Length == s2.Length)) {
  2453. s1.Position = 0;
  2454. s2.Position = 0;
  2455. for (; ((s1.Position != s1.Length)
  2456. && (s1.ReadByte() == s2.ReadByte())); ) {
  2457. ;
  2458. }
  2459. if ((s1.Position == s1.Length)) {
  2460. return type;
  2461. }
  2462. }
  2463. }
  2464. }
  2465. finally {
  2466. if ((s1 != null)) {
  2467. s1.Close();
  2468. }
  2469. if ((s2 != null)) {
  2470. s2.Close();
  2471. }
  2472. }
  2473. }
  2474. xs.Add(dsSchema);
  2475. return type;
  2476. }
  2477. }
  2478. /// <summary>
  2479. ///Represents the strongly named DataTable class.
  2480. ///</summary>
  2481. [global::System.Serializable()]
  2482. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2483. public partial class _Фильтр_кол_ва_больше_15DataTable : global::System.Data.TypedTableBase<_Фильтр_кол_ва_больше_15Row> {
  2484. private global::System.Data.DataColumn columnКод_поступления;
  2485. private global::System.Data.DataColumn columnДата_поступления;
  2486. private global::System.Data.DataColumn columnКод_модели;
  2487. private global::System.Data.DataColumn columnМодели_товара;
  2488. private global::System.Data.DataColumn columnКоличество;
  2489. private global::System.Data.DataColumn columnКто_принял_товар;
  2490. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2491. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2492. public _Фильтр_кол_ва_больше_15DataTable() {
  2493. this.TableName = "Фильтр кол-ва больше 15";
  2494. this.BeginInit();
  2495. this.InitClass();
  2496. this.EndInit();
  2497. }
  2498. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2499. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2500. internal _Фильтр_кол_ва_больше_15DataTable(global::System.Data.DataTable table) {
  2501. this.TableName = table.TableName;
  2502. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2503. this.CaseSensitive = table.CaseSensitive;
  2504. }
  2505. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2506. this.Locale = table.Locale;
  2507. }
  2508. if ((table.Namespace != table.DataSet.Namespace)) {
  2509. this.Namespace = table.Namespace;
  2510. }
  2511. this.Prefix = table.Prefix;
  2512. this.MinimumCapacity = table.MinimumCapacity;
  2513. }
  2514. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2515. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2516. protected _Фильтр_кол_ва_больше_15DataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2517. base(info, context) {
  2518. this.InitVars();
  2519. }
  2520. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2521. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2522. public global::System.Data.DataColumn Код_поступленияColumn {
  2523. get {
  2524. return this.columnКод_поступления;
  2525. }
  2526. }
  2527. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2528. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2529. public global::System.Data.DataColumn Дата_поступленияColumn {
  2530. get {
  2531. return this.columnДата_поступления;
  2532. }
  2533. }
  2534. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2535. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2536. public global::System.Data.DataColumn Код_моделиColumn {
  2537. get {
  2538. return this.columnКод_модели;
  2539. }
  2540. }
  2541. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2542. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2543. public global::System.Data.DataColumn Модели_товараColumn {
  2544. get {
  2545. return this.columnМодели_товара;
  2546. }
  2547. }
  2548. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2549. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2550. public global::System.Data.DataColumn КоличествоColumn {
  2551. get {
  2552. return this.columnКоличество;
  2553. }
  2554. }
  2555. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2556. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2557. public global::System.Data.DataColumn Кто_принял_товарColumn {
  2558. get {
  2559. return this.columnКто_принял_товар;
  2560. }
  2561. }
  2562. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2563. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2564. [global::System.ComponentModel.Browsable(false)]
  2565. public int Count {
  2566. get {
  2567. return this.Rows.Count;
  2568. }
  2569. }
  2570. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2571. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2572. public _Фильтр_кол_ва_больше_15Row this[int index] {
  2573. get {
  2574. return ((_Фильтр_кол_ва_больше_15Row)(this.Rows[index]));
  2575. }
  2576. }
  2577. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2578. public event _Фильтр_кол_ва_больше_15RowChangeEventHandler _Фильтр_кол_ва_больше_15RowChanging;
  2579. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2580. public event _Фильтр_кол_ва_больше_15RowChangeEventHandler _Фильтр_кол_ва_больше_15RowChanged;
  2581. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2582. public event _Фильтр_кол_ва_больше_15RowChangeEventHandler _Фильтр_кол_ва_больше_15RowDeleting;
  2583. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2584. public event _Фильтр_кол_ва_больше_15RowChangeEventHandler _Фильтр_кол_ва_больше_15RowDeleted;
  2585. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2586. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2587. public void Add_Фильтр_кол_ва_больше_15Row(_Фильтр_кол_ва_больше_15Row row) {
  2588. this.Rows.Add(row);
  2589. }
  2590. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2591. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2592. public _Фильтр_кол_ва_больше_15Row Add_Фильтр_кол_ва_больше_15Row(long Код_поступления, System.DateTime Дата_поступления, long Код_модели, string Модели_товара, int Количество, string Кто_принял_товар) {
  2593. _Фильтр_кол_ва_больше_15Row row_Фильтр_кол_ва_больше_15Row = ((_Фильтр_кол_ва_больше_15Row)(this.NewRow()));
  2594. object[] columnValuesArray = new object[] {
  2595. Код_поступления,
  2596. Дата_поступления,
  2597. Код_модели,
  2598. Модели_товара,
  2599. Количество,
  2600. Кто_принял_товар};
  2601. row_Фильтр_кол_ва_больше_15Row.ItemArray = columnValuesArray;
  2602. this.Rows.Add(row_Фильтр_кол_ва_больше_15Row);
  2603. return row_Фильтр_кол_ва_больше_15Row;
  2604. }
  2605. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2606. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2607. public override global::System.Data.DataTable Clone() {
  2608. _Фильтр_кол_ва_больше_15DataTable cln = ((_Фильтр_кол_ва_больше_15DataTable)(base.Clone()));
  2609. cln.InitVars();
  2610. return cln;
  2611. }
  2612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2614. protected override global::System.Data.DataTable CreateInstance() {
  2615. return new _Фильтр_кол_ва_больше_15DataTable();
  2616. }
  2617. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2618. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2619. internal void InitVars() {
  2620. this.columnКод_поступления = base.Columns["Код поступления"];
  2621. this.columnДата_поступления = base.Columns["Дата поступления"];
  2622. this.columnКод_модели = base.Columns["Код модели"];
  2623. this.columnМодели_товара = base.Columns["Модели товара"];
  2624. this.columnКоличество = base.Columns["Количество"];
  2625. this.columnКто_принял_товар = base.Columns["Кто принял товар"];
  2626. }
  2627. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2628. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2629. private void InitClass() {
  2630. this.columnКод_поступления = new global::System.Data.DataColumn("Код поступления", typeof(long), null, global::System.Data.MappingType.Element);
  2631. base.Columns.Add(this.columnКод_поступления);
  2632. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2633. base.Columns.Add(this.columnДата_поступления);
  2634. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  2635. base.Columns.Add(this.columnКод_модели);
  2636. this.columnМодели_товара = new global::System.Data.DataColumn("Модели товара", typeof(string), null, global::System.Data.MappingType.Element);
  2637. base.Columns.Add(this.columnМодели_товара);
  2638. this.columnКоличество = new global::System.Data.DataColumn("Количество", typeof(int), null, global::System.Data.MappingType.Element);
  2639. base.Columns.Add(this.columnКоличество);
  2640. this.columnКто_принял_товар = new global::System.Data.DataColumn("Кто принял товар", typeof(string), null, global::System.Data.MappingType.Element);
  2641. base.Columns.Add(this.columnКто_принял_товар);
  2642. this.columnМодели_товара.MaxLength = 50;
  2643. this.columnКто_принял_товар.MaxLength = 50;
  2644. this.ExtendedProperties.Add("Generator_TableVarName", "_tableФильтр_кол_ва_больше_15");
  2645. this.ExtendedProperties.Add("Generator_UserTableName", "Фильтр кол-ва больше 15");
  2646. }
  2647. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2648. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2649. public _Фильтр_кол_ва_больше_15Row New_Фильтр_кол_ва_больше_15Row() {
  2650. return ((_Фильтр_кол_ва_больше_15Row)(this.NewRow()));
  2651. }
  2652. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2653. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2654. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2655. return new _Фильтр_кол_ва_больше_15Row(builder);
  2656. }
  2657. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2658. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2659. protected override global::System.Type GetRowType() {
  2660. return typeof(_Фильтр_кол_ва_больше_15Row);
  2661. }
  2662. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2663. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2664. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2665. base.OnRowChanged(e);
  2666. if ((this._Фильтр_кол_ва_больше_15RowChanged != null)) {
  2667. this._Фильтр_кол_ва_больше_15RowChanged(this, new _Фильтр_кол_ва_больше_15RowChangeEvent(((_Фильтр_кол_ва_больше_15Row)(e.Row)), e.Action));
  2668. }
  2669. }
  2670. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2671. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2672. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2673. base.OnRowChanging(e);
  2674. if ((this._Фильтр_кол_ва_больше_15RowChanging != null)) {
  2675. this._Фильтр_кол_ва_больше_15RowChanging(this, new _Фильтр_кол_ва_больше_15RowChangeEvent(((_Фильтр_кол_ва_больше_15Row)(e.Row)), e.Action));
  2676. }
  2677. }
  2678. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2679. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2680. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2681. base.OnRowDeleted(e);
  2682. if ((this._Фильтр_кол_ва_больше_15RowDeleted != null)) {
  2683. this._Фильтр_кол_ва_больше_15RowDeleted(this, new _Фильтр_кол_ва_больше_15RowChangeEvent(((_Фильтр_кол_ва_больше_15Row)(e.Row)), e.Action));
  2684. }
  2685. }
  2686. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2687. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2688. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2689. base.OnRowDeleting(e);
  2690. if ((this._Фильтр_кол_ва_больше_15RowDeleting != null)) {
  2691. this._Фильтр_кол_ва_больше_15RowDeleting(this, new _Фильтр_кол_ва_больше_15RowChangeEvent(((_Фильтр_кол_ва_больше_15Row)(e.Row)), e.Action));
  2692. }
  2693. }
  2694. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2695. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2696. public void Remove_Фильтр_кол_ва_больше_15Row(_Фильтр_кол_ва_больше_15Row row) {
  2697. this.Rows.Remove(row);
  2698. }
  2699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2701. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2702. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2703. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2704. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  2705. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2706. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2707. any1.MinOccurs = new decimal(0);
  2708. any1.MaxOccurs = decimal.MaxValue;
  2709. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2710. sequence.Items.Add(any1);
  2711. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2712. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2713. any2.MinOccurs = new decimal(1);
  2714. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2715. sequence.Items.Add(any2);
  2716. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2717. attribute1.Name = "namespace";
  2718. attribute1.FixedValue = ds.Namespace;
  2719. type.Attributes.Add(attribute1);
  2720. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2721. attribute2.Name = "tableTypeName";
  2722. attribute2.FixedValue = "_Фильтр_кол_ва_больше_15DataTable";
  2723. type.Attributes.Add(attribute2);
  2724. type.Particle = sequence;
  2725. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2726. if (xs.Contains(dsSchema.TargetNamespace)) {
  2727. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2728. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2729. try {
  2730. global::System.Xml.Schema.XmlSchema schema = null;
  2731. dsSchema.Write(s1);
  2732. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2733. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2734. s2.SetLength(0);
  2735. schema.Write(s2);
  2736. if ((s1.Length == s2.Length)) {
  2737. s1.Position = 0;
  2738. s2.Position = 0;
  2739. for (; ((s1.Position != s1.Length)
  2740. && (s1.ReadByte() == s2.ReadByte())); ) {
  2741. ;
  2742. }
  2743. if ((s1.Position == s1.Length)) {
  2744. return type;
  2745. }
  2746. }
  2747. }
  2748. }
  2749. finally {
  2750. if ((s1 != null)) {
  2751. s1.Close();
  2752. }
  2753. if ((s2 != null)) {
  2754. s2.Close();
  2755. }
  2756. }
  2757. }
  2758. xs.Add(dsSchema);
  2759. return type;
  2760. }
  2761. }
  2762. /// <summary>
  2763. ///Represents the strongly named DataTable class.
  2764. ///</summary>
  2765. [global::System.Serializable()]
  2766. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2767. public partial class _Фильтр_кол_ва_меньше_15DataTable : global::System.Data.TypedTableBase<_Фильтр_кол_ва_меньше_15Row> {
  2768. private global::System.Data.DataColumn columnКто_принял_товар;
  2769. private global::System.Data.DataColumn columnКоличество;
  2770. private global::System.Data.DataColumn columnМодели_товара;
  2771. private global::System.Data.DataColumn columnДата_поступления;
  2772. private global::System.Data.DataColumn columnКод_модели;
  2773. private global::System.Data.DataColumn columnКод_поступления;
  2774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2775. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2776. public _Фильтр_кол_ва_меньше_15DataTable() {
  2777. this.TableName = "Фильтр кол-ва меньше 15";
  2778. this.BeginInit();
  2779. this.InitClass();
  2780. this.EndInit();
  2781. }
  2782. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2783. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2784. internal _Фильтр_кол_ва_меньше_15DataTable(global::System.Data.DataTable table) {
  2785. this.TableName = table.TableName;
  2786. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2787. this.CaseSensitive = table.CaseSensitive;
  2788. }
  2789. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2790. this.Locale = table.Locale;
  2791. }
  2792. if ((table.Namespace != table.DataSet.Namespace)) {
  2793. this.Namespace = table.Namespace;
  2794. }
  2795. this.Prefix = table.Prefix;
  2796. this.MinimumCapacity = table.MinimumCapacity;
  2797. }
  2798. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2800. protected _Фильтр_кол_ва_меньше_15DataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2801. base(info, context) {
  2802. this.InitVars();
  2803. }
  2804. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2805. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2806. public global::System.Data.DataColumn Кто_принял_товарColumn {
  2807. get {
  2808. return this.columnКто_принял_товар;
  2809. }
  2810. }
  2811. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2812. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2813. public global::System.Data.DataColumn КоличествоColumn {
  2814. get {
  2815. return this.columnКоличество;
  2816. }
  2817. }
  2818. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2819. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2820. public global::System.Data.DataColumn Модели_товараColumn {
  2821. get {
  2822. return this.columnМодели_товара;
  2823. }
  2824. }
  2825. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2826. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2827. public global::System.Data.DataColumn Дата_поступленияColumn {
  2828. get {
  2829. return this.columnДата_поступления;
  2830. }
  2831. }
  2832. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2833. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2834. public global::System.Data.DataColumn Код_моделиColumn {
  2835. get {
  2836. return this.columnКод_модели;
  2837. }
  2838. }
  2839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2841. public global::System.Data.DataColumn Код_поступленияColumn {
  2842. get {
  2843. return this.columnКод_поступления;
  2844. }
  2845. }
  2846. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2847. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2848. [global::System.ComponentModel.Browsable(false)]
  2849. public int Count {
  2850. get {
  2851. return this.Rows.Count;
  2852. }
  2853. }
  2854. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2855. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2856. public _Фильтр_кол_ва_меньше_15Row this[int index] {
  2857. get {
  2858. return ((_Фильтр_кол_ва_меньше_15Row)(this.Rows[index]));
  2859. }
  2860. }
  2861. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2862. public event _Фильтр_кол_ва_меньше_15RowChangeEventHandler _Фильтр_кол_ва_меньше_15RowChanging;
  2863. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2864. public event _Фильтр_кол_ва_меньше_15RowChangeEventHandler _Фильтр_кол_ва_меньше_15RowChanged;
  2865. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2866. public event _Фильтр_кол_ва_меньше_15RowChangeEventHandler _Фильтр_кол_ва_меньше_15RowDeleting;
  2867. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2868. public event _Фильтр_кол_ва_меньше_15RowChangeEventHandler _Фильтр_кол_ва_меньше_15RowDeleted;
  2869. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2870. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2871. public void Add_Фильтр_кол_ва_меньше_15Row(_Фильтр_кол_ва_меньше_15Row row) {
  2872. this.Rows.Add(row);
  2873. }
  2874. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2875. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2876. public _Фильтр_кол_ва_меньше_15Row Add_Фильтр_кол_ва_меньше_15Row(string Кто_принял_товар, int Количество, string Модели_товара, System.DateTime Дата_поступления, long Код_модели, long Код_поступления) {
  2877. _Фильтр_кол_ва_меньше_15Row row_Фильтр_кол_ва_меньше_15Row = ((_Фильтр_кол_ва_меньше_15Row)(this.NewRow()));
  2878. object[] columnValuesArray = new object[] {
  2879. Кто_принял_товар,
  2880. Количество,
  2881. Модели_товара,
  2882. Дата_поступления,
  2883. Код_модели,
  2884. Код_поступления};
  2885. row_Фильтр_кол_ва_меньше_15Row.ItemArray = columnValuesArray;
  2886. this.Rows.Add(row_Фильтр_кол_ва_меньше_15Row);
  2887. return row_Фильтр_кол_ва_меньше_15Row;
  2888. }
  2889. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2890. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2891. public override global::System.Data.DataTable Clone() {
  2892. _Фильтр_кол_ва_меньше_15DataTable cln = ((_Фильтр_кол_ва_меньше_15DataTable)(base.Clone()));
  2893. cln.InitVars();
  2894. return cln;
  2895. }
  2896. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2897. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2898. protected override global::System.Data.DataTable CreateInstance() {
  2899. return new _Фильтр_кол_ва_меньше_15DataTable();
  2900. }
  2901. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2902. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2903. internal void InitVars() {
  2904. this.columnКто_принял_товар = base.Columns["Кто принял товар"];
  2905. this.columnКоличество = base.Columns["Количество"];
  2906. this.columnМодели_товара = base.Columns["Модели товара"];
  2907. this.columnДата_поступления = base.Columns["Дата поступления"];
  2908. this.columnКод_модели = base.Columns["Код модели"];
  2909. this.columnКод_поступления = base.Columns["Код поступления"];
  2910. }
  2911. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2912. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2913. private void InitClass() {
  2914. this.columnКто_принял_товар = new global::System.Data.DataColumn("Кто принял товар", typeof(string), null, global::System.Data.MappingType.Element);
  2915. base.Columns.Add(this.columnКто_принял_товар);
  2916. this.columnКоличество = new global::System.Data.DataColumn("Количество", typeof(int), null, global::System.Data.MappingType.Element);
  2917. base.Columns.Add(this.columnКоличество);
  2918. this.columnМодели_товара = new global::System.Data.DataColumn("Модели товара", typeof(string), null, global::System.Data.MappingType.Element);
  2919. base.Columns.Add(this.columnМодели_товара);
  2920. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2921. base.Columns.Add(this.columnДата_поступления);
  2922. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  2923. base.Columns.Add(this.columnКод_модели);
  2924. this.columnКод_поступления = new global::System.Data.DataColumn("Код поступления", typeof(long), null, global::System.Data.MappingType.Element);
  2925. base.Columns.Add(this.columnКод_поступления);
  2926. this.columnКто_принял_товар.MaxLength = 50;
  2927. this.columnМодели_товара.MaxLength = 50;
  2928. this.ExtendedProperties.Add("Generator_TableVarName", "_tableФильтр_кол_ва_меньше_15");
  2929. this.ExtendedProperties.Add("Generator_UserTableName", "Фильтр кол-ва меньше 15");
  2930. }
  2931. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2932. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2933. public _Фильтр_кол_ва_меньше_15Row New_Фильтр_кол_ва_меньше_15Row() {
  2934. return ((_Фильтр_кол_ва_меньше_15Row)(this.NewRow()));
  2935. }
  2936. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2937. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2938. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2939. return new _Фильтр_кол_ва_меньше_15Row(builder);
  2940. }
  2941. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2942. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2943. protected override global::System.Type GetRowType() {
  2944. return typeof(_Фильтр_кол_ва_меньше_15Row);
  2945. }
  2946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2948. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2949. base.OnRowChanged(e);
  2950. if ((this._Фильтр_кол_ва_меньше_15RowChanged != null)) {
  2951. this._Фильтр_кол_ва_меньше_15RowChanged(this, new _Фильтр_кол_ва_меньше_15RowChangeEvent(((_Фильтр_кол_ва_меньше_15Row)(e.Row)), e.Action));
  2952. }
  2953. }
  2954. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2955. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2956. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2957. base.OnRowChanging(e);
  2958. if ((this._Фильтр_кол_ва_меньше_15RowChanging != null)) {
  2959. this._Фильтр_кол_ва_меньше_15RowChanging(this, new _Фильтр_кол_ва_меньше_15RowChangeEvent(((_Фильтр_кол_ва_меньше_15Row)(e.Row)), e.Action));
  2960. }
  2961. }
  2962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2964. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2965. base.OnRowDeleted(e);
  2966. if ((this._Фильтр_кол_ва_меньше_15RowDeleted != null)) {
  2967. this._Фильтр_кол_ва_меньше_15RowDeleted(this, new _Фильтр_кол_ва_меньше_15RowChangeEvent(((_Фильтр_кол_ва_меньше_15Row)(e.Row)), e.Action));
  2968. }
  2969. }
  2970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2972. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2973. base.OnRowDeleting(e);
  2974. if ((this._Фильтр_кол_ва_меньше_15RowDeleting != null)) {
  2975. this._Фильтр_кол_ва_меньше_15RowDeleting(this, new _Фильтр_кол_ва_меньше_15RowChangeEvent(((_Фильтр_кол_ва_меньше_15Row)(e.Row)), e.Action));
  2976. }
  2977. }
  2978. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2979. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2980. public void Remove_Фильтр_кол_ва_меньше_15Row(_Фильтр_кол_ва_меньше_15Row row) {
  2981. this.Rows.Remove(row);
  2982. }
  2983. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2984. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2985. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2986. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2987. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2988. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  2989. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2990. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2991. any1.MinOccurs = new decimal(0);
  2992. any1.MaxOccurs = decimal.MaxValue;
  2993. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2994. sequence.Items.Add(any1);
  2995. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2996. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2997. any2.MinOccurs = new decimal(1);
  2998. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2999. sequence.Items.Add(any2);
  3000. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3001. attribute1.Name = "namespace";
  3002. attribute1.FixedValue = ds.Namespace;
  3003. type.Attributes.Add(attribute1);
  3004. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3005. attribute2.Name = "tableTypeName";
  3006. attribute2.FixedValue = "_Фильтр_кол_ва_меньше_15DataTable";
  3007. type.Attributes.Add(attribute2);
  3008. type.Particle = sequence;
  3009. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3010. if (xs.Contains(dsSchema.TargetNamespace)) {
  3011. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3012. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3013. try {
  3014. global::System.Xml.Schema.XmlSchema schema = null;
  3015. dsSchema.Write(s1);
  3016. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3017. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3018. s2.SetLength(0);
  3019. schema.Write(s2);
  3020. if ((s1.Length == s2.Length)) {
  3021. s1.Position = 0;
  3022. s2.Position = 0;
  3023. for (; ((s1.Position != s1.Length)
  3024. && (s1.ReadByte() == s2.ReadByte())); ) {
  3025. ;
  3026. }
  3027. if ((s1.Position == s1.Length)) {
  3028. return type;
  3029. }
  3030. }
  3031. }
  3032. }
  3033. finally {
  3034. if ((s1 != null)) {
  3035. s1.Close();
  3036. }
  3037. if ((s2 != null)) {
  3038. s2.Close();
  3039. }
  3040. }
  3041. }
  3042. xs.Add(dsSchema);
  3043. return type;
  3044. }
  3045. }
  3046. /// <summary>
  3047. ///Represents the strongly named DataTable class.
  3048. ///</summary>
  3049. [global::System.Serializable()]
  3050. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3051. public partial class фильтр_найкDataTable : global::System.Data.TypedTableBase<фильтр_найкRow> {
  3052. private global::System.Data.DataColumn columnНаименование_товара;
  3053. private global::System.Data.DataColumn columnНаименование_модели;
  3054. private global::System.Data.DataColumn columnЦена_модели;
  3055. private global::System.Data.DataColumn columnКод_модели;
  3056. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3057. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3058. public фильтр_найкDataTable() {
  3059. this.TableName = "фильтр найк";
  3060. this.BeginInit();
  3061. this.InitClass();
  3062. this.EndInit();
  3063. }
  3064. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3065. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3066. internal фильтр_найкDataTable(global::System.Data.DataTable table) {
  3067. this.TableName = table.TableName;
  3068. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3069. this.CaseSensitive = table.CaseSensitive;
  3070. }
  3071. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3072. this.Locale = table.Locale;
  3073. }
  3074. if ((table.Namespace != table.DataSet.Namespace)) {
  3075. this.Namespace = table.Namespace;
  3076. }
  3077. this.Prefix = table.Prefix;
  3078. this.MinimumCapacity = table.MinimumCapacity;
  3079. }
  3080. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3081. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3082. protected фильтр_найкDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3083. base(info, context) {
  3084. this.InitVars();
  3085. }
  3086. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3087. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3088. public global::System.Data.DataColumn Наименование_товараColumn {
  3089. get {
  3090. return this.columnНаименование_товара;
  3091. }
  3092. }
  3093. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3094. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3095. public global::System.Data.DataColumn Наименование_моделиColumn {
  3096. get {
  3097. return this.columnНаименование_модели;
  3098. }
  3099. }
  3100. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3101. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3102. public global::System.Data.DataColumn Цена_моделиColumn {
  3103. get {
  3104. return this.columnЦена_модели;
  3105. }
  3106. }
  3107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3108. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3109. public global::System.Data.DataColumn Код_моделиColumn {
  3110. get {
  3111. return this.columnКод_модели;
  3112. }
  3113. }
  3114. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3115. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3116. [global::System.ComponentModel.Browsable(false)]
  3117. public int Count {
  3118. get {
  3119. return this.Rows.Count;
  3120. }
  3121. }
  3122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3123. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3124. public фильтр_найкRow this[int index] {
  3125. get {
  3126. return ((фильтр_найкRow)(this.Rows[index]));
  3127. }
  3128. }
  3129. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3130. public event фильтр_найкRowChangeEventHandler фильтр_найкRowChanging;
  3131. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3132. public event фильтр_найкRowChangeEventHandler фильтр_найкRowChanged;
  3133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3134. public event фильтр_найкRowChangeEventHandler фильтр_найкRowDeleting;
  3135. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3136. public event фильтр_найкRowChangeEventHandler фильтр_найкRowDeleted;
  3137. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3138. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3139. public void Addфильтр_найкRow(фильтр_найкRow row) {
  3140. this.Rows.Add(row);
  3141. }
  3142. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3143. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3144. public фильтр_найкRow Addфильтр_найкRow(string Наименование_товара, string Наименование_модели, decimal Цена_модели, long Код_модели) {
  3145. фильтр_найкRow rowфильтр_найкRow = ((фильтр_найкRow)(this.NewRow()));
  3146. object[] columnValuesArray = new object[] {
  3147. Наименование_товара,
  3148. Наименование_модели,
  3149. Цена_модели,
  3150. Код_модели};
  3151. rowфильтр_найкRow.ItemArray = columnValuesArray;
  3152. this.Rows.Add(rowфильтр_найкRow);
  3153. return rowфильтр_найкRow;
  3154. }
  3155. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3156. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3157. public override global::System.Data.DataTable Clone() {
  3158. фильтр_найкDataTable cln = ((фильтр_найкDataTable)(base.Clone()));
  3159. cln.InitVars();
  3160. return cln;
  3161. }
  3162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3164. protected override global::System.Data.DataTable CreateInstance() {
  3165. return new фильтр_найкDataTable();
  3166. }
  3167. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3168. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3169. internal void InitVars() {
  3170. this.columnНаименование_товара = base.Columns["Наименование товара"];
  3171. this.columnНаименование_модели = base.Columns["Наименование модели"];
  3172. this.columnЦена_модели = base.Columns["Цена модели"];
  3173. this.columnКод_модели = base.Columns["Код модели"];
  3174. }
  3175. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3176. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3177. private void InitClass() {
  3178. this.columnНаименование_товара = new global::System.Data.DataColumn("Наименование товара", typeof(string), null, global::System.Data.MappingType.Element);
  3179. base.Columns.Add(this.columnНаименование_товара);
  3180. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  3181. base.Columns.Add(this.columnНаименование_модели);
  3182. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  3183. base.Columns.Add(this.columnЦена_модели);
  3184. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  3185. base.Columns.Add(this.columnКод_модели);
  3186. this.columnНаименование_товара.MaxLength = 50;
  3187. this.columnНаименование_модели.MaxLength = 50;
  3188. }
  3189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3190. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3191. public фильтр_найкRow Newфильтр_найкRow() {
  3192. return ((фильтр_найкRow)(this.NewRow()));
  3193. }
  3194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3196. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3197. return new фильтр_найкRow(builder);
  3198. }
  3199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3200. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3201. protected override global::System.Type GetRowType() {
  3202. return typeof(фильтр_найкRow);
  3203. }
  3204. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3205. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3206. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3207. base.OnRowChanged(e);
  3208. if ((this.фильтр_найкRowChanged != null)) {
  3209. this.фильтр_найкRowChanged(this, new фильтр_найкRowChangeEvent(((фильтр_найкRow)(e.Row)), e.Action));
  3210. }
  3211. }
  3212. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3213. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3214. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3215. base.OnRowChanging(e);
  3216. if ((this.фильтр_найкRowChanging != null)) {
  3217. this.фильтр_найкRowChanging(this, new фильтр_найкRowChangeEvent(((фильтр_найкRow)(e.Row)), e.Action));
  3218. }
  3219. }
  3220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3222. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3223. base.OnRowDeleted(e);
  3224. if ((this.фильтр_найкRowDeleted != null)) {
  3225. this.фильтр_найкRowDeleted(this, new фильтр_найкRowChangeEvent(((фильтр_найкRow)(e.Row)), e.Action));
  3226. }
  3227. }
  3228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3230. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3231. base.OnRowDeleting(e);
  3232. if ((this.фильтр_найкRowDeleting != null)) {
  3233. this.фильтр_найкRowDeleting(this, new фильтр_найкRowChangeEvent(((фильтр_найкRow)(e.Row)), e.Action));
  3234. }
  3235. }
  3236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3237. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3238. public void Removeфильтр_найкRow(фильтр_найкRow row) {
  3239. this.Rows.Remove(row);
  3240. }
  3241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3243. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3244. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3245. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3246. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  3247. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3248. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3249. any1.MinOccurs = new decimal(0);
  3250. any1.MaxOccurs = decimal.MaxValue;
  3251. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3252. sequence.Items.Add(any1);
  3253. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3254. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3255. any2.MinOccurs = new decimal(1);
  3256. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3257. sequence.Items.Add(any2);
  3258. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3259. attribute1.Name = "namespace";
  3260. attribute1.FixedValue = ds.Namespace;
  3261. type.Attributes.Add(attribute1);
  3262. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3263. attribute2.Name = "tableTypeName";
  3264. attribute2.FixedValue = "фильтр_найкDataTable";
  3265. type.Attributes.Add(attribute2);
  3266. type.Particle = sequence;
  3267. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3268. if (xs.Contains(dsSchema.TargetNamespace)) {
  3269. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3270. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3271. try {
  3272. global::System.Xml.Schema.XmlSchema schema = null;
  3273. dsSchema.Write(s1);
  3274. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3275. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3276. s2.SetLength(0);
  3277. schema.Write(s2);
  3278. if ((s1.Length == s2.Length)) {
  3279. s1.Position = 0;
  3280. s2.Position = 0;
  3281. for (; ((s1.Position != s1.Length)
  3282. && (s1.ReadByte() == s2.ReadByte())); ) {
  3283. ;
  3284. }
  3285. if ((s1.Position == s1.Length)) {
  3286. return type;
  3287. }
  3288. }
  3289. }
  3290. }
  3291. finally {
  3292. if ((s1 != null)) {
  3293. s1.Close();
  3294. }
  3295. if ((s2 != null)) {
  3296. s2.Close();
  3297. }
  3298. }
  3299. }
  3300. xs.Add(dsSchema);
  3301. return type;
  3302. }
  3303. }
  3304. /// <summary>
  3305. ///Represents the strongly named DataTable class.
  3306. ///</summary>
  3307. [global::System.Serializable()]
  3308. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3309. public partial class фильтр_прадаDataTable : global::System.Data.TypedTableBase<фильтр_прадаRow> {
  3310. private global::System.Data.DataColumn columnНаименование_товара;
  3311. private global::System.Data.DataColumn columnЦена_модели;
  3312. private global::System.Data.DataColumn columnНаименование_модели;
  3313. private global::System.Data.DataColumn columnКод_модели;
  3314. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3315. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3316. public фильтр_прадаDataTable() {
  3317. this.TableName = "фильтр прада";
  3318. this.BeginInit();
  3319. this.InitClass();
  3320. this.EndInit();
  3321. }
  3322. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3323. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3324. internal фильтр_прадаDataTable(global::System.Data.DataTable table) {
  3325. this.TableName = table.TableName;
  3326. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3327. this.CaseSensitive = table.CaseSensitive;
  3328. }
  3329. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3330. this.Locale = table.Locale;
  3331. }
  3332. if ((table.Namespace != table.DataSet.Namespace)) {
  3333. this.Namespace = table.Namespace;
  3334. }
  3335. this.Prefix = table.Prefix;
  3336. this.MinimumCapacity = table.MinimumCapacity;
  3337. }
  3338. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3339. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3340. protected фильтр_прадаDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3341. base(info, context) {
  3342. this.InitVars();
  3343. }
  3344. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3345. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3346. public global::System.Data.DataColumn Наименование_товараColumn {
  3347. get {
  3348. return this.columnНаименование_товара;
  3349. }
  3350. }
  3351. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3352. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3353. public global::System.Data.DataColumn Цена_моделиColumn {
  3354. get {
  3355. return this.columnЦена_модели;
  3356. }
  3357. }
  3358. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3359. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3360. public global::System.Data.DataColumn Наименование_моделиColumn {
  3361. get {
  3362. return this.columnНаименование_модели;
  3363. }
  3364. }
  3365. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3366. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3367. public global::System.Data.DataColumn Код_моделиColumn {
  3368. get {
  3369. return this.columnКод_модели;
  3370. }
  3371. }
  3372. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3373. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3374. [global::System.ComponentModel.Browsable(false)]
  3375. public int Count {
  3376. get {
  3377. return this.Rows.Count;
  3378. }
  3379. }
  3380. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3381. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3382. public фильтр_прадаRow this[int index] {
  3383. get {
  3384. return ((фильтр_прадаRow)(this.Rows[index]));
  3385. }
  3386. }
  3387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3388. public event фильтр_прадаRowChangeEventHandler фильтр_прадаRowChanging;
  3389. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3390. public event фильтр_прадаRowChangeEventHandler фильтр_прадаRowChanged;
  3391. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3392. public event фильтр_прадаRowChangeEventHandler фильтр_прадаRowDeleting;
  3393. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3394. public event фильтр_прадаRowChangeEventHandler фильтр_прадаRowDeleted;
  3395. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3396. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3397. public void Addфильтр_прадаRow(фильтр_прадаRow row) {
  3398. this.Rows.Add(row);
  3399. }
  3400. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3401. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3402. public фильтр_прадаRow Addфильтр_прадаRow(string Наименование_товара, decimal Цена_модели, string Наименование_модели, long Код_модели) {
  3403. фильтр_прадаRow rowфильтр_прадаRow = ((фильтр_прадаRow)(this.NewRow()));
  3404. object[] columnValuesArray = new object[] {
  3405. Наименование_товара,
  3406. Цена_модели,
  3407. Наименование_модели,
  3408. Код_модели};
  3409. rowфильтр_прадаRow.ItemArray = columnValuesArray;
  3410. this.Rows.Add(rowфильтр_прадаRow);
  3411. return rowфильтр_прадаRow;
  3412. }
  3413. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3414. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3415. public override global::System.Data.DataTable Clone() {
  3416. фильтр_прадаDataTable cln = ((фильтр_прадаDataTable)(base.Clone()));
  3417. cln.InitVars();
  3418. return cln;
  3419. }
  3420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3422. protected override global::System.Data.DataTable CreateInstance() {
  3423. return new фильтр_прадаDataTable();
  3424. }
  3425. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3426. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3427. internal void InitVars() {
  3428. this.columnНаименование_товара = base.Columns["Наименование товара"];
  3429. this.columnЦена_модели = base.Columns["Цена модели"];
  3430. this.columnНаименование_модели = base.Columns["Наименование модели"];
  3431. this.columnКод_модели = base.Columns["Код модели"];
  3432. }
  3433. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3434. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3435. private void InitClass() {
  3436. this.columnНаименование_товара = new global::System.Data.DataColumn("Наименование товара", typeof(string), null, global::System.Data.MappingType.Element);
  3437. base.Columns.Add(this.columnНаименование_товара);
  3438. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  3439. base.Columns.Add(this.columnЦена_модели);
  3440. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  3441. base.Columns.Add(this.columnНаименование_модели);
  3442. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  3443. base.Columns.Add(this.columnКод_модели);
  3444. this.columnНаименование_товара.MaxLength = 50;
  3445. this.columnНаименование_модели.MaxLength = 50;
  3446. }
  3447. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3448. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3449. public фильтр_прадаRow Newфильтр_прадаRow() {
  3450. return ((фильтр_прадаRow)(this.NewRow()));
  3451. }
  3452. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3453. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3454. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3455. return new фильтр_прадаRow(builder);
  3456. }
  3457. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3458. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3459. protected override global::System.Type GetRowType() {
  3460. return typeof(фильтр_прадаRow);
  3461. }
  3462. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3463. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3464. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3465. base.OnRowChanged(e);
  3466. if ((this.фильтр_прадаRowChanged != null)) {
  3467. this.фильтр_прадаRowChanged(this, new фильтр_прадаRowChangeEvent(((фильтр_прадаRow)(e.Row)), e.Action));
  3468. }
  3469. }
  3470. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3471. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3472. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3473. base.OnRowChanging(e);
  3474. if ((this.фильтр_прадаRowChanging != null)) {
  3475. this.фильтр_прадаRowChanging(this, new фильтр_прадаRowChangeEvent(((фильтр_прадаRow)(e.Row)), e.Action));
  3476. }
  3477. }
  3478. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3479. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3480. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3481. base.OnRowDeleted(e);
  3482. if ((this.фильтр_прадаRowDeleted != null)) {
  3483. this.фильтр_прадаRowDeleted(this, new фильтр_прадаRowChangeEvent(((фильтр_прадаRow)(e.Row)), e.Action));
  3484. }
  3485. }
  3486. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3487. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3488. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3489. base.OnRowDeleting(e);
  3490. if ((this.фильтр_прадаRowDeleting != null)) {
  3491. this.фильтр_прадаRowDeleting(this, new фильтр_прадаRowChangeEvent(((фильтр_прадаRow)(e.Row)), e.Action));
  3492. }
  3493. }
  3494. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3495. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3496. public void Removeфильтр_прадаRow(фильтр_прадаRow row) {
  3497. this.Rows.Remove(row);
  3498. }
  3499. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3500. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3501. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3502. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3503. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3504. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  3505. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3506. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3507. any1.MinOccurs = new decimal(0);
  3508. any1.MaxOccurs = decimal.MaxValue;
  3509. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3510. sequence.Items.Add(any1);
  3511. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3512. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3513. any2.MinOccurs = new decimal(1);
  3514. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3515. sequence.Items.Add(any2);
  3516. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3517. attribute1.Name = "namespace";
  3518. attribute1.FixedValue = ds.Namespace;
  3519. type.Attributes.Add(attribute1);
  3520. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3521. attribute2.Name = "tableTypeName";
  3522. attribute2.FixedValue = "фильтр_прадаDataTable";
  3523. type.Attributes.Add(attribute2);
  3524. type.Particle = sequence;
  3525. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3526. if (xs.Contains(dsSchema.TargetNamespace)) {
  3527. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3528. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3529. try {
  3530. global::System.Xml.Schema.XmlSchema schema = null;
  3531. dsSchema.Write(s1);
  3532. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3533. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3534. s2.SetLength(0);
  3535. schema.Write(s2);
  3536. if ((s1.Length == s2.Length)) {
  3537. s1.Position = 0;
  3538. s2.Position = 0;
  3539. for (; ((s1.Position != s1.Length)
  3540. && (s1.ReadByte() == s2.ReadByte())); ) {
  3541. ;
  3542. }
  3543. if ((s1.Position == s1.Length)) {
  3544. return type;
  3545. }
  3546. }
  3547. }
  3548. }
  3549. finally {
  3550. if ((s1 != null)) {
  3551. s1.Close();
  3552. }
  3553. if ((s2 != null)) {
  3554. s2.Close();
  3555. }
  3556. }
  3557. }
  3558. xs.Add(dsSchema);
  3559. return type;
  3560. }
  3561. }
  3562. /// <summary>
  3563. ///Represents the strongly named DataTable class.
  3564. ///</summary>
  3565. [global::System.Serializable()]
  3566. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3567. public partial class Фильтр_цены_больше_20_кDataTable : global::System.Data.TypedTableBase<Фильтр_цены_больше_20_кRow> {
  3568. private global::System.Data.DataColumn columnКод_модели;
  3569. private global::System.Data.DataColumn columnНаименование_модели;
  3570. private global::System.Data.DataColumn columnЦена_модели;
  3571. private global::System.Data.DataColumn columnКод_товара;
  3572. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3573. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3574. public Фильтр_цены_больше_20_кDataTable() {
  3575. this.TableName = "Фильтр цены больше 20 к";
  3576. this.BeginInit();
  3577. this.InitClass();
  3578. this.EndInit();
  3579. }
  3580. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3581. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3582. internal Фильтр_цены_больше_20_кDataTable(global::System.Data.DataTable table) {
  3583. this.TableName = table.TableName;
  3584. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3585. this.CaseSensitive = table.CaseSensitive;
  3586. }
  3587. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3588. this.Locale = table.Locale;
  3589. }
  3590. if ((table.Namespace != table.DataSet.Namespace)) {
  3591. this.Namespace = table.Namespace;
  3592. }
  3593. this.Prefix = table.Prefix;
  3594. this.MinimumCapacity = table.MinimumCapacity;
  3595. }
  3596. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3597. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3598. protected Фильтр_цены_больше_20_кDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3599. base(info, context) {
  3600. this.InitVars();
  3601. }
  3602. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3603. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3604. public global::System.Data.DataColumn Код_моделиColumn {
  3605. get {
  3606. return this.columnКод_модели;
  3607. }
  3608. }
  3609. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3610. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3611. public global::System.Data.DataColumn Наименование_моделиColumn {
  3612. get {
  3613. return this.columnНаименование_модели;
  3614. }
  3615. }
  3616. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3617. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3618. public global::System.Data.DataColumn Цена_моделиColumn {
  3619. get {
  3620. return this.columnЦена_модели;
  3621. }
  3622. }
  3623. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3624. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3625. public global::System.Data.DataColumn Код_товараColumn {
  3626. get {
  3627. return this.columnКод_товара;
  3628. }
  3629. }
  3630. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3631. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3632. [global::System.ComponentModel.Browsable(false)]
  3633. public int Count {
  3634. get {
  3635. return this.Rows.Count;
  3636. }
  3637. }
  3638. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3639. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3640. public Фильтр_цены_больше_20_кRow this[int index] {
  3641. get {
  3642. return ((Фильтр_цены_больше_20_кRow)(this.Rows[index]));
  3643. }
  3644. }
  3645. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3646. public event Фильтр_цены_больше_20_кRowChangeEventHandler Фильтр_цены_больше_20_кRowChanging;
  3647. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3648. public event Фильтр_цены_больше_20_кRowChangeEventHandler Фильтр_цены_больше_20_кRowChanged;
  3649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3650. public event Фильтр_цены_больше_20_кRowChangeEventHandler Фильтр_цены_больше_20_кRowDeleting;
  3651. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3652. public event Фильтр_цены_больше_20_кRowChangeEventHandler Фильтр_цены_больше_20_кRowDeleted;
  3653. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3654. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3655. public void AddФильтр_цены_больше_20_кRow(Фильтр_цены_больше_20_кRow row) {
  3656. this.Rows.Add(row);
  3657. }
  3658. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3659. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3660. public Фильтр_цены_больше_20_кRow AddФильтр_цены_больше_20_кRow(long Код_модели, string Наименование_модели, decimal Цена_модели, long Код_товара) {
  3661. Фильтр_цены_больше_20_кRow rowФильтр_цены_больше_20_кRow = ((Фильтр_цены_больше_20_кRow)(this.NewRow()));
  3662. object[] columnValuesArray = new object[] {
  3663. Код_модели,
  3664. Наименование_модели,
  3665. Цена_модели,
  3666. Код_товара};
  3667. rowФильтр_цены_больше_20_кRow.ItemArray = columnValuesArray;
  3668. this.Rows.Add(rowФильтр_цены_больше_20_кRow);
  3669. return rowФильтр_цены_больше_20_кRow;
  3670. }
  3671. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3672. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3673. public override global::System.Data.DataTable Clone() {
  3674. Фильтр_цены_больше_20_кDataTable cln = ((Фильтр_цены_больше_20_кDataTable)(base.Clone()));
  3675. cln.InitVars();
  3676. return cln;
  3677. }
  3678. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3679. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3680. protected override global::System.Data.DataTable CreateInstance() {
  3681. return new Фильтр_цены_больше_20_кDataTable();
  3682. }
  3683. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3684. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3685. internal void InitVars() {
  3686. this.columnКод_модели = base.Columns["Код модели"];
  3687. this.columnНаименование_модели = base.Columns["Наименование модели"];
  3688. this.columnЦена_модели = base.Columns["Цена модели"];
  3689. this.columnКод_товара = base.Columns["Код товара"];
  3690. }
  3691. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3692. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3693. private void InitClass() {
  3694. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  3695. base.Columns.Add(this.columnКод_модели);
  3696. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  3697. base.Columns.Add(this.columnНаименование_модели);
  3698. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  3699. base.Columns.Add(this.columnЦена_модели);
  3700. this.columnКод_товара = new global::System.Data.DataColumn("Код товара", typeof(long), null, global::System.Data.MappingType.Element);
  3701. base.Columns.Add(this.columnКод_товара);
  3702. this.columnНаименование_модели.MaxLength = 50;
  3703. }
  3704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3706. public Фильтр_цены_больше_20_кRow NewФильтр_цены_больше_20_кRow() {
  3707. return ((Фильтр_цены_больше_20_кRow)(this.NewRow()));
  3708. }
  3709. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3710. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3711. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3712. return new Фильтр_цены_больше_20_кRow(builder);
  3713. }
  3714. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3715. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3716. protected override global::System.Type GetRowType() {
  3717. return typeof(Фильтр_цены_больше_20_кRow);
  3718. }
  3719. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3720. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3721. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3722. base.OnRowChanged(e);
  3723. if ((this.Фильтр_цены_больше_20_кRowChanged != null)) {
  3724. this.Фильтр_цены_больше_20_кRowChanged(this, new Фильтр_цены_больше_20_кRowChangeEvent(((Фильтр_цены_больше_20_кRow)(e.Row)), e.Action));
  3725. }
  3726. }
  3727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3729. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3730. base.OnRowChanging(e);
  3731. if ((this.Фильтр_цены_больше_20_кRowChanging != null)) {
  3732. this.Фильтр_цены_больше_20_кRowChanging(this, new Фильтр_цены_больше_20_кRowChangeEvent(((Фильтр_цены_больше_20_кRow)(e.Row)), e.Action));
  3733. }
  3734. }
  3735. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3736. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3737. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3738. base.OnRowDeleted(e);
  3739. if ((this.Фильтр_цены_больше_20_кRowDeleted != null)) {
  3740. this.Фильтр_цены_больше_20_кRowDeleted(this, new Фильтр_цены_больше_20_кRowChangeEvent(((Фильтр_цены_больше_20_кRow)(e.Row)), e.Action));
  3741. }
  3742. }
  3743. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3744. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3745. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3746. base.OnRowDeleting(e);
  3747. if ((this.Фильтр_цены_больше_20_кRowDeleting != null)) {
  3748. this.Фильтр_цены_больше_20_кRowDeleting(this, new Фильтр_цены_больше_20_кRowChangeEvent(((Фильтр_цены_больше_20_кRow)(e.Row)), e.Action));
  3749. }
  3750. }
  3751. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3752. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3753. public void RemoveФильтр_цены_больше_20_кRow(Фильтр_цены_больше_20_кRow row) {
  3754. this.Rows.Remove(row);
  3755. }
  3756. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3757. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3758. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3759. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3760. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3761. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  3762. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3763. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3764. any1.MinOccurs = new decimal(0);
  3765. any1.MaxOccurs = decimal.MaxValue;
  3766. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3767. sequence.Items.Add(any1);
  3768. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3769. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3770. any2.MinOccurs = new decimal(1);
  3771. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3772. sequence.Items.Add(any2);
  3773. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3774. attribute1.Name = "namespace";
  3775. attribute1.FixedValue = ds.Namespace;
  3776. type.Attributes.Add(attribute1);
  3777. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3778. attribute2.Name = "tableTypeName";
  3779. attribute2.FixedValue = "Фильтр_цены_больше_20_кDataTable";
  3780. type.Attributes.Add(attribute2);
  3781. type.Particle = sequence;
  3782. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3783. if (xs.Contains(dsSchema.TargetNamespace)) {
  3784. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3785. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3786. try {
  3787. global::System.Xml.Schema.XmlSchema schema = null;
  3788. dsSchema.Write(s1);
  3789. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3790. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3791. s2.SetLength(0);
  3792. schema.Write(s2);
  3793. if ((s1.Length == s2.Length)) {
  3794. s1.Position = 0;
  3795. s2.Position = 0;
  3796. for (; ((s1.Position != s1.Length)
  3797. && (s1.ReadByte() == s2.ReadByte())); ) {
  3798. ;
  3799. }
  3800. if ((s1.Position == s1.Length)) {
  3801. return type;
  3802. }
  3803. }
  3804. }
  3805. }
  3806. finally {
  3807. if ((s1 != null)) {
  3808. s1.Close();
  3809. }
  3810. if ((s2 != null)) {
  3811. s2.Close();
  3812. }
  3813. }
  3814. }
  3815. xs.Add(dsSchema);
  3816. return type;
  3817. }
  3818. }
  3819. /// <summary>
  3820. ///Represents the strongly named DataTable class.
  3821. ///</summary>
  3822. [global::System.Serializable()]
  3823. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3824. public partial class Фильтр_цены_меньше_20_кDataTable : global::System.Data.TypedTableBase<Фильтр_цены_меньше_20_кRow> {
  3825. private global::System.Data.DataColumn columnКод_модели;
  3826. private global::System.Data.DataColumn columnНаименование_модели;
  3827. private global::System.Data.DataColumn columnЦена_модели;
  3828. private global::System.Data.DataColumn columnКод_товара;
  3829. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3830. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3831. public Фильтр_цены_меньше_20_кDataTable() {
  3832. this.TableName = "Фильтр цены меньше 20 к";
  3833. this.BeginInit();
  3834. this.InitClass();
  3835. this.EndInit();
  3836. }
  3837. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3838. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3839. internal Фильтр_цены_меньше_20_кDataTable(global::System.Data.DataTable table) {
  3840. this.TableName = table.TableName;
  3841. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3842. this.CaseSensitive = table.CaseSensitive;
  3843. }
  3844. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3845. this.Locale = table.Locale;
  3846. }
  3847. if ((table.Namespace != table.DataSet.Namespace)) {
  3848. this.Namespace = table.Namespace;
  3849. }
  3850. this.Prefix = table.Prefix;
  3851. this.MinimumCapacity = table.MinimumCapacity;
  3852. }
  3853. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3854. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3855. protected Фильтр_цены_меньше_20_кDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3856. base(info, context) {
  3857. this.InitVars();
  3858. }
  3859. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3860. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3861. public global::System.Data.DataColumn Код_моделиColumn {
  3862. get {
  3863. return this.columnКод_модели;
  3864. }
  3865. }
  3866. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3867. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3868. public global::System.Data.DataColumn Наименование_моделиColumn {
  3869. get {
  3870. return this.columnНаименование_модели;
  3871. }
  3872. }
  3873. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3874. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3875. public global::System.Data.DataColumn Цена_моделиColumn {
  3876. get {
  3877. return this.columnЦена_модели;
  3878. }
  3879. }
  3880. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3881. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3882. public global::System.Data.DataColumn Код_товараColumn {
  3883. get {
  3884. return this.columnКод_товара;
  3885. }
  3886. }
  3887. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3888. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3889. [global::System.ComponentModel.Browsable(false)]
  3890. public int Count {
  3891. get {
  3892. return this.Rows.Count;
  3893. }
  3894. }
  3895. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3896. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3897. public Фильтр_цены_меньше_20_кRow this[int index] {
  3898. get {
  3899. return ((Фильтр_цены_меньше_20_кRow)(this.Rows[index]));
  3900. }
  3901. }
  3902. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3903. public event Фильтр_цены_меньше_20_кRowChangeEventHandler Фильтр_цены_меньше_20_кRowChanging;
  3904. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3905. public event Фильтр_цены_меньше_20_кRowChangeEventHandler Фильтр_цены_меньше_20_кRowChanged;
  3906. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3907. public event Фильтр_цены_меньше_20_кRowChangeEventHandler Фильтр_цены_меньше_20_кRowDeleting;
  3908. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3909. public event Фильтр_цены_меньше_20_кRowChangeEventHandler Фильтр_цены_меньше_20_кRowDeleted;
  3910. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3911. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3912. public void AddФильтр_цены_меньше_20_кRow(Фильтр_цены_меньше_20_кRow row) {
  3913. this.Rows.Add(row);
  3914. }
  3915. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3916. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3917. public Фильтр_цены_меньше_20_кRow AddФильтр_цены_меньше_20_кRow(long Код_модели, string Наименование_модели, decimal Цена_модели, long Код_товара) {
  3918. Фильтр_цены_меньше_20_кRow rowФильтр_цены_меньше_20_кRow = ((Фильтр_цены_меньше_20_кRow)(this.NewRow()));
  3919. object[] columnValuesArray = new object[] {
  3920. Код_модели,
  3921. Наименование_модели,
  3922. Цена_модели,
  3923. Код_товара};
  3924. rowФильтр_цены_меньше_20_кRow.ItemArray = columnValuesArray;
  3925. this.Rows.Add(rowФильтр_цены_меньше_20_кRow);
  3926. return rowФильтр_цены_меньше_20_кRow;
  3927. }
  3928. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3929. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3930. public override global::System.Data.DataTable Clone() {
  3931. Фильтр_цены_меньше_20_кDataTable cln = ((Фильтр_цены_меньше_20_кDataTable)(base.Clone()));
  3932. cln.InitVars();
  3933. return cln;
  3934. }
  3935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3937. protected override global::System.Data.DataTable CreateInstance() {
  3938. return new Фильтр_цены_меньше_20_кDataTable();
  3939. }
  3940. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3941. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3942. internal void InitVars() {
  3943. this.columnКод_модели = base.Columns["Код модели"];
  3944. this.columnНаименование_модели = base.Columns["Наименование модели"];
  3945. this.columnЦена_модели = base.Columns["Цена модели"];
  3946. this.columnКод_товара = base.Columns["Код товара"];
  3947. }
  3948. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3949. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3950. private void InitClass() {
  3951. this.columnКод_модели = new global::System.Data.DataColumn("Код модели", typeof(long), null, global::System.Data.MappingType.Element);
  3952. base.Columns.Add(this.columnКод_модели);
  3953. this.columnНаименование_модели = new global::System.Data.DataColumn("Наименование модели", typeof(string), null, global::System.Data.MappingType.Element);
  3954. base.Columns.Add(this.columnНаименование_модели);
  3955. this.columnЦена_модели = new global::System.Data.DataColumn("Цена модели", typeof(decimal), null, global::System.Data.MappingType.Element);
  3956. base.Columns.Add(this.columnЦена_модели);
  3957. this.columnКод_товара = new global::System.Data.DataColumn("Код товара", typeof(long), null, global::System.Data.MappingType.Element);
  3958. base.Columns.Add(this.columnКод_товара);
  3959. this.columnНаименование_модели.MaxLength = 50;
  3960. }
  3961. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3962. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3963. public Фильтр_цены_меньше_20_кRow NewФильтр_цены_меньше_20_кRow() {
  3964. return ((Фильтр_цены_меньше_20_кRow)(this.NewRow()));
  3965. }
  3966. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3967. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3968. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3969. return new Фильтр_цены_меньше_20_кRow(builder);
  3970. }
  3971. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3972. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3973. protected override global::System.Type GetRowType() {
  3974. return typeof(Фильтр_цены_меньше_20_кRow);
  3975. }
  3976. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3977. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3978. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3979. base.OnRowChanged(e);
  3980. if ((this.Фильтр_цены_меньше_20_кRowChanged != null)) {
  3981. this.Фильтр_цены_меньше_20_кRowChanged(this, new Фильтр_цены_меньше_20_кRowChangeEvent(((Фильтр_цены_меньше_20_кRow)(e.Row)), e.Action));
  3982. }
  3983. }
  3984. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3985. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3986. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3987. base.OnRowChanging(e);
  3988. if ((this.Фильтр_цены_меньше_20_кRowChanging != null)) {
  3989. this.Фильтр_цены_меньше_20_кRowChanging(this, new Фильтр_цены_меньше_20_кRowChangeEvent(((Фильтр_цены_меньше_20_кRow)(e.Row)), e.Action));
  3990. }
  3991. }
  3992. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3993. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3994. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3995. base.OnRowDeleted(e);
  3996. if ((this.Фильтр_цены_меньше_20_кRowDeleted != null)) {
  3997. this.Фильтр_цены_меньше_20_кRowDeleted(this, new Фильтр_цены_меньше_20_кRowChangeEvent(((Фильтр_цены_меньше_20_кRow)(e.Row)), e.Action));
  3998. }
  3999. }
  4000. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4001. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4002. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  4003. base.OnRowDeleting(e);
  4004. if ((this.Фильтр_цены_меньше_20_кRowDeleting != null)) {
  4005. this.Фильтр_цены_меньше_20_кRowDeleting(this, new Фильтр_цены_меньше_20_кRowChangeEvent(((Фильтр_цены_меньше_20_кRow)(e.Row)), e.Action));
  4006. }
  4007. }
  4008. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4009. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4010. public void RemoveФильтр_цены_меньше_20_кRow(Фильтр_цены_меньше_20_кRow row) {
  4011. this.Rows.Remove(row);
  4012. }
  4013. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4014. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4015. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  4016. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  4017. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  4018. Khozeev_ФАБРИКАDataSet ds = new Khozeev_ФАБРИКАDataSet();
  4019. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  4020. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  4021. any1.MinOccurs = new decimal(0);
  4022. any1.MaxOccurs = decimal.MaxValue;
  4023. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4024. sequence.Items.Add(any1);
  4025. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  4026. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  4027. any2.MinOccurs = new decimal(1);
  4028. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4029. sequence.Items.Add(any2);
  4030. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4031. attribute1.Name = "namespace";
  4032. attribute1.FixedValue = ds.Namespace;
  4033. type.Attributes.Add(attribute1);
  4034. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4035. attribute2.Name = "tableTypeName";
  4036. attribute2.FixedValue = "Фильтр_цены_меньше_20_кDataTable";
  4037. type.Attributes.Add(attribute2);
  4038. type.Particle = sequence;
  4039. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  4040. if (xs.Contains(dsSchema.TargetNamespace)) {
  4041. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  4042. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  4043. try {
  4044. global::System.Xml.Schema.XmlSchema schema = null;
  4045. dsSchema.Write(s1);
  4046. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  4047. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  4048. s2.SetLength(0);
  4049. schema.Write(s2);
  4050. if ((s1.Length == s2.Length)) {
  4051. s1.Position = 0;
  4052. s2.Position = 0;
  4053. for (; ((s1.Position != s1.Length)
  4054. && (s1.ReadByte() == s2.ReadByte())); ) {
  4055. ;
  4056. }
  4057. if ((s1.Position == s1.Length)) {
  4058. return type;
  4059. }
  4060. }
  4061. }
  4062. }
  4063. finally {
  4064. if ((s1 != null)) {
  4065. s1.Close();
  4066. }
  4067. if ((s2 != null)) {
  4068. s2.Close();
  4069. }
  4070. }
  4071. }
  4072. xs.Add(dsSchema);
  4073. return type;
  4074. }
  4075. }
  4076. /// <summary>
  4077. ///Represents strongly named DataRow class.
  4078. ///</summary>
  4079. public partial class МоделиRow : global::System.Data.DataRow {
  4080. private МоделиDataTable tableМодели;
  4081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4082. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4083. internal МоделиRow(global::System.Data.DataRowBuilder rb) :
  4084. base(rb) {
  4085. this.tableМодели = ((МоделиDataTable)(this.Table));
  4086. }
  4087. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4088. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4089. public long Код_модели {
  4090. get {
  4091. try {
  4092. return ((long)(this[this.tableМодели.Код_моделиColumn]));
  4093. }
  4094. catch (global::System.InvalidCastException e) {
  4095. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Модели\' равно DBNull.", e);
  4096. }
  4097. }
  4098. set {
  4099. this[this.tableМодели.Код_моделиColumn] = value;
  4100. }
  4101. }
  4102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4104. public string Наименование_модели {
  4105. get {
  4106. try {
  4107. return ((string)(this[this.tableМодели.Наименование_моделиColumn]));
  4108. }
  4109. catch (global::System.InvalidCastException e) {
  4110. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Модели\' равно DBNull.", e);
  4111. }
  4112. }
  4113. set {
  4114. this[this.tableМодели.Наименование_моделиColumn] = value;
  4115. }
  4116. }
  4117. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4118. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4119. public long Код_товара {
  4120. get {
  4121. try {
  4122. return ((long)(this[this.tableМодели.Код_товараColumn]));
  4123. }
  4124. catch (global::System.InvalidCastException e) {
  4125. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код товара\' в таблице \'Модели\' равно DBNull.", e);
  4126. }
  4127. }
  4128. set {
  4129. this[this.tableМодели.Код_товараColumn] = value;
  4130. }
  4131. }
  4132. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4134. public decimal Цена_модели {
  4135. get {
  4136. try {
  4137. return ((decimal)(this[this.tableМодели.Цена_моделиColumn]));
  4138. }
  4139. catch (global::System.InvalidCastException e) {
  4140. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Модели\' равно DBNull.", e);
  4141. }
  4142. }
  4143. set {
  4144. this[this.tableМодели.Цена_моделиColumn] = value;
  4145. }
  4146. }
  4147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4148. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4149. public bool IsКод_моделиNull() {
  4150. return this.IsNull(this.tableМодели.Код_моделиColumn);
  4151. }
  4152. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4153. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4154. public void SetКод_моделиNull() {
  4155. this[this.tableМодели.Код_моделиColumn] = global::System.Convert.DBNull;
  4156. }
  4157. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4158. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4159. public bool IsНаименование_моделиNull() {
  4160. return this.IsNull(this.tableМодели.Наименование_моделиColumn);
  4161. }
  4162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4164. public void SetНаименование_моделиNull() {
  4165. this[this.tableМодели.Наименование_моделиColumn] = global::System.Convert.DBNull;
  4166. }
  4167. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4168. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4169. public bool IsКод_товараNull() {
  4170. return this.IsNull(this.tableМодели.Код_товараColumn);
  4171. }
  4172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4173. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4174. public void SetКод_товараNull() {
  4175. this[this.tableМодели.Код_товараColumn] = global::System.Convert.DBNull;
  4176. }
  4177. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4178. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4179. public bool IsЦена_моделиNull() {
  4180. return this.IsNull(this.tableМодели.Цена_моделиColumn);
  4181. }
  4182. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4183. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4184. public void SetЦена_моделиNull() {
  4185. this[this.tableМодели.Цена_моделиColumn] = global::System.Convert.DBNull;
  4186. }
  4187. }
  4188. /// <summary>
  4189. ///Represents strongly named DataRow class.
  4190. ///</summary>
  4191. public partial class ПоступленияRow : global::System.Data.DataRow {
  4192. private ПоступленияDataTable tableПоступления;
  4193. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4194. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4195. internal ПоступленияRow(global::System.Data.DataRowBuilder rb) :
  4196. base(rb) {
  4197. this.tableПоступления = ((ПоступленияDataTable)(this.Table));
  4198. }
  4199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4200. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4201. public long Код_поступления {
  4202. get {
  4203. try {
  4204. return ((long)(this[this.tableПоступления.Код_поступленияColumn]));
  4205. }
  4206. catch (global::System.InvalidCastException e) {
  4207. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код поступления\' в таблице \'Поступления\' равно DBNull.", e);
  4208. }
  4209. }
  4210. set {
  4211. this[this.tableПоступления.Код_поступленияColumn] = value;
  4212. }
  4213. }
  4214. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4215. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4216. public long Код_модели {
  4217. get {
  4218. try {
  4219. return ((long)(this[this.tableПоступления.Код_моделиColumn]));
  4220. }
  4221. catch (global::System.InvalidCastException e) {
  4222. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Поступления\' равно DBNull.", e);
  4223. }
  4224. }
  4225. set {
  4226. this[this.tableПоступления.Код_моделиColumn] = value;
  4227. }
  4228. }
  4229. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4230. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4231. public System.DateTime Дата_поступления {
  4232. get {
  4233. try {
  4234. return ((global::System.DateTime)(this[this.tableПоступления.Дата_поступленияColumn]));
  4235. }
  4236. catch (global::System.InvalidCastException e) {
  4237. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Поступления\' равно DBNull.", e);
  4238. }
  4239. }
  4240. set {
  4241. this[this.tableПоступления.Дата_поступленияColumn] = value;
  4242. }
  4243. }
  4244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4246. public string Модели_товара {
  4247. get {
  4248. try {
  4249. return ((string)(this[this.tableПоступления.Модели_товараColumn]));
  4250. }
  4251. catch (global::System.InvalidCastException e) {
  4252. throw new global::System.Data.StrongTypingException("Значение для столбца \'Модели товара\' в таблице \'Поступления\' равно DBNull.", e);
  4253. }
  4254. }
  4255. set {
  4256. this[this.tableПоступления.Модели_товараColumn] = value;
  4257. }
  4258. }
  4259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4261. public int Количество {
  4262. get {
  4263. try {
  4264. return ((int)(this[this.tableПоступления.КоличествоColumn]));
  4265. }
  4266. catch (global::System.InvalidCastException e) {
  4267. throw new global::System.Data.StrongTypingException("Значение для столбца \'Количество\' в таблице \'Поступления\' равно DBNull.", e);
  4268. }
  4269. }
  4270. set {
  4271. this[this.tableПоступления.КоличествоColumn] = value;
  4272. }
  4273. }
  4274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4276. public string Кто_принял_товар {
  4277. get {
  4278. try {
  4279. return ((string)(this[this.tableПоступления.Кто_принял_товарColumn]));
  4280. }
  4281. catch (global::System.InvalidCastException e) {
  4282. throw new global::System.Data.StrongTypingException("Значение для столбца \'Кто принял товар\' в таблице \'Поступления\' равно DBNull.", e);
  4283. }
  4284. }
  4285. set {
  4286. this[this.tableПоступления.Кто_принял_товарColumn] = value;
  4287. }
  4288. }
  4289. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4290. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4291. public bool IsКод_поступленияNull() {
  4292. return this.IsNull(this.tableПоступления.Код_поступленияColumn);
  4293. }
  4294. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4295. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4296. public void SetКод_поступленияNull() {
  4297. this[this.tableПоступления.Код_поступленияColumn] = global::System.Convert.DBNull;
  4298. }
  4299. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4300. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4301. public bool IsКод_моделиNull() {
  4302. return this.IsNull(this.tableПоступления.Код_моделиColumn);
  4303. }
  4304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4306. public void SetКод_моделиNull() {
  4307. this[this.tableПоступления.Код_моделиColumn] = global::System.Convert.DBNull;
  4308. }
  4309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4311. public bool IsДата_поступленияNull() {
  4312. return this.IsNull(this.tableПоступления.Дата_поступленияColumn);
  4313. }
  4314. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4315. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4316. public void SetДата_поступленияNull() {
  4317. this[this.tableПоступления.Дата_поступленияColumn] = global::System.Convert.DBNull;
  4318. }
  4319. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4320. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4321. public bool IsМодели_товараNull() {
  4322. return this.IsNull(this.tableПоступления.Модели_товараColumn);
  4323. }
  4324. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4325. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4326. public void SetМодели_товараNull() {
  4327. this[this.tableПоступления.Модели_товараColumn] = global::System.Convert.DBNull;
  4328. }
  4329. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4330. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4331. public bool IsКоличествоNull() {
  4332. return this.IsNull(this.tableПоступления.КоличествоColumn);
  4333. }
  4334. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4335. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4336. public void SetКоличествоNull() {
  4337. this[this.tableПоступления.КоличествоColumn] = global::System.Convert.DBNull;
  4338. }
  4339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4341. public bool IsКто_принял_товарNull() {
  4342. return this.IsNull(this.tableПоступления.Кто_принял_товарColumn);
  4343. }
  4344. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4345. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4346. public void SetКто_принял_товарNull() {
  4347. this[this.tableПоступления.Кто_принял_товарColumn] = global::System.Convert.DBNull;
  4348. }
  4349. }
  4350. /// <summary>
  4351. ///Represents strongly named DataRow class.
  4352. ///</summary>
  4353. public partial class ТоварRow : global::System.Data.DataRow {
  4354. private ТоварDataTable tableТовар;
  4355. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4356. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4357. internal ТоварRow(global::System.Data.DataRowBuilder rb) :
  4358. base(rb) {
  4359. this.tableТовар = ((ТоварDataTable)(this.Table));
  4360. }
  4361. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4362. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4363. public long Код_товара {
  4364. get {
  4365. try {
  4366. return ((long)(this[this.tableТовар.Код_товараColumn]));
  4367. }
  4368. catch (global::System.InvalidCastException e) {
  4369. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код товара\' в таблице \'Товар\' равно DBNull.", e);
  4370. }
  4371. }
  4372. set {
  4373. this[this.tableТовар.Код_товараColumn] = value;
  4374. }
  4375. }
  4376. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4377. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4378. public string Наименование_товара {
  4379. get {
  4380. try {
  4381. return ((string)(this[this.tableТовар.Наименование_товараColumn]));
  4382. }
  4383. catch (global::System.InvalidCastException e) {
  4384. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование товара\' в таблице \'Товар\' равно DBNull.", e);
  4385. }
  4386. }
  4387. set {
  4388. this[this.tableТовар.Наименование_товараColumn] = value;
  4389. }
  4390. }
  4391. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4392. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4393. public bool IsКод_товараNull() {
  4394. return this.IsNull(this.tableТовар.Код_товараColumn);
  4395. }
  4396. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4397. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4398. public void SetКод_товараNull() {
  4399. this[this.tableТовар.Код_товараColumn] = global::System.Convert.DBNull;
  4400. }
  4401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4403. public bool IsНаименование_товараNull() {
  4404. return this.IsNull(this.tableТовар.Наименование_товараColumn);
  4405. }
  4406. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4407. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4408. public void SetНаименование_товараNull() {
  4409. this[this.tableТовар.Наименование_товараColumn] = global::System.Convert.DBNull;
  4410. }
  4411. }
  4412. /// <summary>
  4413. ///Represents strongly named DataRow class.
  4414. ///</summary>
  4415. public partial class _Запрос_Модели___поступленияRow : global::System.Data.DataRow {
  4416. private _Запрос_Модели___поступленияDataTable _tableЗапрос_Модели___поступления;
  4417. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4418. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4419. internal _Запрос_Модели___поступленияRow(global::System.Data.DataRowBuilder rb) :
  4420. base(rb) {
  4421. this._tableЗапрос_Модели___поступления = ((_Запрос_Модели___поступленияDataTable)(this.Table));
  4422. }
  4423. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4424. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4425. public long Код_товара {
  4426. get {
  4427. try {
  4428. return ((long)(this[this._tableЗапрос_Модели___поступления.Код_товараColumn]));
  4429. }
  4430. catch (global::System.InvalidCastException e) {
  4431. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код товара\' в таблице \'Запрос Модели + поступления\' равно D" +
  4432. "BNull.", e);
  4433. }
  4434. }
  4435. set {
  4436. this[this._tableЗапрос_Модели___поступления.Код_товараColumn] = value;
  4437. }
  4438. }
  4439. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4440. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4441. public string Наименование_модели {
  4442. get {
  4443. try {
  4444. return ((string)(this[this._tableЗапрос_Модели___поступления.Наименование_моделиColumn]));
  4445. }
  4446. catch (global::System.InvalidCastException e) {
  4447. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Запрос Модели + поступления" +
  4448. "\' равно DBNull.", e);
  4449. }
  4450. }
  4451. set {
  4452. this[this._tableЗапрос_Модели___поступления.Наименование_моделиColumn] = value;
  4453. }
  4454. }
  4455. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4456. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4457. public decimal Цена_модели {
  4458. get {
  4459. try {
  4460. return ((decimal)(this[this._tableЗапрос_Модели___поступления.Цена_моделиColumn]));
  4461. }
  4462. catch (global::System.InvalidCastException e) {
  4463. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Запрос Модели + поступления\' равно " +
  4464. "DBNull.", e);
  4465. }
  4466. }
  4467. set {
  4468. this[this._tableЗапрос_Модели___поступления.Цена_моделиColumn] = value;
  4469. }
  4470. }
  4471. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4472. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4473. public string Модели_товара {
  4474. get {
  4475. try {
  4476. return ((string)(this[this._tableЗапрос_Модели___поступления.Модели_товараColumn]));
  4477. }
  4478. catch (global::System.InvalidCastException e) {
  4479. throw new global::System.Data.StrongTypingException("Значение для столбца \'Модели товара\' в таблице \'Запрос Модели + поступления\' равн" +
  4480. "о DBNull.", e);
  4481. }
  4482. }
  4483. set {
  4484. this[this._tableЗапрос_Модели___поступления.Модели_товараColumn] = value;
  4485. }
  4486. }
  4487. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4488. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4489. public System.DateTime Дата_поступления {
  4490. get {
  4491. try {
  4492. return ((global::System.DateTime)(this[this._tableЗапрос_Модели___поступления.Дата_поступленияColumn]));
  4493. }
  4494. catch (global::System.InvalidCastException e) {
  4495. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Запрос Модели + поступления\' р" +
  4496. "авно DBNull.", e);
  4497. }
  4498. }
  4499. set {
  4500. this[this._tableЗапрос_Модели___поступления.Дата_поступленияColumn] = value;
  4501. }
  4502. }
  4503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4505. public long Код_поступления {
  4506. get {
  4507. try {
  4508. return ((long)(this[this._tableЗапрос_Модели___поступления.Код_поступленияColumn]));
  4509. }
  4510. catch (global::System.InvalidCastException e) {
  4511. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код поступления\' в таблице \'Запрос Модели + поступления\' ра" +
  4512. "вно DBNull.", e);
  4513. }
  4514. }
  4515. set {
  4516. this[this._tableЗапрос_Модели___поступления.Код_поступленияColumn] = value;
  4517. }
  4518. }
  4519. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4520. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4521. public string Кто_принял_товар {
  4522. get {
  4523. try {
  4524. return ((string)(this[this._tableЗапрос_Модели___поступления.Кто_принял_товарColumn]));
  4525. }
  4526. catch (global::System.InvalidCastException e) {
  4527. throw new global::System.Data.StrongTypingException("Значение для столбца \'Кто принял товар\' в таблице \'Запрос Модели + поступления\' р" +
  4528. "авно DBNull.", e);
  4529. }
  4530. }
  4531. set {
  4532. this[this._tableЗапрос_Модели___поступления.Кто_принял_товарColumn] = value;
  4533. }
  4534. }
  4535. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4536. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4537. public int Количество {
  4538. get {
  4539. try {
  4540. return ((int)(this[this._tableЗапрос_Модели___поступления.КоличествоColumn]));
  4541. }
  4542. catch (global::System.InvalidCastException e) {
  4543. throw new global::System.Data.StrongTypingException("Значение для столбца \'Количество\' в таблице \'Запрос Модели + поступления\' равно D" +
  4544. "BNull.", e);
  4545. }
  4546. }
  4547. set {
  4548. this[this._tableЗапрос_Модели___поступления.КоличествоColumn] = value;
  4549. }
  4550. }
  4551. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4552. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4553. public bool IsКод_товараNull() {
  4554. return this.IsNull(this._tableЗапрос_Модели___поступления.Код_товараColumn);
  4555. }
  4556. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4557. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4558. public void SetКод_товараNull() {
  4559. this[this._tableЗапрос_Модели___поступления.Код_товараColumn] = global::System.Convert.DBNull;
  4560. }
  4561. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4562. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4563. public bool IsНаименование_моделиNull() {
  4564. return this.IsNull(this._tableЗапрос_Модели___поступления.Наименование_моделиColumn);
  4565. }
  4566. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4567. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4568. public void SetНаименование_моделиNull() {
  4569. this[this._tableЗапрос_Модели___поступления.Наименование_моделиColumn] = global::System.Convert.DBNull;
  4570. }
  4571. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4572. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4573. public bool IsЦена_моделиNull() {
  4574. return this.IsNull(this._tableЗапрос_Модели___поступления.Цена_моделиColumn);
  4575. }
  4576. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4577. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4578. public void SetЦена_моделиNull() {
  4579. this[this._tableЗапрос_Модели___поступления.Цена_моделиColumn] = global::System.Convert.DBNull;
  4580. }
  4581. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4582. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4583. public bool IsМодели_товараNull() {
  4584. return this.IsNull(this._tableЗапрос_Модели___поступления.Модели_товараColumn);
  4585. }
  4586. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4587. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4588. public void SetМодели_товараNull() {
  4589. this[this._tableЗапрос_Модели___поступления.Модели_товараColumn] = global::System.Convert.DBNull;
  4590. }
  4591. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4592. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4593. public bool IsДата_поступленияNull() {
  4594. return this.IsNull(this._tableЗапрос_Модели___поступления.Дата_поступленияColumn);
  4595. }
  4596. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4597. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4598. public void SetДата_поступленияNull() {
  4599. this[this._tableЗапрос_Модели___поступления.Дата_поступленияColumn] = global::System.Convert.DBNull;
  4600. }
  4601. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4602. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4603. public bool IsКод_поступленияNull() {
  4604. return this.IsNull(this._tableЗапрос_Модели___поступления.Код_поступленияColumn);
  4605. }
  4606. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4607. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4608. public void SetКод_поступленияNull() {
  4609. this[this._tableЗапрос_Модели___поступления.Код_поступленияColumn] = global::System.Convert.DBNull;
  4610. }
  4611. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4612. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4613. public bool IsКто_принял_товарNull() {
  4614. return this.IsNull(this._tableЗапрос_Модели___поступления.Кто_принял_товарColumn);
  4615. }
  4616. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4617. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4618. public void SetКто_принял_товарNull() {
  4619. this[this._tableЗапрос_Модели___поступления.Кто_принял_товарColumn] = global::System.Convert.DBNull;
  4620. }
  4621. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4622. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4623. public bool IsКоличествоNull() {
  4624. return this.IsNull(this._tableЗапрос_Модели___поступления.КоличествоColumn);
  4625. }
  4626. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4627. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4628. public void SetКоличествоNull() {
  4629. this[this._tableЗапрос_Модели___поступления.КоличествоColumn] = global::System.Convert.DBNull;
  4630. }
  4631. }
  4632. /// <summary>
  4633. ///Represents strongly named DataRow class.
  4634. ///</summary>
  4635. public partial class _Запрос_Модель___ТоварRow : global::System.Data.DataRow {
  4636. private _Запрос_Модель___ТоварDataTable _tableЗапрос_Модель___Товар;
  4637. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4638. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4639. internal _Запрос_Модель___ТоварRow(global::System.Data.DataRowBuilder rb) :
  4640. base(rb) {
  4641. this._tableЗапрос_Модель___Товар = ((_Запрос_Модель___ТоварDataTable)(this.Table));
  4642. }
  4643. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4644. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4645. public string Наименование_товара {
  4646. get {
  4647. try {
  4648. return ((string)(this[this._tableЗапрос_Модель___Товар.Наименование_товараColumn]));
  4649. }
  4650. catch (global::System.InvalidCastException e) {
  4651. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование товара\' в таблице \'Запрос Модель + Товар\' равн" +
  4652. "о DBNull.", e);
  4653. }
  4654. }
  4655. set {
  4656. this[this._tableЗапрос_Модель___Товар.Наименование_товараColumn] = value;
  4657. }
  4658. }
  4659. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4660. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4661. public decimal Цена_модели {
  4662. get {
  4663. try {
  4664. return ((decimal)(this[this._tableЗапрос_Модель___Товар.Цена_моделиColumn]));
  4665. }
  4666. catch (global::System.InvalidCastException e) {
  4667. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Запрос Модель + Товар\' равно DBNull" +
  4668. ".", e);
  4669. }
  4670. }
  4671. set {
  4672. this[this._tableЗапрос_Модель___Товар.Цена_моделиColumn] = value;
  4673. }
  4674. }
  4675. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4676. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4677. public string Наименование_модели {
  4678. get {
  4679. try {
  4680. return ((string)(this[this._tableЗапрос_Модель___Товар.Наименование_моделиColumn]));
  4681. }
  4682. catch (global::System.InvalidCastException e) {
  4683. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Запрос Модель + Товар\' равн" +
  4684. "о DBNull.", e);
  4685. }
  4686. }
  4687. set {
  4688. this[this._tableЗапрос_Модель___Товар.Наименование_моделиColumn] = value;
  4689. }
  4690. }
  4691. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4692. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4693. public long Код_модели {
  4694. get {
  4695. try {
  4696. return ((long)(this[this._tableЗапрос_Модель___Товар.Код_моделиColumn]));
  4697. }
  4698. catch (global::System.InvalidCastException e) {
  4699. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Запрос Модель + Товар\' равно DBNull." +
  4700. "", e);
  4701. }
  4702. }
  4703. set {
  4704. this[this._tableЗапрос_Модель___Товар.Код_моделиColumn] = value;
  4705. }
  4706. }
  4707. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4708. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4709. public bool IsНаименование_товараNull() {
  4710. return this.IsNull(this._tableЗапрос_Модель___Товар.Наименование_товараColumn);
  4711. }
  4712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4714. public void SetНаименование_товараNull() {
  4715. this[this._tableЗапрос_Модель___Товар.Наименование_товараColumn] = global::System.Convert.DBNull;
  4716. }
  4717. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4718. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4719. public bool IsЦена_моделиNull() {
  4720. return this.IsNull(this._tableЗапрос_Модель___Товар.Цена_моделиColumn);
  4721. }
  4722. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4723. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4724. public void SetЦена_моделиNull() {
  4725. this[this._tableЗапрос_Модель___Товар.Цена_моделиColumn] = global::System.Convert.DBNull;
  4726. }
  4727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4729. public bool IsНаименование_моделиNull() {
  4730. return this.IsNull(this._tableЗапрос_Модель___Товар.Наименование_моделиColumn);
  4731. }
  4732. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4733. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4734. public void SetНаименование_моделиNull() {
  4735. this[this._tableЗапрос_Модель___Товар.Наименование_моделиColumn] = global::System.Convert.DBNull;
  4736. }
  4737. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4738. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4739. public bool IsКод_моделиNull() {
  4740. return this.IsNull(this._tableЗапрос_Модель___Товар.Код_моделиColumn);
  4741. }
  4742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4744. public void SetКод_моделиNull() {
  4745. this[this._tableЗапрос_Модель___Товар.Код_моделиColumn] = global::System.Convert.DBNull;
  4746. }
  4747. }
  4748. /// <summary>
  4749. ///Represents strongly named DataRow class.
  4750. ///</summary>
  4751. public partial class Фильтр_АддидасRow : global::System.Data.DataRow {
  4752. private Фильтр_АддидасDataTable tableФильтр_Аддидас;
  4753. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4754. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4755. internal Фильтр_АддидасRow(global::System.Data.DataRowBuilder rb) :
  4756. base(rb) {
  4757. this.tableФильтр_Аддидас = ((Фильтр_АддидасDataTable)(this.Table));
  4758. }
  4759. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4760. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4761. public long Код_модели {
  4762. get {
  4763. try {
  4764. return ((long)(this[this.tableФильтр_Аддидас.Код_моделиColumn]));
  4765. }
  4766. catch (global::System.InvalidCastException e) {
  4767. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Фильтр Аддидас\' равно DBNull.", e);
  4768. }
  4769. }
  4770. set {
  4771. this[this.tableФильтр_Аддидас.Код_моделиColumn] = value;
  4772. }
  4773. }
  4774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4775. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4776. public string Наименование_модели {
  4777. get {
  4778. try {
  4779. return ((string)(this[this.tableФильтр_Аддидас.Наименование_моделиColumn]));
  4780. }
  4781. catch (global::System.InvalidCastException e) {
  4782. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Фильтр Аддидас\' равно DBNul" +
  4783. "l.", e);
  4784. }
  4785. }
  4786. set {
  4787. this[this.tableФильтр_Аддидас.Наименование_моделиColumn] = value;
  4788. }
  4789. }
  4790. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4791. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4792. public decimal Цена_модели {
  4793. get {
  4794. try {
  4795. return ((decimal)(this[this.tableФильтр_Аддидас.Цена_моделиColumn]));
  4796. }
  4797. catch (global::System.InvalidCastException e) {
  4798. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Фильтр Аддидас\' равно DBNull.", e);
  4799. }
  4800. }
  4801. set {
  4802. this[this.tableФильтр_Аддидас.Цена_моделиColumn] = value;
  4803. }
  4804. }
  4805. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4806. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4807. public string Наименование_товара {
  4808. get {
  4809. try {
  4810. return ((string)(this[this.tableФильтр_Аддидас.Наименование_товараColumn]));
  4811. }
  4812. catch (global::System.InvalidCastException e) {
  4813. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование товара\' в таблице \'Фильтр Аддидас\' равно DBNul" +
  4814. "l.", e);
  4815. }
  4816. }
  4817. set {
  4818. this[this.tableФильтр_Аддидас.Наименование_товараColumn] = value;
  4819. }
  4820. }
  4821. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4822. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4823. public bool IsКод_моделиNull() {
  4824. return this.IsNull(this.tableФильтр_Аддидас.Код_моделиColumn);
  4825. }
  4826. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4827. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4828. public void SetКод_моделиNull() {
  4829. this[this.tableФильтр_Аддидас.Код_моделиColumn] = global::System.Convert.DBNull;
  4830. }
  4831. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4832. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4833. public bool IsНаименование_моделиNull() {
  4834. return this.IsNull(this.tableФильтр_Аддидас.Наименование_моделиColumn);
  4835. }
  4836. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4837. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4838. public void SetНаименование_моделиNull() {
  4839. this[this.tableФильтр_Аддидас.Наименование_моделиColumn] = global::System.Convert.DBNull;
  4840. }
  4841. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4842. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4843. public bool IsЦена_моделиNull() {
  4844. return this.IsNull(this.tableФильтр_Аддидас.Цена_моделиColumn);
  4845. }
  4846. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4847. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4848. public void SetЦена_моделиNull() {
  4849. this[this.tableФильтр_Аддидас.Цена_моделиColumn] = global::System.Convert.DBNull;
  4850. }
  4851. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4852. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4853. public bool IsНаименование_товараNull() {
  4854. return this.IsNull(this.tableФильтр_Аддидас.Наименование_товараColumn);
  4855. }
  4856. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4857. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4858. public void SetНаименование_товараNull() {
  4859. this[this.tableФильтр_Аддидас.Наименование_товараColumn] = global::System.Convert.DBNull;
  4860. }
  4861. }
  4862. /// <summary>
  4863. ///Represents strongly named DataRow class.
  4864. ///</summary>
  4865. public partial class Фильтр_диорRow : global::System.Data.DataRow {
  4866. private Фильтр_диорDataTable tableФильтр_диор;
  4867. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4868. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4869. internal Фильтр_диорRow(global::System.Data.DataRowBuilder rb) :
  4870. base(rb) {
  4871. this.tableФильтр_диор = ((Фильтр_диорDataTable)(this.Table));
  4872. }
  4873. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4874. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4875. public string Наименование_товара {
  4876. get {
  4877. try {
  4878. return ((string)(this[this.tableФильтр_диор.Наименование_товараColumn]));
  4879. }
  4880. catch (global::System.InvalidCastException e) {
  4881. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование товара\' в таблице \'Фильтр диор\' равно DBNull.", e);
  4882. }
  4883. }
  4884. set {
  4885. this[this.tableФильтр_диор.Наименование_товараColumn] = value;
  4886. }
  4887. }
  4888. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4889. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4890. public decimal Цена_модели {
  4891. get {
  4892. try {
  4893. return ((decimal)(this[this.tableФильтр_диор.Цена_моделиColumn]));
  4894. }
  4895. catch (global::System.InvalidCastException e) {
  4896. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Фильтр диор\' равно DBNull.", e);
  4897. }
  4898. }
  4899. set {
  4900. this[this.tableФильтр_диор.Цена_моделиColumn] = value;
  4901. }
  4902. }
  4903. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4904. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4905. public string Наименование_модели {
  4906. get {
  4907. try {
  4908. return ((string)(this[this.tableФильтр_диор.Наименование_моделиColumn]));
  4909. }
  4910. catch (global::System.InvalidCastException e) {
  4911. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Фильтр диор\' равно DBNull.", e);
  4912. }
  4913. }
  4914. set {
  4915. this[this.tableФильтр_диор.Наименование_моделиColumn] = value;
  4916. }
  4917. }
  4918. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4919. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4920. public long Код_модели {
  4921. get {
  4922. try {
  4923. return ((long)(this[this.tableФильтр_диор.Код_моделиColumn]));
  4924. }
  4925. catch (global::System.InvalidCastException e) {
  4926. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Фильтр диор\' равно DBNull.", e);
  4927. }
  4928. }
  4929. set {
  4930. this[this.tableФильтр_диор.Код_моделиColumn] = value;
  4931. }
  4932. }
  4933. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4934. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4935. public bool IsНаименование_товараNull() {
  4936. return this.IsNull(this.tableФильтр_диор.Наименование_товараColumn);
  4937. }
  4938. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4939. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4940. public void SetНаименование_товараNull() {
  4941. this[this.tableФильтр_диор.Наименование_товараColumn] = global::System.Convert.DBNull;
  4942. }
  4943. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4944. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4945. public bool IsЦена_моделиNull() {
  4946. return this.IsNull(this.tableФильтр_диор.Цена_моделиColumn);
  4947. }
  4948. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4949. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4950. public void SetЦена_моделиNull() {
  4951. this[this.tableФильтр_диор.Цена_моделиColumn] = global::System.Convert.DBNull;
  4952. }
  4953. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4954. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4955. public bool IsНаименование_моделиNull() {
  4956. return this.IsNull(this.tableФильтр_диор.Наименование_моделиColumn);
  4957. }
  4958. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4959. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4960. public void SetНаименование_моделиNull() {
  4961. this[this.tableФильтр_диор.Наименование_моделиColumn] = global::System.Convert.DBNull;
  4962. }
  4963. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4964. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4965. public bool IsКод_моделиNull() {
  4966. return this.IsNull(this.tableФильтр_диор.Код_моделиColumn);
  4967. }
  4968. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4969. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4970. public void SetКод_моделиNull() {
  4971. this[this.tableФильтр_диор.Код_моделиColumn] = global::System.Convert.DBNull;
  4972. }
  4973. }
  4974. /// <summary>
  4975. ///Represents strongly named DataRow class.
  4976. ///</summary>
  4977. public partial class _Фильтр_кол_ва_больше_15Row : global::System.Data.DataRow {
  4978. private _Фильтр_кол_ва_больше_15DataTable _tableФильтр_кол_ва_больше_15;
  4979. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4980. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4981. internal _Фильтр_кол_ва_больше_15Row(global::System.Data.DataRowBuilder rb) :
  4982. base(rb) {
  4983. this._tableФильтр_кол_ва_больше_15 = ((_Фильтр_кол_ва_больше_15DataTable)(this.Table));
  4984. }
  4985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4986. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4987. public long Код_поступления {
  4988. get {
  4989. try {
  4990. return ((long)(this[this._tableФильтр_кол_ва_больше_15.Код_поступленияColumn]));
  4991. }
  4992. catch (global::System.InvalidCastException e) {
  4993. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код поступления\' в таблице \'Фильтр кол-ва больше 15\' равно " +
  4994. "DBNull.", e);
  4995. }
  4996. }
  4997. set {
  4998. this[this._tableФильтр_кол_ва_больше_15.Код_поступленияColumn] = value;
  4999. }
  5000. }
  5001. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5002. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5003. public System.DateTime Дата_поступления {
  5004. get {
  5005. try {
  5006. return ((global::System.DateTime)(this[this._tableФильтр_кол_ва_больше_15.Дата_поступленияColumn]));
  5007. }
  5008. catch (global::System.InvalidCastException e) {
  5009. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Фильтр кол-ва больше 15\' равно" +
  5010. " DBNull.", e);
  5011. }
  5012. }
  5013. set {
  5014. this[this._tableФильтр_кол_ва_больше_15.Дата_поступленияColumn] = value;
  5015. }
  5016. }
  5017. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5018. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5019. public long Код_модели {
  5020. get {
  5021. try {
  5022. return ((long)(this[this._tableФильтр_кол_ва_больше_15.Код_моделиColumn]));
  5023. }
  5024. catch (global::System.InvalidCastException e) {
  5025. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Фильтр кол-ва больше 15\' равно DBNul" +
  5026. "l.", e);
  5027. }
  5028. }
  5029. set {
  5030. this[this._tableФильтр_кол_ва_больше_15.Код_моделиColumn] = value;
  5031. }
  5032. }
  5033. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5034. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5035. public string Модели_товара {
  5036. get {
  5037. try {
  5038. return ((string)(this[this._tableФильтр_кол_ва_больше_15.Модели_товараColumn]));
  5039. }
  5040. catch (global::System.InvalidCastException e) {
  5041. throw new global::System.Data.StrongTypingException("Значение для столбца \'Модели товара\' в таблице \'Фильтр кол-ва больше 15\' равно DB" +
  5042. "Null.", e);
  5043. }
  5044. }
  5045. set {
  5046. this[this._tableФильтр_кол_ва_больше_15.Модели_товараColumn] = value;
  5047. }
  5048. }
  5049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5050. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5051. public int Количество {
  5052. get {
  5053. try {
  5054. return ((int)(this[this._tableФильтр_кол_ва_больше_15.КоличествоColumn]));
  5055. }
  5056. catch (global::System.InvalidCastException e) {
  5057. throw new global::System.Data.StrongTypingException("Значение для столбца \'Количество\' в таблице \'Фильтр кол-ва больше 15\' равно DBNul" +
  5058. "l.", e);
  5059. }
  5060. }
  5061. set {
  5062. this[this._tableФильтр_кол_ва_больше_15.КоличествоColumn] = value;
  5063. }
  5064. }
  5065. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5066. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5067. public string Кто_принял_товар {
  5068. get {
  5069. try {
  5070. return ((string)(this[this._tableФильтр_кол_ва_больше_15.Кто_принял_товарColumn]));
  5071. }
  5072. catch (global::System.InvalidCastException e) {
  5073. throw new global::System.Data.StrongTypingException("Значение для столбца \'Кто принял товар\' в таблице \'Фильтр кол-ва больше 15\' равно" +
  5074. " DBNull.", e);
  5075. }
  5076. }
  5077. set {
  5078. this[this._tableФильтр_кол_ва_больше_15.Кто_принял_товарColumn] = value;
  5079. }
  5080. }
  5081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5082. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5083. public bool IsКод_поступленияNull() {
  5084. return this.IsNull(this._tableФильтр_кол_ва_больше_15.Код_поступленияColumn);
  5085. }
  5086. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5087. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5088. public void SetКод_поступленияNull() {
  5089. this[this._tableФильтр_кол_ва_больше_15.Код_поступленияColumn] = global::System.Convert.DBNull;
  5090. }
  5091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5092. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5093. public bool IsДата_поступленияNull() {
  5094. return this.IsNull(this._tableФильтр_кол_ва_больше_15.Дата_поступленияColumn);
  5095. }
  5096. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5097. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5098. public void SetДата_поступленияNull() {
  5099. this[this._tableФильтр_кол_ва_больше_15.Дата_поступленияColumn] = global::System.Convert.DBNull;
  5100. }
  5101. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5102. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5103. public bool IsКод_моделиNull() {
  5104. return this.IsNull(this._tableФильтр_кол_ва_больше_15.Код_моделиColumn);
  5105. }
  5106. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5107. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5108. public void SetКод_моделиNull() {
  5109. this[this._tableФильтр_кол_ва_больше_15.Код_моделиColumn] = global::System.Convert.DBNull;
  5110. }
  5111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5113. public bool IsМодели_товараNull() {
  5114. return this.IsNull(this._tableФильтр_кол_ва_больше_15.Модели_товараColumn);
  5115. }
  5116. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5117. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5118. public void SetМодели_товараNull() {
  5119. this[this._tableФильтр_кол_ва_больше_15.Модели_товараColumn] = global::System.Convert.DBNull;
  5120. }
  5121. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5122. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5123. public bool IsКоличествоNull() {
  5124. return this.IsNull(this._tableФильтр_кол_ва_больше_15.КоличествоColumn);
  5125. }
  5126. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5127. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5128. public void SetКоличествоNull() {
  5129. this[this._tableФильтр_кол_ва_больше_15.КоличествоColumn] = global::System.Convert.DBNull;
  5130. }
  5131. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5132. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5133. public bool IsКто_принял_товарNull() {
  5134. return this.IsNull(this._tableФильтр_кол_ва_больше_15.Кто_принял_товарColumn);
  5135. }
  5136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5137. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5138. public void SetКто_принял_товарNull() {
  5139. this[this._tableФильтр_кол_ва_больше_15.Кто_принял_товарColumn] = global::System.Convert.DBNull;
  5140. }
  5141. }
  5142. /// <summary>
  5143. ///Represents strongly named DataRow class.
  5144. ///</summary>
  5145. public partial class _Фильтр_кол_ва_меньше_15Row : global::System.Data.DataRow {
  5146. private _Фильтр_кол_ва_меньше_15DataTable _tableФильтр_кол_ва_меньше_15;
  5147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5148. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5149. internal _Фильтр_кол_ва_меньше_15Row(global::System.Data.DataRowBuilder rb) :
  5150. base(rb) {
  5151. this._tableФильтр_кол_ва_меньше_15 = ((_Фильтр_кол_ва_меньше_15DataTable)(this.Table));
  5152. }
  5153. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5154. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5155. public string Кто_принял_товар {
  5156. get {
  5157. try {
  5158. return ((string)(this[this._tableФильтр_кол_ва_меньше_15.Кто_принял_товарColumn]));
  5159. }
  5160. catch (global::System.InvalidCastException e) {
  5161. throw new global::System.Data.StrongTypingException("Значение для столбца \'Кто принял товар\' в таблице \'Фильтр кол-ва меньше 15\' равно" +
  5162. " DBNull.", e);
  5163. }
  5164. }
  5165. set {
  5166. this[this._tableФильтр_кол_ва_меньше_15.Кто_принял_товарColumn] = value;
  5167. }
  5168. }
  5169. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5170. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5171. public int Количество {
  5172. get {
  5173. try {
  5174. return ((int)(this[this._tableФильтр_кол_ва_меньше_15.КоличествоColumn]));
  5175. }
  5176. catch (global::System.InvalidCastException e) {
  5177. throw new global::System.Data.StrongTypingException("Значение для столбца \'Количество\' в таблице \'Фильтр кол-ва меньше 15\' равно DBNul" +
  5178. "l.", e);
  5179. }
  5180. }
  5181. set {
  5182. this[this._tableФильтр_кол_ва_меньше_15.КоличествоColumn] = value;
  5183. }
  5184. }
  5185. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5186. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5187. public string Модели_товара {
  5188. get {
  5189. try {
  5190. return ((string)(this[this._tableФильтр_кол_ва_меньше_15.Модели_товараColumn]));
  5191. }
  5192. catch (global::System.InvalidCastException e) {
  5193. throw new global::System.Data.StrongTypingException("Значение для столбца \'Модели товара\' в таблице \'Фильтр кол-ва меньше 15\' равно DB" +
  5194. "Null.", e);
  5195. }
  5196. }
  5197. set {
  5198. this[this._tableФильтр_кол_ва_меньше_15.Модели_товараColumn] = value;
  5199. }
  5200. }
  5201. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5202. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5203. public System.DateTime Дата_поступления {
  5204. get {
  5205. try {
  5206. return ((global::System.DateTime)(this[this._tableФильтр_кол_ва_меньше_15.Дата_поступленияColumn]));
  5207. }
  5208. catch (global::System.InvalidCastException e) {
  5209. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Фильтр кол-ва меньше 15\' равно" +
  5210. " DBNull.", e);
  5211. }
  5212. }
  5213. set {
  5214. this[this._tableФильтр_кол_ва_меньше_15.Дата_поступленияColumn] = value;
  5215. }
  5216. }
  5217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5218. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5219. public long Код_модели {
  5220. get {
  5221. try {
  5222. return ((long)(this[this._tableФильтр_кол_ва_меньше_15.Код_моделиColumn]));
  5223. }
  5224. catch (global::System.InvalidCastException e) {
  5225. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Фильтр кол-ва меньше 15\' равно DBNul" +
  5226. "l.", e);
  5227. }
  5228. }
  5229. set {
  5230. this[this._tableФильтр_кол_ва_меньше_15.Код_моделиColumn] = value;
  5231. }
  5232. }
  5233. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5234. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5235. public long Код_поступления {
  5236. get {
  5237. try {
  5238. return ((long)(this[this._tableФильтр_кол_ва_меньше_15.Код_поступленияColumn]));
  5239. }
  5240. catch (global::System.InvalidCastException e) {
  5241. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код поступления\' в таблице \'Фильтр кол-ва меньше 15\' равно " +
  5242. "DBNull.", e);
  5243. }
  5244. }
  5245. set {
  5246. this[this._tableФильтр_кол_ва_меньше_15.Код_поступленияColumn] = value;
  5247. }
  5248. }
  5249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5251. public bool IsКто_принял_товарNull() {
  5252. return this.IsNull(this._tableФильтр_кол_ва_меньше_15.Кто_принял_товарColumn);
  5253. }
  5254. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5255. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5256. public void SetКто_принял_товарNull() {
  5257. this[this._tableФильтр_кол_ва_меньше_15.Кто_принял_товарColumn] = global::System.Convert.DBNull;
  5258. }
  5259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5261. public bool IsКоличествоNull() {
  5262. return this.IsNull(this._tableФильтр_кол_ва_меньше_15.КоличествоColumn);
  5263. }
  5264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5266. public void SetКоличествоNull() {
  5267. this[this._tableФильтр_кол_ва_меньше_15.КоличествоColumn] = global::System.Convert.DBNull;
  5268. }
  5269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5271. public bool IsМодели_товараNull() {
  5272. return this.IsNull(this._tableФильтр_кол_ва_меньше_15.Модели_товараColumn);
  5273. }
  5274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5276. public void SetМодели_товараNull() {
  5277. this[this._tableФильтр_кол_ва_меньше_15.Модели_товараColumn] = global::System.Convert.DBNull;
  5278. }
  5279. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5280. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5281. public bool IsДата_поступленияNull() {
  5282. return this.IsNull(this._tableФильтр_кол_ва_меньше_15.Дата_поступленияColumn);
  5283. }
  5284. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5285. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5286. public void SetДата_поступленияNull() {
  5287. this[this._tableФильтр_кол_ва_меньше_15.Дата_поступленияColumn] = global::System.Convert.DBNull;
  5288. }
  5289. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5290. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5291. public bool IsКод_моделиNull() {
  5292. return this.IsNull(this._tableФильтр_кол_ва_меньше_15.Код_моделиColumn);
  5293. }
  5294. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5295. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5296. public void SetКод_моделиNull() {
  5297. this[this._tableФильтр_кол_ва_меньше_15.Код_моделиColumn] = global::System.Convert.DBNull;
  5298. }
  5299. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5300. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5301. public bool IsКод_поступленияNull() {
  5302. return this.IsNull(this._tableФильтр_кол_ва_меньше_15.Код_поступленияColumn);
  5303. }
  5304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5306. public void SetКод_поступленияNull() {
  5307. this[this._tableФильтр_кол_ва_меньше_15.Код_поступленияColumn] = global::System.Convert.DBNull;
  5308. }
  5309. }
  5310. /// <summary>
  5311. ///Represents strongly named DataRow class.
  5312. ///</summary>
  5313. public partial class фильтр_найкRow : global::System.Data.DataRow {
  5314. private фильтр_найкDataTable tableфильтр_найк;
  5315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5317. internal фильтр_найкRow(global::System.Data.DataRowBuilder rb) :
  5318. base(rb) {
  5319. this.tableфильтр_найк = ((фильтр_найкDataTable)(this.Table));
  5320. }
  5321. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5322. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5323. public string Наименование_товара {
  5324. get {
  5325. try {
  5326. return ((string)(this[this.tableфильтр_найк.Наименование_товараColumn]));
  5327. }
  5328. catch (global::System.InvalidCastException e) {
  5329. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование товара\' в таблице \'фильтр найк\' равно DBNull.", e);
  5330. }
  5331. }
  5332. set {
  5333. this[this.tableфильтр_найк.Наименование_товараColumn] = value;
  5334. }
  5335. }
  5336. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5337. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5338. public string Наименование_модели {
  5339. get {
  5340. try {
  5341. return ((string)(this[this.tableфильтр_найк.Наименование_моделиColumn]));
  5342. }
  5343. catch (global::System.InvalidCastException e) {
  5344. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'фильтр найк\' равно DBNull.", e);
  5345. }
  5346. }
  5347. set {
  5348. this[this.tableфильтр_найк.Наименование_моделиColumn] = value;
  5349. }
  5350. }
  5351. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5352. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5353. public decimal Цена_модели {
  5354. get {
  5355. try {
  5356. return ((decimal)(this[this.tableфильтр_найк.Цена_моделиColumn]));
  5357. }
  5358. catch (global::System.InvalidCastException e) {
  5359. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'фильтр найк\' равно DBNull.", e);
  5360. }
  5361. }
  5362. set {
  5363. this[this.tableфильтр_найк.Цена_моделиColumn] = value;
  5364. }
  5365. }
  5366. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5367. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5368. public long Код_модели {
  5369. get {
  5370. try {
  5371. return ((long)(this[this.tableфильтр_найк.Код_моделиColumn]));
  5372. }
  5373. catch (global::System.InvalidCastException e) {
  5374. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'фильтр найк\' равно DBNull.", e);
  5375. }
  5376. }
  5377. set {
  5378. this[this.tableфильтр_найк.Код_моделиColumn] = value;
  5379. }
  5380. }
  5381. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5382. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5383. public bool IsНаименование_товараNull() {
  5384. return this.IsNull(this.tableфильтр_найк.Наименование_товараColumn);
  5385. }
  5386. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5388. public void SetНаименование_товараNull() {
  5389. this[this.tableфильтр_найк.Наименование_товараColumn] = global::System.Convert.DBNull;
  5390. }
  5391. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5392. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5393. public bool IsНаименование_моделиNull() {
  5394. return this.IsNull(this.tableфильтр_найк.Наименование_моделиColumn);
  5395. }
  5396. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5397. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5398. public void SetНаименование_моделиNull() {
  5399. this[this.tableфильтр_найк.Наименование_моделиColumn] = global::System.Convert.DBNull;
  5400. }
  5401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5403. public bool IsЦена_моделиNull() {
  5404. return this.IsNull(this.tableфильтр_найк.Цена_моделиColumn);
  5405. }
  5406. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5407. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5408. public void SetЦена_моделиNull() {
  5409. this[this.tableфильтр_найк.Цена_моделиColumn] = global::System.Convert.DBNull;
  5410. }
  5411. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5412. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5413. public bool IsКод_моделиNull() {
  5414. return this.IsNull(this.tableфильтр_найк.Код_моделиColumn);
  5415. }
  5416. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5417. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5418. public void SetКод_моделиNull() {
  5419. this[this.tableфильтр_найк.Код_моделиColumn] = global::System.Convert.DBNull;
  5420. }
  5421. }
  5422. /// <summary>
  5423. ///Represents strongly named DataRow class.
  5424. ///</summary>
  5425. public partial class фильтр_прадаRow : global::System.Data.DataRow {
  5426. private фильтр_прадаDataTable tableфильтр_прада;
  5427. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5428. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5429. internal фильтр_прадаRow(global::System.Data.DataRowBuilder rb) :
  5430. base(rb) {
  5431. this.tableфильтр_прада = ((фильтр_прадаDataTable)(this.Table));
  5432. }
  5433. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5434. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5435. public string Наименование_товара {
  5436. get {
  5437. try {
  5438. return ((string)(this[this.tableфильтр_прада.Наименование_товараColumn]));
  5439. }
  5440. catch (global::System.InvalidCastException e) {
  5441. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование товара\' в таблице \'фильтр прада\' равно DBNull." +
  5442. "", e);
  5443. }
  5444. }
  5445. set {
  5446. this[this.tableфильтр_прада.Наименование_товараColumn] = value;
  5447. }
  5448. }
  5449. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5450. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5451. public decimal Цена_модели {
  5452. get {
  5453. try {
  5454. return ((decimal)(this[this.tableфильтр_прада.Цена_моделиColumn]));
  5455. }
  5456. catch (global::System.InvalidCastException e) {
  5457. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'фильтр прада\' равно DBNull.", e);
  5458. }
  5459. }
  5460. set {
  5461. this[this.tableфильтр_прада.Цена_моделиColumn] = value;
  5462. }
  5463. }
  5464. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5465. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5466. public string Наименование_модели {
  5467. get {
  5468. try {
  5469. return ((string)(this[this.tableфильтр_прада.Наименование_моделиColumn]));
  5470. }
  5471. catch (global::System.InvalidCastException e) {
  5472. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'фильтр прада\' равно DBNull." +
  5473. "", e);
  5474. }
  5475. }
  5476. set {
  5477. this[this.tableфильтр_прада.Наименование_моделиColumn] = value;
  5478. }
  5479. }
  5480. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5481. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5482. public long Код_модели {
  5483. get {
  5484. try {
  5485. return ((long)(this[this.tableфильтр_прада.Код_моделиColumn]));
  5486. }
  5487. catch (global::System.InvalidCastException e) {
  5488. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'фильтр прада\' равно DBNull.", e);
  5489. }
  5490. }
  5491. set {
  5492. this[this.tableфильтр_прада.Код_моделиColumn] = value;
  5493. }
  5494. }
  5495. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5496. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5497. public bool IsНаименование_товараNull() {
  5498. return this.IsNull(this.tableфильтр_прада.Наименование_товараColumn);
  5499. }
  5500. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5501. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5502. public void SetНаименование_товараNull() {
  5503. this[this.tableфильтр_прада.Наименование_товараColumn] = global::System.Convert.DBNull;
  5504. }
  5505. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5506. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5507. public bool IsЦена_моделиNull() {
  5508. return this.IsNull(this.tableфильтр_прада.Цена_моделиColumn);
  5509. }
  5510. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5511. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5512. public void SetЦена_моделиNull() {
  5513. this[this.tableфильтр_прада.Цена_моделиColumn] = global::System.Convert.DBNull;
  5514. }
  5515. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5516. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5517. public bool IsНаименование_моделиNull() {
  5518. return this.IsNull(this.tableфильтр_прада.Наименование_моделиColumn);
  5519. }
  5520. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5521. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5522. public void SetНаименование_моделиNull() {
  5523. this[this.tableфильтр_прада.Наименование_моделиColumn] = global::System.Convert.DBNull;
  5524. }
  5525. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5526. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5527. public bool IsКод_моделиNull() {
  5528. return this.IsNull(this.tableфильтр_прада.Код_моделиColumn);
  5529. }
  5530. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5531. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5532. public void SetКод_моделиNull() {
  5533. this[this.tableфильтр_прада.Код_моделиColumn] = global::System.Convert.DBNull;
  5534. }
  5535. }
  5536. /// <summary>
  5537. ///Represents strongly named DataRow class.
  5538. ///</summary>
  5539. public partial class Фильтр_цены_больше_20_кRow : global::System.Data.DataRow {
  5540. private Фильтр_цены_больше_20_кDataTable tableФильтр_цены_больше_20_к;
  5541. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5542. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5543. internal Фильтр_цены_больше_20_кRow(global::System.Data.DataRowBuilder rb) :
  5544. base(rb) {
  5545. this.tableФильтр_цены_больше_20_к = ((Фильтр_цены_больше_20_кDataTable)(this.Table));
  5546. }
  5547. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5548. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5549. public long Код_модели {
  5550. get {
  5551. try {
  5552. return ((long)(this[this.tableФильтр_цены_больше_20_к.Код_моделиColumn]));
  5553. }
  5554. catch (global::System.InvalidCastException e) {
  5555. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Фильтр цены больше 20 к\' равно DBNul" +
  5556. "l.", e);
  5557. }
  5558. }
  5559. set {
  5560. this[this.tableФильтр_цены_больше_20_к.Код_моделиColumn] = value;
  5561. }
  5562. }
  5563. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5564. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5565. public string Наименование_модели {
  5566. get {
  5567. try {
  5568. return ((string)(this[this.tableФильтр_цены_больше_20_к.Наименование_моделиColumn]));
  5569. }
  5570. catch (global::System.InvalidCastException e) {
  5571. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Фильтр цены больше 20 к\' ра" +
  5572. "вно DBNull.", e);
  5573. }
  5574. }
  5575. set {
  5576. this[this.tableФильтр_цены_больше_20_к.Наименование_моделиColumn] = value;
  5577. }
  5578. }
  5579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5581. public decimal Цена_модели {
  5582. get {
  5583. try {
  5584. return ((decimal)(this[this.tableФильтр_цены_больше_20_к.Цена_моделиColumn]));
  5585. }
  5586. catch (global::System.InvalidCastException e) {
  5587. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Фильтр цены больше 20 к\' равно DBNu" +
  5588. "ll.", e);
  5589. }
  5590. }
  5591. set {
  5592. this[this.tableФильтр_цены_больше_20_к.Цена_моделиColumn] = value;
  5593. }
  5594. }
  5595. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5596. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5597. public long Код_товара {
  5598. get {
  5599. try {
  5600. return ((long)(this[this.tableФильтр_цены_больше_20_к.Код_товараColumn]));
  5601. }
  5602. catch (global::System.InvalidCastException e) {
  5603. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код товара\' в таблице \'Фильтр цены больше 20 к\' равно DBNul" +
  5604. "l.", e);
  5605. }
  5606. }
  5607. set {
  5608. this[this.tableФильтр_цены_больше_20_к.Код_товараColumn] = value;
  5609. }
  5610. }
  5611. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5612. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5613. public bool IsКод_моделиNull() {
  5614. return this.IsNull(this.tableФильтр_цены_больше_20_к.Код_моделиColumn);
  5615. }
  5616. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5617. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5618. public void SetКод_моделиNull() {
  5619. this[this.tableФильтр_цены_больше_20_к.Код_моделиColumn] = global::System.Convert.DBNull;
  5620. }
  5621. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5622. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5623. public bool IsНаименование_моделиNull() {
  5624. return this.IsNull(this.tableФильтр_цены_больше_20_к.Наименование_моделиColumn);
  5625. }
  5626. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5627. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5628. public void SetНаименование_моделиNull() {
  5629. this[this.tableФильтр_цены_больше_20_к.Наименование_моделиColumn] = global::System.Convert.DBNull;
  5630. }
  5631. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5632. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5633. public bool IsЦена_моделиNull() {
  5634. return this.IsNull(this.tableФильтр_цены_больше_20_к.Цена_моделиColumn);
  5635. }
  5636. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5637. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5638. public void SetЦена_моделиNull() {
  5639. this[this.tableФильтр_цены_больше_20_к.Цена_моделиColumn] = global::System.Convert.DBNull;
  5640. }
  5641. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5642. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5643. public bool IsКод_товараNull() {
  5644. return this.IsNull(this.tableФильтр_цены_больше_20_к.Код_товараColumn);
  5645. }
  5646. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5647. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5648. public void SetКод_товараNull() {
  5649. this[this.tableФильтр_цены_больше_20_к.Код_товараColumn] = global::System.Convert.DBNull;
  5650. }
  5651. }
  5652. /// <summary>
  5653. ///Represents strongly named DataRow class.
  5654. ///</summary>
  5655. public partial class Фильтр_цены_меньше_20_кRow : global::System.Data.DataRow {
  5656. private Фильтр_цены_меньше_20_кDataTable tableФильтр_цены_меньше_20_к;
  5657. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5658. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5659. internal Фильтр_цены_меньше_20_кRow(global::System.Data.DataRowBuilder rb) :
  5660. base(rb) {
  5661. this.tableФильтр_цены_меньше_20_к = ((Фильтр_цены_меньше_20_кDataTable)(this.Table));
  5662. }
  5663. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5664. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5665. public long Код_модели {
  5666. get {
  5667. try {
  5668. return ((long)(this[this.tableФильтр_цены_меньше_20_к.Код_моделиColumn]));
  5669. }
  5670. catch (global::System.InvalidCastException e) {
  5671. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код модели\' в таблице \'Фильтр цены меньше 20 к\' равно DBNul" +
  5672. "l.", e);
  5673. }
  5674. }
  5675. set {
  5676. this[this.tableФильтр_цены_меньше_20_к.Код_моделиColumn] = value;
  5677. }
  5678. }
  5679. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5680. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5681. public string Наименование_модели {
  5682. get {
  5683. try {
  5684. return ((string)(this[this.tableФильтр_цены_меньше_20_к.Наименование_моделиColumn]));
  5685. }
  5686. catch (global::System.InvalidCastException e) {
  5687. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование модели\' в таблице \'Фильтр цены меньше 20 к\' ра" +
  5688. "вно DBNull.", e);
  5689. }
  5690. }
  5691. set {
  5692. this[this.tableФильтр_цены_меньше_20_к.Наименование_моделиColumn] = value;
  5693. }
  5694. }
  5695. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5696. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5697. public decimal Цена_модели {
  5698. get {
  5699. try {
  5700. return ((decimal)(this[this.tableФильтр_цены_меньше_20_к.Цена_моделиColumn]));
  5701. }
  5702. catch (global::System.InvalidCastException e) {
  5703. throw new global::System.Data.StrongTypingException("Значение для столбца \'Цена модели\' в таблице \'Фильтр цены меньше 20 к\' равно DBNu" +
  5704. "ll.", e);
  5705. }
  5706. }
  5707. set {
  5708. this[this.tableФильтр_цены_меньше_20_к.Цена_моделиColumn] = value;
  5709. }
  5710. }
  5711. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5712. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5713. public long Код_товара {
  5714. get {
  5715. try {
  5716. return ((long)(this[this.tableФильтр_цены_меньше_20_к.Код_товараColumn]));
  5717. }
  5718. catch (global::System.InvalidCastException e) {
  5719. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код товара\' в таблице \'Фильтр цены меньше 20 к\' равно DBNul" +
  5720. "l.", e);
  5721. }
  5722. }
  5723. set {
  5724. this[this.tableФильтр_цены_меньше_20_к.Код_товараColumn] = value;
  5725. }
  5726. }
  5727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5729. public bool IsКод_моделиNull() {
  5730. return this.IsNull(this.tableФильтр_цены_меньше_20_к.Код_моделиColumn);
  5731. }
  5732. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5733. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5734. public void SetКод_моделиNull() {
  5735. this[this.tableФильтр_цены_меньше_20_к.Код_моделиColumn] = global::System.Convert.DBNull;
  5736. }
  5737. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5738. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5739. public bool IsНаименование_моделиNull() {
  5740. return this.IsNull(this.tableФильтр_цены_меньше_20_к.Наименование_моделиColumn);
  5741. }
  5742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5744. public void SetНаименование_моделиNull() {
  5745. this[this.tableФильтр_цены_меньше_20_к.Наименование_моделиColumn] = global::System.Convert.DBNull;
  5746. }
  5747. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5748. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5749. public bool IsЦена_моделиNull() {
  5750. return this.IsNull(this.tableФильтр_цены_меньше_20_к.Цена_моделиColumn);
  5751. }
  5752. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5753. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5754. public void SetЦена_моделиNull() {
  5755. this[this.tableФильтр_цены_меньше_20_к.Цена_моделиColumn] = global::System.Convert.DBNull;
  5756. }
  5757. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5758. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5759. public bool IsКод_товараNull() {
  5760. return this.IsNull(this.tableФильтр_цены_меньше_20_к.Код_товараColumn);
  5761. }
  5762. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5763. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5764. public void SetКод_товараNull() {
  5765. this[this.tableФильтр_цены_меньше_20_к.Код_товараColumn] = global::System.Convert.DBNull;
  5766. }
  5767. }
  5768. /// <summary>
  5769. ///Row event argument class
  5770. ///</summary>
  5771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5772. public class МоделиRowChangeEvent : global::System.EventArgs {
  5773. private МоделиRow eventRow;
  5774. private global::System.Data.DataRowAction eventAction;
  5775. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5776. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5777. public МоделиRowChangeEvent(МоделиRow row, global::System.Data.DataRowAction action) {
  5778. this.eventRow = row;
  5779. this.eventAction = action;
  5780. }
  5781. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5782. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5783. public МоделиRow Row {
  5784. get {
  5785. return this.eventRow;
  5786. }
  5787. }
  5788. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5790. public global::System.Data.DataRowAction Action {
  5791. get {
  5792. return this.eventAction;
  5793. }
  5794. }
  5795. }
  5796. /// <summary>
  5797. ///Row event argument class
  5798. ///</summary>
  5799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5800. public class ПоступленияRowChangeEvent : global::System.EventArgs {
  5801. private ПоступленияRow eventRow;
  5802. private global::System.Data.DataRowAction eventAction;
  5803. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5804. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5805. public ПоступленияRowChangeEvent(ПоступленияRow row, global::System.Data.DataRowAction action) {
  5806. this.eventRow = row;
  5807. this.eventAction = action;
  5808. }
  5809. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5810. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5811. public ПоступленияRow Row {
  5812. get {
  5813. return this.eventRow;
  5814. }
  5815. }
  5816. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5817. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5818. public global::System.Data.DataRowAction Action {
  5819. get {
  5820. return this.eventAction;
  5821. }
  5822. }
  5823. }
  5824. /// <summary>
  5825. ///Row event argument class
  5826. ///</summary>
  5827. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5828. public class ТоварRowChangeEvent : global::System.EventArgs {
  5829. private ТоварRow eventRow;
  5830. private global::System.Data.DataRowAction eventAction;
  5831. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5832. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5833. public ТоварRowChangeEvent(ТоварRow row, global::System.Data.DataRowAction action) {
  5834. this.eventRow = row;
  5835. this.eventAction = action;
  5836. }
  5837. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5838. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5839. public ТоварRow Row {
  5840. get {
  5841. return this.eventRow;
  5842. }
  5843. }
  5844. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5845. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5846. public global::System.Data.DataRowAction Action {
  5847. get {
  5848. return this.eventAction;
  5849. }
  5850. }
  5851. }
  5852. /// <summary>
  5853. ///Row event argument class
  5854. ///</summary>
  5855. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5856. public class _Запрос_Модели___поступленияRowChangeEvent : global::System.EventArgs {
  5857. private _Запрос_Модели___поступленияRow eventRow;
  5858. private global::System.Data.DataRowAction eventAction;
  5859. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5860. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5861. public _Запрос_Модели___поступленияRowChangeEvent(_Запрос_Модели___поступленияRow row, global::System.Data.DataRowAction action) {
  5862. this.eventRow = row;
  5863. this.eventAction = action;
  5864. }
  5865. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5866. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5867. public _Запрос_Модели___поступленияRow Row {
  5868. get {
  5869. return this.eventRow;
  5870. }
  5871. }
  5872. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5873. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5874. public global::System.Data.DataRowAction Action {
  5875. get {
  5876. return this.eventAction;
  5877. }
  5878. }
  5879. }
  5880. /// <summary>
  5881. ///Row event argument class
  5882. ///</summary>
  5883. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5884. public class _Запрос_Модель___ТоварRowChangeEvent : global::System.EventArgs {
  5885. private _Запрос_Модель___ТоварRow eventRow;
  5886. private global::System.Data.DataRowAction eventAction;
  5887. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5888. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5889. public _Запрос_Модель___ТоварRowChangeEvent(_Запрос_Модель___ТоварRow row, global::System.Data.DataRowAction action) {
  5890. this.eventRow = row;
  5891. this.eventAction = action;
  5892. }
  5893. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5894. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5895. public _Запрос_Модель___ТоварRow Row {
  5896. get {
  5897. return this.eventRow;
  5898. }
  5899. }
  5900. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5901. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5902. public global::System.Data.DataRowAction Action {
  5903. get {
  5904. return this.eventAction;
  5905. }
  5906. }
  5907. }
  5908. /// <summary>
  5909. ///Row event argument class
  5910. ///</summary>
  5911. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5912. public class Фильтр_АддидасRowChangeEvent : global::System.EventArgs {
  5913. private Фильтр_АддидасRow eventRow;
  5914. private global::System.Data.DataRowAction eventAction;
  5915. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5916. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5917. public Фильтр_АддидасRowChangeEvent(Фильтр_АддидасRow row, global::System.Data.DataRowAction action) {
  5918. this.eventRow = row;
  5919. this.eventAction = action;
  5920. }
  5921. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5922. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5923. public Фильтр_АддидасRow Row {
  5924. get {
  5925. return this.eventRow;
  5926. }
  5927. }
  5928. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5929. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5930. public global::System.Data.DataRowAction Action {
  5931. get {
  5932. return this.eventAction;
  5933. }
  5934. }
  5935. }
  5936. /// <summary>
  5937. ///Row event argument class
  5938. ///</summary>
  5939. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5940. public class Фильтр_диорRowChangeEvent : global::System.EventArgs {
  5941. private Фильтр_диорRow eventRow;
  5942. private global::System.Data.DataRowAction eventAction;
  5943. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5944. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5945. public Фильтр_диорRowChangeEvent(Фильтр_диорRow row, global::System.Data.DataRowAction action) {
  5946. this.eventRow = row;
  5947. this.eventAction = action;
  5948. }
  5949. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5950. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5951. public Фильтр_диорRow Row {
  5952. get {
  5953. return this.eventRow;
  5954. }
  5955. }
  5956. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5957. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5958. public global::System.Data.DataRowAction Action {
  5959. get {
  5960. return this.eventAction;
  5961. }
  5962. }
  5963. }
  5964. /// <summary>
  5965. ///Row event argument class
  5966. ///</summary>
  5967. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5968. public class _Фильтр_кол_ва_больше_15RowChangeEvent : global::System.EventArgs {
  5969. private _Фильтр_кол_ва_больше_15Row eventRow;
  5970. private global::System.Data.DataRowAction eventAction;
  5971. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5972. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5973. public _Фильтр_кол_ва_больше_15RowChangeEvent(_Фильтр_кол_ва_больше_15Row row, global::System.Data.DataRowAction action) {
  5974. this.eventRow = row;
  5975. this.eventAction = action;
  5976. }
  5977. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5978. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5979. public _Фильтр_кол_ва_больше_15Row Row {
  5980. get {
  5981. return this.eventRow;
  5982. }
  5983. }
  5984. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5985. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5986. public global::System.Data.DataRowAction Action {
  5987. get {
  5988. return this.eventAction;
  5989. }
  5990. }
  5991. }
  5992. /// <summary>
  5993. ///Row event argument class
  5994. ///</summary>
  5995. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5996. public class _Фильтр_кол_ва_меньше_15RowChangeEvent : global::System.EventArgs {
  5997. private _Фильтр_кол_ва_меньше_15Row eventRow;
  5998. private global::System.Data.DataRowAction eventAction;
  5999. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6000. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6001. public _Фильтр_кол_ва_меньше_15RowChangeEvent(_Фильтр_кол_ва_меньше_15Row row, global::System.Data.DataRowAction action) {
  6002. this.eventRow = row;
  6003. this.eventAction = action;
  6004. }
  6005. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6006. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6007. public _Фильтр_кол_ва_меньше_15Row Row {
  6008. get {
  6009. return this.eventRow;
  6010. }
  6011. }
  6012. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6013. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6014. public global::System.Data.DataRowAction Action {
  6015. get {
  6016. return this.eventAction;
  6017. }
  6018. }
  6019. }
  6020. /// <summary>
  6021. ///Row event argument class
  6022. ///</summary>
  6023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6024. public class фильтр_найкRowChangeEvent : global::System.EventArgs {
  6025. private фильтр_найкRow eventRow;
  6026. private global::System.Data.DataRowAction eventAction;
  6027. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6028. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6029. public фильтр_найкRowChangeEvent(фильтр_найкRow row, global::System.Data.DataRowAction action) {
  6030. this.eventRow = row;
  6031. this.eventAction = action;
  6032. }
  6033. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6034. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6035. public фильтр_найкRow Row {
  6036. get {
  6037. return this.eventRow;
  6038. }
  6039. }
  6040. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6041. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6042. public global::System.Data.DataRowAction Action {
  6043. get {
  6044. return this.eventAction;
  6045. }
  6046. }
  6047. }
  6048. /// <summary>
  6049. ///Row event argument class
  6050. ///</summary>
  6051. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6052. public class фильтр_прадаRowChangeEvent : global::System.EventArgs {
  6053. private фильтр_прадаRow eventRow;
  6054. private global::System.Data.DataRowAction eventAction;
  6055. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6056. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6057. public фильтр_прадаRowChangeEvent(фильтр_прадаRow row, global::System.Data.DataRowAction action) {
  6058. this.eventRow = row;
  6059. this.eventAction = action;
  6060. }
  6061. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6062. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6063. public фильтр_прадаRow Row {
  6064. get {
  6065. return this.eventRow;
  6066. }
  6067. }
  6068. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6069. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6070. public global::System.Data.DataRowAction Action {
  6071. get {
  6072. return this.eventAction;
  6073. }
  6074. }
  6075. }
  6076. /// <summary>
  6077. ///Row event argument class
  6078. ///</summary>
  6079. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6080. public class Фильтр_цены_больше_20_кRowChangeEvent : global::System.EventArgs {
  6081. private Фильтр_цены_больше_20_кRow eventRow;
  6082. private global::System.Data.DataRowAction eventAction;
  6083. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6084. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6085. public Фильтр_цены_больше_20_кRowChangeEvent(Фильтр_цены_больше_20_кRow row, global::System.Data.DataRowAction action) {
  6086. this.eventRow = row;
  6087. this.eventAction = action;
  6088. }
  6089. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6090. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6091. public Фильтр_цены_больше_20_кRow Row {
  6092. get {
  6093. return this.eventRow;
  6094. }
  6095. }
  6096. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6097. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6098. public global::System.Data.DataRowAction Action {
  6099. get {
  6100. return this.eventAction;
  6101. }
  6102. }
  6103. }
  6104. /// <summary>
  6105. ///Row event argument class
  6106. ///</summary>
  6107. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6108. public class Фильтр_цены_меньше_20_кRowChangeEvent : global::System.EventArgs {
  6109. private Фильтр_цены_меньше_20_кRow eventRow;
  6110. private global::System.Data.DataRowAction eventAction;
  6111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6113. public Фильтр_цены_меньше_20_кRowChangeEvent(Фильтр_цены_меньше_20_кRow row, global::System.Data.DataRowAction action) {
  6114. this.eventRow = row;
  6115. this.eventAction = action;
  6116. }
  6117. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6118. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6119. public Фильтр_цены_меньше_20_кRow Row {
  6120. get {
  6121. return this.eventRow;
  6122. }
  6123. }
  6124. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6125. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6126. public global::System.Data.DataRowAction Action {
  6127. get {
  6128. return this.eventAction;
  6129. }
  6130. }
  6131. }
  6132. }
  6133. }
  6134. namespace WindowsFormsApp1.Khozeev_ФАБРИКАDataSetTableAdapters {
  6135. /// <summary>
  6136. ///Represents the connection and commands used to retrieve and save data.
  6137. ///</summary>
  6138. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6139. [global::System.ComponentModel.ToolboxItem(true)]
  6140. [global::System.ComponentModel.DataObjectAttribute(true)]
  6141. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6142. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6143. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6144. public partial class МоделиTableAdapter : global::System.ComponentModel.Component {
  6145. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6146. private global::System.Data.SqlClient.SqlConnection _connection;
  6147. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6148. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6149. private bool _clearBeforeFill;
  6150. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6151. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6152. public МоделиTableAdapter() {
  6153. this.ClearBeforeFill = true;
  6154. }
  6155. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6156. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6157. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6158. get {
  6159. if ((this._adapter == null)) {
  6160. this.InitAdapter();
  6161. }
  6162. return this._adapter;
  6163. }
  6164. }
  6165. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6166. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6167. internal global::System.Data.SqlClient.SqlConnection Connection {
  6168. get {
  6169. if ((this._connection == null)) {
  6170. this.InitConnection();
  6171. }
  6172. return this._connection;
  6173. }
  6174. set {
  6175. this._connection = value;
  6176. if ((this.Adapter.InsertCommand != null)) {
  6177. this.Adapter.InsertCommand.Connection = value;
  6178. }
  6179. if ((this.Adapter.DeleteCommand != null)) {
  6180. this.Adapter.DeleteCommand.Connection = value;
  6181. }
  6182. if ((this.Adapter.UpdateCommand != null)) {
  6183. this.Adapter.UpdateCommand.Connection = value;
  6184. }
  6185. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6186. if ((this.CommandCollection[i] != null)) {
  6187. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6188. }
  6189. }
  6190. }
  6191. }
  6192. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6193. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6194. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6195. get {
  6196. return this._transaction;
  6197. }
  6198. set {
  6199. this._transaction = value;
  6200. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6201. this.CommandCollection[i].Transaction = this._transaction;
  6202. }
  6203. if (((this.Adapter != null)
  6204. && (this.Adapter.DeleteCommand != null))) {
  6205. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6206. }
  6207. if (((this.Adapter != null)
  6208. && (this.Adapter.InsertCommand != null))) {
  6209. this.Adapter.InsertCommand.Transaction = this._transaction;
  6210. }
  6211. if (((this.Adapter != null)
  6212. && (this.Adapter.UpdateCommand != null))) {
  6213. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6214. }
  6215. }
  6216. }
  6217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6218. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6219. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6220. get {
  6221. if ((this._commandCollection == null)) {
  6222. this.InitCommandCollection();
  6223. }
  6224. return this._commandCollection;
  6225. }
  6226. }
  6227. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6228. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6229. public bool ClearBeforeFill {
  6230. get {
  6231. return this._clearBeforeFill;
  6232. }
  6233. set {
  6234. this._clearBeforeFill = value;
  6235. }
  6236. }
  6237. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6238. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6239. private void InitAdapter() {
  6240. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6241. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6242. tableMapping.SourceTable = "Table";
  6243. tableMapping.DataSetTable = "Модели";
  6244. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  6245. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  6246. tableMapping.ColumnMappings.Add("Код товара", "Код товара");
  6247. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  6248. this._adapter.TableMappings.Add(tableMapping);
  6249. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  6250. this._adapter.InsertCommand.Connection = this.Connection;
  6251. this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[Модели] ([Код модели], [Наименование модели], [Код товара], [Ц" +
  6252. "ена модели]) VALUES (@Код_модели, @Наименование_модели, @Код_товара, @Цена_модел" +
  6253. "и)";
  6254. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  6255. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Код_модели", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код модели", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6256. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Наименование_модели", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Наименование модели", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6257. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Код_товара", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код товара", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6258. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Цена_модели", global::System.Data.SqlDbType.Money, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Цена модели", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6259. }
  6260. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6261. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6262. private void InitConnection() {
  6263. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6264. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  6265. }
  6266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6267. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6268. private void InitCommandCollection() {
  6269. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6270. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6271. this._commandCollection[0].Connection = this.Connection;
  6272. this._commandCollection[0].CommandText = "SELECT [Код модели], [Наименование модели], [Код товара], [Цена модели] FROM dbo." +
  6273. "Модели";
  6274. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6275. }
  6276. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6277. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6278. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6279. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6280. public virtual int Fill(Khozeev_ФАБРИКАDataSet.МоделиDataTable dataTable) {
  6281. this.Adapter.SelectCommand = this.CommandCollection[0];
  6282. if ((this.ClearBeforeFill == true)) {
  6283. dataTable.Clear();
  6284. }
  6285. int returnValue = this.Adapter.Fill(dataTable);
  6286. return returnValue;
  6287. }
  6288. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6289. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6290. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6291. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6292. public virtual Khozeev_ФАБРИКАDataSet.МоделиDataTable GetData() {
  6293. this.Adapter.SelectCommand = this.CommandCollection[0];
  6294. Khozeev_ФАБРИКАDataSet.МоделиDataTable dataTable = new Khozeev_ФАБРИКАDataSet.МоделиDataTable();
  6295. this.Adapter.Fill(dataTable);
  6296. return dataTable;
  6297. }
  6298. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6299. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6300. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6301. public virtual int Update(Khozeev_ФАБРИКАDataSet.МоделиDataTable dataTable) {
  6302. return this.Adapter.Update(dataTable);
  6303. }
  6304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6306. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6307. public virtual int Update(Khozeev_ФАБРИКАDataSet dataSet) {
  6308. return this.Adapter.Update(dataSet, "Модели");
  6309. }
  6310. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6311. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6312. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6313. public virtual int Update(global::System.Data.DataRow dataRow) {
  6314. return this.Adapter.Update(new global::System.Data.DataRow[] {
  6315. dataRow});
  6316. }
  6317. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6318. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6319. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6320. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  6321. return this.Adapter.Update(dataRows);
  6322. }
  6323. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6324. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6325. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6326. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  6327. public virtual int Insert(global::System.Nullable<long> Код_модели, string Наименование_модели, global::System.Nullable<long> Код_товара, global::System.Nullable<decimal> Цена_модели) {
  6328. if ((Код_модели.HasValue == true)) {
  6329. this.Adapter.InsertCommand.Parameters[0].Value = ((long)(Код_модели.Value));
  6330. }
  6331. else {
  6332. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  6333. }
  6334. if ((Наименование_модели == null)) {
  6335. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  6336. }
  6337. else {
  6338. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Наименование_модели));
  6339. }
  6340. if ((Код_товара.HasValue == true)) {
  6341. this.Adapter.InsertCommand.Parameters[2].Value = ((long)(Код_товара.Value));
  6342. }
  6343. else {
  6344. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  6345. }
  6346. if ((Цена_модели.HasValue == true)) {
  6347. this.Adapter.InsertCommand.Parameters[3].Value = ((decimal)(Цена_модели.Value));
  6348. }
  6349. else {
  6350. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  6351. }
  6352. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  6353. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  6354. != global::System.Data.ConnectionState.Open)) {
  6355. this.Adapter.InsertCommand.Connection.Open();
  6356. }
  6357. try {
  6358. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  6359. return returnValue;
  6360. }
  6361. finally {
  6362. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  6363. this.Adapter.InsertCommand.Connection.Close();
  6364. }
  6365. }
  6366. }
  6367. }
  6368. /// <summary>
  6369. ///Represents the connection and commands used to retrieve and save data.
  6370. ///</summary>
  6371. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6372. [global::System.ComponentModel.ToolboxItem(true)]
  6373. [global::System.ComponentModel.DataObjectAttribute(true)]
  6374. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6375. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6376. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6377. public partial class ПоступленияTableAdapter : global::System.ComponentModel.Component {
  6378. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6379. private global::System.Data.SqlClient.SqlConnection _connection;
  6380. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6381. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6382. private bool _clearBeforeFill;
  6383. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6384. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6385. public ПоступленияTableAdapter() {
  6386. this.ClearBeforeFill = true;
  6387. }
  6388. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6389. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6390. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6391. get {
  6392. if ((this._adapter == null)) {
  6393. this.InitAdapter();
  6394. }
  6395. return this._adapter;
  6396. }
  6397. }
  6398. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6399. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6400. internal global::System.Data.SqlClient.SqlConnection Connection {
  6401. get {
  6402. if ((this._connection == null)) {
  6403. this.InitConnection();
  6404. }
  6405. return this._connection;
  6406. }
  6407. set {
  6408. this._connection = value;
  6409. if ((this.Adapter.InsertCommand != null)) {
  6410. this.Adapter.InsertCommand.Connection = value;
  6411. }
  6412. if ((this.Adapter.DeleteCommand != null)) {
  6413. this.Adapter.DeleteCommand.Connection = value;
  6414. }
  6415. if ((this.Adapter.UpdateCommand != null)) {
  6416. this.Adapter.UpdateCommand.Connection = value;
  6417. }
  6418. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6419. if ((this.CommandCollection[i] != null)) {
  6420. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6421. }
  6422. }
  6423. }
  6424. }
  6425. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6426. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6427. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6428. get {
  6429. return this._transaction;
  6430. }
  6431. set {
  6432. this._transaction = value;
  6433. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6434. this.CommandCollection[i].Transaction = this._transaction;
  6435. }
  6436. if (((this.Adapter != null)
  6437. && (this.Adapter.DeleteCommand != null))) {
  6438. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6439. }
  6440. if (((this.Adapter != null)
  6441. && (this.Adapter.InsertCommand != null))) {
  6442. this.Adapter.InsertCommand.Transaction = this._transaction;
  6443. }
  6444. if (((this.Adapter != null)
  6445. && (this.Adapter.UpdateCommand != null))) {
  6446. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6447. }
  6448. }
  6449. }
  6450. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6451. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6452. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6453. get {
  6454. if ((this._commandCollection == null)) {
  6455. this.InitCommandCollection();
  6456. }
  6457. return this._commandCollection;
  6458. }
  6459. }
  6460. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6461. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6462. public bool ClearBeforeFill {
  6463. get {
  6464. return this._clearBeforeFill;
  6465. }
  6466. set {
  6467. this._clearBeforeFill = value;
  6468. }
  6469. }
  6470. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6471. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6472. private void InitAdapter() {
  6473. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6474. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6475. tableMapping.SourceTable = "Table";
  6476. tableMapping.DataSetTable = "Поступления";
  6477. tableMapping.ColumnMappings.Add("Код поступления", "Код поступления");
  6478. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  6479. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  6480. tableMapping.ColumnMappings.Add("Модели товара", "Модели товара");
  6481. tableMapping.ColumnMappings.Add("Количество", "Количество");
  6482. tableMapping.ColumnMappings.Add("Кто принял товар", "Кто принял товар");
  6483. this._adapter.TableMappings.Add(tableMapping);
  6484. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  6485. this._adapter.InsertCommand.Connection = this.Connection;
  6486. this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[Поступления] ([Код поступления], [Код модели], [Дата поступлен" +
  6487. "ия], [Модели товара], [Количество], [Кто принял товар]) VALUES (@Код_поступления" +
  6488. ", @Код_модели, @Дата_поступления, @Модели_товара, @Количество, @Кто_принял_товар" +
  6489. ")";
  6490. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  6491. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Код_поступления", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код поступления", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6492. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Код_модели", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код модели", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6493. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Дата_поступления", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата поступления", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6494. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Модели_товара", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Модели товара", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6495. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Количество", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Количество", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6496. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Кто_принял_товар", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Кто принял товар", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6497. }
  6498. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6499. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6500. private void InitConnection() {
  6501. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6502. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  6503. }
  6504. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6505. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6506. private void InitCommandCollection() {
  6507. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6508. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6509. this._commandCollection[0].Connection = this.Connection;
  6510. this._commandCollection[0].CommandText = "SELECT [Код поступления], [Код модели], [Дата поступления], [Модели товара], Коли" +
  6511. "чество, [Кто принял товар] FROM dbo.Поступления";
  6512. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6513. }
  6514. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6515. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6516. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6517. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6518. public virtual int Fill(Khozeev_ФАБРИКАDataSet.ПоступленияDataTable dataTable) {
  6519. this.Adapter.SelectCommand = this.CommandCollection[0];
  6520. if ((this.ClearBeforeFill == true)) {
  6521. dataTable.Clear();
  6522. }
  6523. int returnValue = this.Adapter.Fill(dataTable);
  6524. return returnValue;
  6525. }
  6526. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6527. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6528. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6529. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6530. public virtual Khozeev_ФАБРИКАDataSet.ПоступленияDataTable GetData() {
  6531. this.Adapter.SelectCommand = this.CommandCollection[0];
  6532. Khozeev_ФАБРИКАDataSet.ПоступленияDataTable dataTable = new Khozeev_ФАБРИКАDataSet.ПоступленияDataTable();
  6533. this.Adapter.Fill(dataTable);
  6534. return dataTable;
  6535. }
  6536. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6537. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6538. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6539. public virtual int Update(Khozeev_ФАБРИКАDataSet.ПоступленияDataTable dataTable) {
  6540. return this.Adapter.Update(dataTable);
  6541. }
  6542. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6543. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6544. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6545. public virtual int Update(Khozeev_ФАБРИКАDataSet dataSet) {
  6546. return this.Adapter.Update(dataSet, "Поступления");
  6547. }
  6548. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6549. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6550. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6551. public virtual int Update(global::System.Data.DataRow dataRow) {
  6552. return this.Adapter.Update(new global::System.Data.DataRow[] {
  6553. dataRow});
  6554. }
  6555. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6556. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6557. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6558. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  6559. return this.Adapter.Update(dataRows);
  6560. }
  6561. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6562. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6563. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6564. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  6565. public virtual int Insert(global::System.Nullable<long> Код_поступления, global::System.Nullable<long> Код_модели, global::System.Nullable<global::System.DateTime> Дата_поступления, string Модели_товара, global::System.Nullable<int> Количество, string Кто_принял_товар) {
  6566. if ((Код_поступления.HasValue == true)) {
  6567. this.Adapter.InsertCommand.Parameters[0].Value = ((long)(Код_поступления.Value));
  6568. }
  6569. else {
  6570. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  6571. }
  6572. if ((Код_модели.HasValue == true)) {
  6573. this.Adapter.InsertCommand.Parameters[1].Value = ((long)(Код_модели.Value));
  6574. }
  6575. else {
  6576. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  6577. }
  6578. if ((Дата_поступления.HasValue == true)) {
  6579. this.Adapter.InsertCommand.Parameters[2].Value = ((System.DateTime)(Дата_поступления.Value));
  6580. }
  6581. else {
  6582. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  6583. }
  6584. if ((Модели_товара == null)) {
  6585. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  6586. }
  6587. else {
  6588. this.Adapter.InsertCommand.Parameters[3].Value = ((string)(Модели_товара));
  6589. }
  6590. if ((Количество.HasValue == true)) {
  6591. this.Adapter.InsertCommand.Parameters[4].Value = ((int)(Количество.Value));
  6592. }
  6593. else {
  6594. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  6595. }
  6596. if ((Кто_принял_товар == null)) {
  6597. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  6598. }
  6599. else {
  6600. this.Adapter.InsertCommand.Parameters[5].Value = ((string)(Кто_принял_товар));
  6601. }
  6602. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  6603. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  6604. != global::System.Data.ConnectionState.Open)) {
  6605. this.Adapter.InsertCommand.Connection.Open();
  6606. }
  6607. try {
  6608. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  6609. return returnValue;
  6610. }
  6611. finally {
  6612. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  6613. this.Adapter.InsertCommand.Connection.Close();
  6614. }
  6615. }
  6616. }
  6617. }
  6618. /// <summary>
  6619. ///Represents the connection and commands used to retrieve and save data.
  6620. ///</summary>
  6621. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6622. [global::System.ComponentModel.ToolboxItem(true)]
  6623. [global::System.ComponentModel.DataObjectAttribute(true)]
  6624. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6625. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6626. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6627. public partial class ТоварTableAdapter : global::System.ComponentModel.Component {
  6628. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6629. private global::System.Data.SqlClient.SqlConnection _connection;
  6630. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6631. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6632. private bool _clearBeforeFill;
  6633. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6634. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6635. public ТоварTableAdapter() {
  6636. this.ClearBeforeFill = true;
  6637. }
  6638. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6639. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6640. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6641. get {
  6642. if ((this._adapter == null)) {
  6643. this.InitAdapter();
  6644. }
  6645. return this._adapter;
  6646. }
  6647. }
  6648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6650. internal global::System.Data.SqlClient.SqlConnection Connection {
  6651. get {
  6652. if ((this._connection == null)) {
  6653. this.InitConnection();
  6654. }
  6655. return this._connection;
  6656. }
  6657. set {
  6658. this._connection = value;
  6659. if ((this.Adapter.InsertCommand != null)) {
  6660. this.Adapter.InsertCommand.Connection = value;
  6661. }
  6662. if ((this.Adapter.DeleteCommand != null)) {
  6663. this.Adapter.DeleteCommand.Connection = value;
  6664. }
  6665. if ((this.Adapter.UpdateCommand != null)) {
  6666. this.Adapter.UpdateCommand.Connection = value;
  6667. }
  6668. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6669. if ((this.CommandCollection[i] != null)) {
  6670. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6671. }
  6672. }
  6673. }
  6674. }
  6675. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6676. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6677. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6678. get {
  6679. return this._transaction;
  6680. }
  6681. set {
  6682. this._transaction = value;
  6683. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6684. this.CommandCollection[i].Transaction = this._transaction;
  6685. }
  6686. if (((this.Adapter != null)
  6687. && (this.Adapter.DeleteCommand != null))) {
  6688. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6689. }
  6690. if (((this.Adapter != null)
  6691. && (this.Adapter.InsertCommand != null))) {
  6692. this.Adapter.InsertCommand.Transaction = this._transaction;
  6693. }
  6694. if (((this.Adapter != null)
  6695. && (this.Adapter.UpdateCommand != null))) {
  6696. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6697. }
  6698. }
  6699. }
  6700. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6701. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6702. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6703. get {
  6704. if ((this._commandCollection == null)) {
  6705. this.InitCommandCollection();
  6706. }
  6707. return this._commandCollection;
  6708. }
  6709. }
  6710. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6711. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6712. public bool ClearBeforeFill {
  6713. get {
  6714. return this._clearBeforeFill;
  6715. }
  6716. set {
  6717. this._clearBeforeFill = value;
  6718. }
  6719. }
  6720. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6721. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6722. private void InitAdapter() {
  6723. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6724. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6725. tableMapping.SourceTable = "Table";
  6726. tableMapping.DataSetTable = "Товар";
  6727. tableMapping.ColumnMappings.Add("Код товара", "Код товара");
  6728. tableMapping.ColumnMappings.Add("Наименование товара", "Наименование товара");
  6729. this._adapter.TableMappings.Add(tableMapping);
  6730. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  6731. this._adapter.InsertCommand.Connection = this.Connection;
  6732. this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[Товар] ([Код товара], [Наименование товара]) VALUES (@Код_това" +
  6733. "ра, @Наименование_товара)";
  6734. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  6735. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Код_товара", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код товара", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6736. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Наименование_товара", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Наименование товара", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  6737. }
  6738. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6739. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6740. private void InitConnection() {
  6741. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6742. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  6743. }
  6744. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6745. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6746. private void InitCommandCollection() {
  6747. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6748. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6749. this._commandCollection[0].Connection = this.Connection;
  6750. this._commandCollection[0].CommandText = "SELECT [Код товара], [Наименование товара] FROM dbo.Товар";
  6751. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6752. }
  6753. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6754. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6755. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6756. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6757. public virtual int Fill(Khozeev_ФАБРИКАDataSet.ТоварDataTable dataTable) {
  6758. this.Adapter.SelectCommand = this.CommandCollection[0];
  6759. if ((this.ClearBeforeFill == true)) {
  6760. dataTable.Clear();
  6761. }
  6762. int returnValue = this.Adapter.Fill(dataTable);
  6763. return returnValue;
  6764. }
  6765. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6766. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6767. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6768. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6769. public virtual Khozeev_ФАБРИКАDataSet.ТоварDataTable GetData() {
  6770. this.Adapter.SelectCommand = this.CommandCollection[0];
  6771. Khozeev_ФАБРИКАDataSet.ТоварDataTable dataTable = new Khozeev_ФАБРИКАDataSet.ТоварDataTable();
  6772. this.Adapter.Fill(dataTable);
  6773. return dataTable;
  6774. }
  6775. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6776. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6777. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6778. public virtual int Update(Khozeev_ФАБРИКАDataSet.ТоварDataTable dataTable) {
  6779. return this.Adapter.Update(dataTable);
  6780. }
  6781. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6782. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6783. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6784. public virtual int Update(Khozeev_ФАБРИКАDataSet dataSet) {
  6785. return this.Adapter.Update(dataSet, "Товар");
  6786. }
  6787. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6788. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6789. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6790. public virtual int Update(global::System.Data.DataRow dataRow) {
  6791. return this.Adapter.Update(new global::System.Data.DataRow[] {
  6792. dataRow});
  6793. }
  6794. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6795. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6796. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6797. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  6798. return this.Adapter.Update(dataRows);
  6799. }
  6800. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6801. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6802. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6803. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  6804. public virtual int Insert(global::System.Nullable<long> Код_товара, string Наименование_товара) {
  6805. if ((Код_товара.HasValue == true)) {
  6806. this.Adapter.InsertCommand.Parameters[0].Value = ((long)(Код_товара.Value));
  6807. }
  6808. else {
  6809. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  6810. }
  6811. if ((Наименование_товара == null)) {
  6812. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  6813. }
  6814. else {
  6815. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Наименование_товара));
  6816. }
  6817. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  6818. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  6819. != global::System.Data.ConnectionState.Open)) {
  6820. this.Adapter.InsertCommand.Connection.Open();
  6821. }
  6822. try {
  6823. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  6824. return returnValue;
  6825. }
  6826. finally {
  6827. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  6828. this.Adapter.InsertCommand.Connection.Close();
  6829. }
  6830. }
  6831. }
  6832. }
  6833. /// <summary>
  6834. ///Represents the connection and commands used to retrieve and save data.
  6835. ///</summary>
  6836. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6837. [global::System.ComponentModel.ToolboxItem(true)]
  6838. [global::System.ComponentModel.DataObjectAttribute(true)]
  6839. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6840. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6841. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6842. public partial class Запрос_Модели___поступленияTableAdapter : global::System.ComponentModel.Component {
  6843. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6844. private global::System.Data.SqlClient.SqlConnection _connection;
  6845. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6846. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6847. private bool _clearBeforeFill;
  6848. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6849. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6850. public Запрос_Модели___поступленияTableAdapter() {
  6851. this.ClearBeforeFill = true;
  6852. }
  6853. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6854. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6855. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6856. get {
  6857. if ((this._adapter == null)) {
  6858. this.InitAdapter();
  6859. }
  6860. return this._adapter;
  6861. }
  6862. }
  6863. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6864. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6865. internal global::System.Data.SqlClient.SqlConnection Connection {
  6866. get {
  6867. if ((this._connection == null)) {
  6868. this.InitConnection();
  6869. }
  6870. return this._connection;
  6871. }
  6872. set {
  6873. this._connection = value;
  6874. if ((this.Adapter.InsertCommand != null)) {
  6875. this.Adapter.InsertCommand.Connection = value;
  6876. }
  6877. if ((this.Adapter.DeleteCommand != null)) {
  6878. this.Adapter.DeleteCommand.Connection = value;
  6879. }
  6880. if ((this.Adapter.UpdateCommand != null)) {
  6881. this.Adapter.UpdateCommand.Connection = value;
  6882. }
  6883. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6884. if ((this.CommandCollection[i] != null)) {
  6885. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6886. }
  6887. }
  6888. }
  6889. }
  6890. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6891. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6892. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6893. get {
  6894. return this._transaction;
  6895. }
  6896. set {
  6897. this._transaction = value;
  6898. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6899. this.CommandCollection[i].Transaction = this._transaction;
  6900. }
  6901. if (((this.Adapter != null)
  6902. && (this.Adapter.DeleteCommand != null))) {
  6903. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6904. }
  6905. if (((this.Adapter != null)
  6906. && (this.Adapter.InsertCommand != null))) {
  6907. this.Adapter.InsertCommand.Transaction = this._transaction;
  6908. }
  6909. if (((this.Adapter != null)
  6910. && (this.Adapter.UpdateCommand != null))) {
  6911. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6912. }
  6913. }
  6914. }
  6915. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6916. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6917. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6918. get {
  6919. if ((this._commandCollection == null)) {
  6920. this.InitCommandCollection();
  6921. }
  6922. return this._commandCollection;
  6923. }
  6924. }
  6925. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6926. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6927. public bool ClearBeforeFill {
  6928. get {
  6929. return this._clearBeforeFill;
  6930. }
  6931. set {
  6932. this._clearBeforeFill = value;
  6933. }
  6934. }
  6935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6937. private void InitAdapter() {
  6938. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6939. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6940. tableMapping.SourceTable = "Table";
  6941. tableMapping.DataSetTable = "Запрос Модели + поступления";
  6942. tableMapping.ColumnMappings.Add("Код товара", "Код товара");
  6943. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  6944. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  6945. tableMapping.ColumnMappings.Add("Модели товара", "Модели товара");
  6946. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  6947. tableMapping.ColumnMappings.Add("Код поступления", "Код поступления");
  6948. tableMapping.ColumnMappings.Add("Кто принял товар", "Кто принял товар");
  6949. tableMapping.ColumnMappings.Add("Количество", "Количество");
  6950. this._adapter.TableMappings.Add(tableMapping);
  6951. }
  6952. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6953. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6954. private void InitConnection() {
  6955. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6956. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  6957. }
  6958. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6959. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6960. private void InitCommandCollection() {
  6961. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6962. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6963. this._commandCollection[0].Connection = this.Connection;
  6964. this._commandCollection[0].CommandText = "SELECT [Код товара], [Наименование модели], [Цена модели], [Модели товара], [Дата" +
  6965. " поступления], [Код поступления], [Кто принял товар], Количество FROM dbo.[Запро" +
  6966. "с Модели + поступления]";
  6967. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6968. }
  6969. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6970. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6971. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6972. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6973. public virtual int Fill(Khozeev_ФАБРИКАDataSet._Запрос_Модели___поступленияDataTable dataTable) {
  6974. this.Adapter.SelectCommand = this.CommandCollection[0];
  6975. if ((this.ClearBeforeFill == true)) {
  6976. dataTable.Clear();
  6977. }
  6978. int returnValue = this.Adapter.Fill(dataTable);
  6979. return returnValue;
  6980. }
  6981. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6982. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6983. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6984. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6985. public virtual Khozeev_ФАБРИКАDataSet._Запрос_Модели___поступленияDataTable GetData() {
  6986. this.Adapter.SelectCommand = this.CommandCollection[0];
  6987. Khozeev_ФАБРИКАDataSet._Запрос_Модели___поступленияDataTable dataTable = new Khozeev_ФАБРИКАDataSet._Запрос_Модели___поступленияDataTable();
  6988. this.Adapter.Fill(dataTable);
  6989. return dataTable;
  6990. }
  6991. }
  6992. /// <summary>
  6993. ///Represents the connection and commands used to retrieve and save data.
  6994. ///</summary>
  6995. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6996. [global::System.ComponentModel.ToolboxItem(true)]
  6997. [global::System.ComponentModel.DataObjectAttribute(true)]
  6998. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6999. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7000. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7001. public partial class Запрос_Модель___ТоварTableAdapter : global::System.ComponentModel.Component {
  7002. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7003. private global::System.Data.SqlClient.SqlConnection _connection;
  7004. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7005. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7006. private bool _clearBeforeFill;
  7007. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7008. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7009. public Запрос_Модель___ТоварTableAdapter() {
  7010. this.ClearBeforeFill = true;
  7011. }
  7012. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7013. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7014. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7015. get {
  7016. if ((this._adapter == null)) {
  7017. this.InitAdapter();
  7018. }
  7019. return this._adapter;
  7020. }
  7021. }
  7022. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7024. internal global::System.Data.SqlClient.SqlConnection Connection {
  7025. get {
  7026. if ((this._connection == null)) {
  7027. this.InitConnection();
  7028. }
  7029. return this._connection;
  7030. }
  7031. set {
  7032. this._connection = value;
  7033. if ((this.Adapter.InsertCommand != null)) {
  7034. this.Adapter.InsertCommand.Connection = value;
  7035. }
  7036. if ((this.Adapter.DeleteCommand != null)) {
  7037. this.Adapter.DeleteCommand.Connection = value;
  7038. }
  7039. if ((this.Adapter.UpdateCommand != null)) {
  7040. this.Adapter.UpdateCommand.Connection = value;
  7041. }
  7042. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7043. if ((this.CommandCollection[i] != null)) {
  7044. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7045. }
  7046. }
  7047. }
  7048. }
  7049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7050. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7051. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7052. get {
  7053. return this._transaction;
  7054. }
  7055. set {
  7056. this._transaction = value;
  7057. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7058. this.CommandCollection[i].Transaction = this._transaction;
  7059. }
  7060. if (((this.Adapter != null)
  7061. && (this.Adapter.DeleteCommand != null))) {
  7062. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7063. }
  7064. if (((this.Adapter != null)
  7065. && (this.Adapter.InsertCommand != null))) {
  7066. this.Adapter.InsertCommand.Transaction = this._transaction;
  7067. }
  7068. if (((this.Adapter != null)
  7069. && (this.Adapter.UpdateCommand != null))) {
  7070. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7071. }
  7072. }
  7073. }
  7074. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7075. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7076. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7077. get {
  7078. if ((this._commandCollection == null)) {
  7079. this.InitCommandCollection();
  7080. }
  7081. return this._commandCollection;
  7082. }
  7083. }
  7084. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7085. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7086. public bool ClearBeforeFill {
  7087. get {
  7088. return this._clearBeforeFill;
  7089. }
  7090. set {
  7091. this._clearBeforeFill = value;
  7092. }
  7093. }
  7094. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7095. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7096. private void InitAdapter() {
  7097. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7098. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7099. tableMapping.SourceTable = "Table";
  7100. tableMapping.DataSetTable = "Запрос Модель + Товар";
  7101. tableMapping.ColumnMappings.Add("Наименование товара", "Наименование товара");
  7102. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  7103. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  7104. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  7105. this._adapter.TableMappings.Add(tableMapping);
  7106. }
  7107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7108. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7109. private void InitConnection() {
  7110. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7111. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  7112. }
  7113. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7114. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7115. private void InitCommandCollection() {
  7116. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7117. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7118. this._commandCollection[0].Connection = this.Connection;
  7119. this._commandCollection[0].CommandText = "SELECT [Наименование товара], [Цена модели], [Наименование модели], [Код модели] " +
  7120. "FROM dbo.[Запрос Модель + Товар]";
  7121. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7122. }
  7123. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7124. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7125. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7126. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7127. public virtual int Fill(Khozeev_ФАБРИКАDataSet._Запрос_Модель___ТоварDataTable dataTable) {
  7128. this.Adapter.SelectCommand = this.CommandCollection[0];
  7129. if ((this.ClearBeforeFill == true)) {
  7130. dataTable.Clear();
  7131. }
  7132. int returnValue = this.Adapter.Fill(dataTable);
  7133. return returnValue;
  7134. }
  7135. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7136. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7137. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7138. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7139. public virtual Khozeev_ФАБРИКАDataSet._Запрос_Модель___ТоварDataTable GetData() {
  7140. this.Adapter.SelectCommand = this.CommandCollection[0];
  7141. Khozeev_ФАБРИКАDataSet._Запрос_Модель___ТоварDataTable dataTable = new Khozeev_ФАБРИКАDataSet._Запрос_Модель___ТоварDataTable();
  7142. this.Adapter.Fill(dataTable);
  7143. return dataTable;
  7144. }
  7145. }
  7146. /// <summary>
  7147. ///Represents the connection and commands used to retrieve and save data.
  7148. ///</summary>
  7149. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7150. [global::System.ComponentModel.ToolboxItem(true)]
  7151. [global::System.ComponentModel.DataObjectAttribute(true)]
  7152. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7153. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7154. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7155. public partial class Фильтр_АддидасTableAdapter : global::System.ComponentModel.Component {
  7156. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7157. private global::System.Data.SqlClient.SqlConnection _connection;
  7158. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7159. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7160. private bool _clearBeforeFill;
  7161. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7162. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7163. public Фильтр_АддидасTableAdapter() {
  7164. this.ClearBeforeFill = true;
  7165. }
  7166. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7167. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7168. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7169. get {
  7170. if ((this._adapter == null)) {
  7171. this.InitAdapter();
  7172. }
  7173. return this._adapter;
  7174. }
  7175. }
  7176. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7177. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7178. internal global::System.Data.SqlClient.SqlConnection Connection {
  7179. get {
  7180. if ((this._connection == null)) {
  7181. this.InitConnection();
  7182. }
  7183. return this._connection;
  7184. }
  7185. set {
  7186. this._connection = value;
  7187. if ((this.Adapter.InsertCommand != null)) {
  7188. this.Adapter.InsertCommand.Connection = value;
  7189. }
  7190. if ((this.Adapter.DeleteCommand != null)) {
  7191. this.Adapter.DeleteCommand.Connection = value;
  7192. }
  7193. if ((this.Adapter.UpdateCommand != null)) {
  7194. this.Adapter.UpdateCommand.Connection = value;
  7195. }
  7196. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7197. if ((this.CommandCollection[i] != null)) {
  7198. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7199. }
  7200. }
  7201. }
  7202. }
  7203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7204. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7205. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7206. get {
  7207. return this._transaction;
  7208. }
  7209. set {
  7210. this._transaction = value;
  7211. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7212. this.CommandCollection[i].Transaction = this._transaction;
  7213. }
  7214. if (((this.Adapter != null)
  7215. && (this.Adapter.DeleteCommand != null))) {
  7216. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7217. }
  7218. if (((this.Adapter != null)
  7219. && (this.Adapter.InsertCommand != null))) {
  7220. this.Adapter.InsertCommand.Transaction = this._transaction;
  7221. }
  7222. if (((this.Adapter != null)
  7223. && (this.Adapter.UpdateCommand != null))) {
  7224. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7225. }
  7226. }
  7227. }
  7228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7230. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7231. get {
  7232. if ((this._commandCollection == null)) {
  7233. this.InitCommandCollection();
  7234. }
  7235. return this._commandCollection;
  7236. }
  7237. }
  7238. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7239. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7240. public bool ClearBeforeFill {
  7241. get {
  7242. return this._clearBeforeFill;
  7243. }
  7244. set {
  7245. this._clearBeforeFill = value;
  7246. }
  7247. }
  7248. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7249. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7250. private void InitAdapter() {
  7251. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7252. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7253. tableMapping.SourceTable = "Table";
  7254. tableMapping.DataSetTable = "Фильтр Аддидас";
  7255. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  7256. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  7257. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  7258. tableMapping.ColumnMappings.Add("Наименование товара", "Наименование товара");
  7259. this._adapter.TableMappings.Add(tableMapping);
  7260. }
  7261. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7262. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7263. private void InitConnection() {
  7264. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7265. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  7266. }
  7267. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7268. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7269. private void InitCommandCollection() {
  7270. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7271. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7272. this._commandCollection[0].Connection = this.Connection;
  7273. this._commandCollection[0].CommandText = "SELECT [Код модели], [Наименование модели], [Цена модели], [Наименование товара] " +
  7274. "FROM dbo.[Фильтр Аддидас]";
  7275. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7276. }
  7277. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7278. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7279. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7280. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7281. public virtual int Fill(Khozeev_ФАБРИКАDataSet.Фильтр_АддидасDataTable dataTable) {
  7282. this.Adapter.SelectCommand = this.CommandCollection[0];
  7283. if ((this.ClearBeforeFill == true)) {
  7284. dataTable.Clear();
  7285. }
  7286. int returnValue = this.Adapter.Fill(dataTable);
  7287. return returnValue;
  7288. }
  7289. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7290. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7291. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7292. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7293. public virtual Khozeev_ФАБРИКАDataSet.Фильтр_АддидасDataTable GetData() {
  7294. this.Adapter.SelectCommand = this.CommandCollection[0];
  7295. Khozeev_ФАБРИКАDataSet.Фильтр_АддидасDataTable dataTable = new Khozeev_ФАБРИКАDataSet.Фильтр_АддидасDataTable();
  7296. this.Adapter.Fill(dataTable);
  7297. return dataTable;
  7298. }
  7299. }
  7300. /// <summary>
  7301. ///Represents the connection and commands used to retrieve and save data.
  7302. ///</summary>
  7303. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7304. [global::System.ComponentModel.ToolboxItem(true)]
  7305. [global::System.ComponentModel.DataObjectAttribute(true)]
  7306. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7307. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7308. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7309. public partial class Фильтр_диорTableAdapter : global::System.ComponentModel.Component {
  7310. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7311. private global::System.Data.SqlClient.SqlConnection _connection;
  7312. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7313. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7314. private bool _clearBeforeFill;
  7315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7317. public Фильтр_диорTableAdapter() {
  7318. this.ClearBeforeFill = true;
  7319. }
  7320. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7321. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7322. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7323. get {
  7324. if ((this._adapter == null)) {
  7325. this.InitAdapter();
  7326. }
  7327. return this._adapter;
  7328. }
  7329. }
  7330. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7331. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7332. internal global::System.Data.SqlClient.SqlConnection Connection {
  7333. get {
  7334. if ((this._connection == null)) {
  7335. this.InitConnection();
  7336. }
  7337. return this._connection;
  7338. }
  7339. set {
  7340. this._connection = value;
  7341. if ((this.Adapter.InsertCommand != null)) {
  7342. this.Adapter.InsertCommand.Connection = value;
  7343. }
  7344. if ((this.Adapter.DeleteCommand != null)) {
  7345. this.Adapter.DeleteCommand.Connection = value;
  7346. }
  7347. if ((this.Adapter.UpdateCommand != null)) {
  7348. this.Adapter.UpdateCommand.Connection = value;
  7349. }
  7350. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7351. if ((this.CommandCollection[i] != null)) {
  7352. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7353. }
  7354. }
  7355. }
  7356. }
  7357. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7358. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7359. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7360. get {
  7361. return this._transaction;
  7362. }
  7363. set {
  7364. this._transaction = value;
  7365. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7366. this.CommandCollection[i].Transaction = this._transaction;
  7367. }
  7368. if (((this.Adapter != null)
  7369. && (this.Adapter.DeleteCommand != null))) {
  7370. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7371. }
  7372. if (((this.Adapter != null)
  7373. && (this.Adapter.InsertCommand != null))) {
  7374. this.Adapter.InsertCommand.Transaction = this._transaction;
  7375. }
  7376. if (((this.Adapter != null)
  7377. && (this.Adapter.UpdateCommand != null))) {
  7378. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7379. }
  7380. }
  7381. }
  7382. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7383. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7384. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7385. get {
  7386. if ((this._commandCollection == null)) {
  7387. this.InitCommandCollection();
  7388. }
  7389. return this._commandCollection;
  7390. }
  7391. }
  7392. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7393. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7394. public bool ClearBeforeFill {
  7395. get {
  7396. return this._clearBeforeFill;
  7397. }
  7398. set {
  7399. this._clearBeforeFill = value;
  7400. }
  7401. }
  7402. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7403. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7404. private void InitAdapter() {
  7405. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7406. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7407. tableMapping.SourceTable = "Table";
  7408. tableMapping.DataSetTable = "Фильтр диор";
  7409. tableMapping.ColumnMappings.Add("Наименование товара", "Наименование товара");
  7410. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  7411. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  7412. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  7413. this._adapter.TableMappings.Add(tableMapping);
  7414. }
  7415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7417. private void InitConnection() {
  7418. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7419. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  7420. }
  7421. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7422. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7423. private void InitCommandCollection() {
  7424. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7425. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7426. this._commandCollection[0].Connection = this.Connection;
  7427. this._commandCollection[0].CommandText = "SELECT [Наименование товара], [Цена модели], [Наименование модели], [Код модели] " +
  7428. "FROM dbo.[Фильтр диор]";
  7429. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7430. }
  7431. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7432. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7433. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7434. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7435. public virtual int Fill(Khozeev_ФАБРИКАDataSet.Фильтр_диорDataTable dataTable) {
  7436. this.Adapter.SelectCommand = this.CommandCollection[0];
  7437. if ((this.ClearBeforeFill == true)) {
  7438. dataTable.Clear();
  7439. }
  7440. int returnValue = this.Adapter.Fill(dataTable);
  7441. return returnValue;
  7442. }
  7443. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7444. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7445. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7446. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7447. public virtual Khozeev_ФАБРИКАDataSet.Фильтр_диорDataTable GetData() {
  7448. this.Adapter.SelectCommand = this.CommandCollection[0];
  7449. Khozeev_ФАБРИКАDataSet.Фильтр_диорDataTable dataTable = new Khozeev_ФАБРИКАDataSet.Фильтр_диорDataTable();
  7450. this.Adapter.Fill(dataTable);
  7451. return dataTable;
  7452. }
  7453. }
  7454. /// <summary>
  7455. ///Represents the connection and commands used to retrieve and save data.
  7456. ///</summary>
  7457. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7458. [global::System.ComponentModel.ToolboxItem(true)]
  7459. [global::System.ComponentModel.DataObjectAttribute(true)]
  7460. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7461. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7462. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7463. public partial class Фильтр_кол_ва_больше_15TableAdapter : global::System.ComponentModel.Component {
  7464. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7465. private global::System.Data.SqlClient.SqlConnection _connection;
  7466. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7467. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7468. private bool _clearBeforeFill;
  7469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7471. public Фильтр_кол_ва_больше_15TableAdapter() {
  7472. this.ClearBeforeFill = true;
  7473. }
  7474. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7475. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7476. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7477. get {
  7478. if ((this._adapter == null)) {
  7479. this.InitAdapter();
  7480. }
  7481. return this._adapter;
  7482. }
  7483. }
  7484. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7485. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7486. internal global::System.Data.SqlClient.SqlConnection Connection {
  7487. get {
  7488. if ((this._connection == null)) {
  7489. this.InitConnection();
  7490. }
  7491. return this._connection;
  7492. }
  7493. set {
  7494. this._connection = value;
  7495. if ((this.Adapter.InsertCommand != null)) {
  7496. this.Adapter.InsertCommand.Connection = value;
  7497. }
  7498. if ((this.Adapter.DeleteCommand != null)) {
  7499. this.Adapter.DeleteCommand.Connection = value;
  7500. }
  7501. if ((this.Adapter.UpdateCommand != null)) {
  7502. this.Adapter.UpdateCommand.Connection = value;
  7503. }
  7504. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7505. if ((this.CommandCollection[i] != null)) {
  7506. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7507. }
  7508. }
  7509. }
  7510. }
  7511. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7512. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7513. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7514. get {
  7515. return this._transaction;
  7516. }
  7517. set {
  7518. this._transaction = value;
  7519. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7520. this.CommandCollection[i].Transaction = this._transaction;
  7521. }
  7522. if (((this.Adapter != null)
  7523. && (this.Adapter.DeleteCommand != null))) {
  7524. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7525. }
  7526. if (((this.Adapter != null)
  7527. && (this.Adapter.InsertCommand != null))) {
  7528. this.Adapter.InsertCommand.Transaction = this._transaction;
  7529. }
  7530. if (((this.Adapter != null)
  7531. && (this.Adapter.UpdateCommand != null))) {
  7532. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7533. }
  7534. }
  7535. }
  7536. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7537. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7538. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7539. get {
  7540. if ((this._commandCollection == null)) {
  7541. this.InitCommandCollection();
  7542. }
  7543. return this._commandCollection;
  7544. }
  7545. }
  7546. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7547. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7548. public bool ClearBeforeFill {
  7549. get {
  7550. return this._clearBeforeFill;
  7551. }
  7552. set {
  7553. this._clearBeforeFill = value;
  7554. }
  7555. }
  7556. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7557. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7558. private void InitAdapter() {
  7559. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7560. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7561. tableMapping.SourceTable = "Table";
  7562. tableMapping.DataSetTable = "Фильтр кол-ва больше 15";
  7563. tableMapping.ColumnMappings.Add("Код поступления", "Код поступления");
  7564. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  7565. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  7566. tableMapping.ColumnMappings.Add("Модели товара", "Модели товара");
  7567. tableMapping.ColumnMappings.Add("Количество", "Количество");
  7568. tableMapping.ColumnMappings.Add("Кто принял товар", "Кто принял товар");
  7569. this._adapter.TableMappings.Add(tableMapping);
  7570. }
  7571. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7572. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7573. private void InitConnection() {
  7574. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7575. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  7576. }
  7577. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7578. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7579. private void InitCommandCollection() {
  7580. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7581. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7582. this._commandCollection[0].Connection = this.Connection;
  7583. this._commandCollection[0].CommandText = "SELECT [Код поступления], [Дата поступления], [Код модели], [Модели товара], Коли" +
  7584. "чество, [Кто принял товар] FROM dbo.[Фильтр кол-ва больше 15]";
  7585. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7586. }
  7587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7589. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7590. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7591. public virtual int Fill(Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_больше_15DataTable dataTable) {
  7592. this.Adapter.SelectCommand = this.CommandCollection[0];
  7593. if ((this.ClearBeforeFill == true)) {
  7594. dataTable.Clear();
  7595. }
  7596. int returnValue = this.Adapter.Fill(dataTable);
  7597. return returnValue;
  7598. }
  7599. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7600. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7601. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7602. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7603. public virtual Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_больше_15DataTable GetData() {
  7604. this.Adapter.SelectCommand = this.CommandCollection[0];
  7605. Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_больше_15DataTable dataTable = new Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_больше_15DataTable();
  7606. this.Adapter.Fill(dataTable);
  7607. return dataTable;
  7608. }
  7609. }
  7610. /// <summary>
  7611. ///Represents the connection and commands used to retrieve and save data.
  7612. ///</summary>
  7613. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7614. [global::System.ComponentModel.ToolboxItem(true)]
  7615. [global::System.ComponentModel.DataObjectAttribute(true)]
  7616. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7617. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7618. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7619. public partial class Фильтр_кол_ва_меньше_15TableAdapter : global::System.ComponentModel.Component {
  7620. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7621. private global::System.Data.SqlClient.SqlConnection _connection;
  7622. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7623. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7624. private bool _clearBeforeFill;
  7625. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7626. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7627. public Фильтр_кол_ва_меньше_15TableAdapter() {
  7628. this.ClearBeforeFill = true;
  7629. }
  7630. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7631. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7632. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7633. get {
  7634. if ((this._adapter == null)) {
  7635. this.InitAdapter();
  7636. }
  7637. return this._adapter;
  7638. }
  7639. }
  7640. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7641. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7642. internal global::System.Data.SqlClient.SqlConnection Connection {
  7643. get {
  7644. if ((this._connection == null)) {
  7645. this.InitConnection();
  7646. }
  7647. return this._connection;
  7648. }
  7649. set {
  7650. this._connection = value;
  7651. if ((this.Adapter.InsertCommand != null)) {
  7652. this.Adapter.InsertCommand.Connection = value;
  7653. }
  7654. if ((this.Adapter.DeleteCommand != null)) {
  7655. this.Adapter.DeleteCommand.Connection = value;
  7656. }
  7657. if ((this.Adapter.UpdateCommand != null)) {
  7658. this.Adapter.UpdateCommand.Connection = value;
  7659. }
  7660. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7661. if ((this.CommandCollection[i] != null)) {
  7662. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7663. }
  7664. }
  7665. }
  7666. }
  7667. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7668. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7669. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7670. get {
  7671. return this._transaction;
  7672. }
  7673. set {
  7674. this._transaction = value;
  7675. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7676. this.CommandCollection[i].Transaction = this._transaction;
  7677. }
  7678. if (((this.Adapter != null)
  7679. && (this.Adapter.DeleteCommand != null))) {
  7680. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7681. }
  7682. if (((this.Adapter != null)
  7683. && (this.Adapter.InsertCommand != null))) {
  7684. this.Adapter.InsertCommand.Transaction = this._transaction;
  7685. }
  7686. if (((this.Adapter != null)
  7687. && (this.Adapter.UpdateCommand != null))) {
  7688. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7689. }
  7690. }
  7691. }
  7692. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7693. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7694. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7695. get {
  7696. if ((this._commandCollection == null)) {
  7697. this.InitCommandCollection();
  7698. }
  7699. return this._commandCollection;
  7700. }
  7701. }
  7702. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7703. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7704. public bool ClearBeforeFill {
  7705. get {
  7706. return this._clearBeforeFill;
  7707. }
  7708. set {
  7709. this._clearBeforeFill = value;
  7710. }
  7711. }
  7712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7714. private void InitAdapter() {
  7715. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7716. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7717. tableMapping.SourceTable = "Table";
  7718. tableMapping.DataSetTable = "Фильтр кол-ва меньше 15";
  7719. tableMapping.ColumnMappings.Add("Кто принял товар", "Кто принял товар");
  7720. tableMapping.ColumnMappings.Add("Количество", "Количество");
  7721. tableMapping.ColumnMappings.Add("Модели товара", "Модели товара");
  7722. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  7723. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  7724. tableMapping.ColumnMappings.Add("Код поступления", "Код поступления");
  7725. this._adapter.TableMappings.Add(tableMapping);
  7726. }
  7727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7729. private void InitConnection() {
  7730. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7731. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  7732. }
  7733. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7734. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7735. private void InitCommandCollection() {
  7736. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7737. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7738. this._commandCollection[0].Connection = this.Connection;
  7739. this._commandCollection[0].CommandText = "SELECT [Кто принял товар], Количество, [Модели товара], [Дата поступления], [Код " +
  7740. "модели], [Код поступления] FROM dbo.[Фильтр кол-ва меньше 15]";
  7741. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7742. }
  7743. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7744. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7745. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7746. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7747. public virtual int Fill(Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_меньше_15DataTable dataTable) {
  7748. this.Adapter.SelectCommand = this.CommandCollection[0];
  7749. if ((this.ClearBeforeFill == true)) {
  7750. dataTable.Clear();
  7751. }
  7752. int returnValue = this.Adapter.Fill(dataTable);
  7753. return returnValue;
  7754. }
  7755. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7756. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7757. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7758. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7759. public virtual Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_меньше_15DataTable GetData() {
  7760. this.Adapter.SelectCommand = this.CommandCollection[0];
  7761. Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_меньше_15DataTable dataTable = new Khozeev_ФАБРИКАDataSet._Фильтр_кол_ва_меньше_15DataTable();
  7762. this.Adapter.Fill(dataTable);
  7763. return dataTable;
  7764. }
  7765. }
  7766. /// <summary>
  7767. ///Represents the connection and commands used to retrieve and save data.
  7768. ///</summary>
  7769. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7770. [global::System.ComponentModel.ToolboxItem(true)]
  7771. [global::System.ComponentModel.DataObjectAttribute(true)]
  7772. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7773. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7774. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7775. public partial class фильтр_найкTableAdapter : global::System.ComponentModel.Component {
  7776. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7777. private global::System.Data.SqlClient.SqlConnection _connection;
  7778. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7779. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7780. private bool _clearBeforeFill;
  7781. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7782. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7783. public фильтр_найкTableAdapter() {
  7784. this.ClearBeforeFill = true;
  7785. }
  7786. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7787. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7788. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7789. get {
  7790. if ((this._adapter == null)) {
  7791. this.InitAdapter();
  7792. }
  7793. return this._adapter;
  7794. }
  7795. }
  7796. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7797. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7798. internal global::System.Data.SqlClient.SqlConnection Connection {
  7799. get {
  7800. if ((this._connection == null)) {
  7801. this.InitConnection();
  7802. }
  7803. return this._connection;
  7804. }
  7805. set {
  7806. this._connection = value;
  7807. if ((this.Adapter.InsertCommand != null)) {
  7808. this.Adapter.InsertCommand.Connection = value;
  7809. }
  7810. if ((this.Adapter.DeleteCommand != null)) {
  7811. this.Adapter.DeleteCommand.Connection = value;
  7812. }
  7813. if ((this.Adapter.UpdateCommand != null)) {
  7814. this.Adapter.UpdateCommand.Connection = value;
  7815. }
  7816. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7817. if ((this.CommandCollection[i] != null)) {
  7818. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7819. }
  7820. }
  7821. }
  7822. }
  7823. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7824. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7825. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7826. get {
  7827. return this._transaction;
  7828. }
  7829. set {
  7830. this._transaction = value;
  7831. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7832. this.CommandCollection[i].Transaction = this._transaction;
  7833. }
  7834. if (((this.Adapter != null)
  7835. && (this.Adapter.DeleteCommand != null))) {
  7836. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7837. }
  7838. if (((this.Adapter != null)
  7839. && (this.Adapter.InsertCommand != null))) {
  7840. this.Adapter.InsertCommand.Transaction = this._transaction;
  7841. }
  7842. if (((this.Adapter != null)
  7843. && (this.Adapter.UpdateCommand != null))) {
  7844. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7845. }
  7846. }
  7847. }
  7848. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7849. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7850. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7851. get {
  7852. if ((this._commandCollection == null)) {
  7853. this.InitCommandCollection();
  7854. }
  7855. return this._commandCollection;
  7856. }
  7857. }
  7858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7859. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7860. public bool ClearBeforeFill {
  7861. get {
  7862. return this._clearBeforeFill;
  7863. }
  7864. set {
  7865. this._clearBeforeFill = value;
  7866. }
  7867. }
  7868. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7869. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7870. private void InitAdapter() {
  7871. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7872. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7873. tableMapping.SourceTable = "Table";
  7874. tableMapping.DataSetTable = "фильтр найк";
  7875. tableMapping.ColumnMappings.Add("Наименование товара", "Наименование товара");
  7876. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  7877. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  7878. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  7879. this._adapter.TableMappings.Add(tableMapping);
  7880. }
  7881. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7882. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7883. private void InitConnection() {
  7884. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7885. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  7886. }
  7887. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7888. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7889. private void InitCommandCollection() {
  7890. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7891. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7892. this._commandCollection[0].Connection = this.Connection;
  7893. this._commandCollection[0].CommandText = "SELECT [Наименование товара], [Наименование модели], [Цена модели], [Код модели] " +
  7894. "FROM dbo.[фильтр найк]";
  7895. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7896. }
  7897. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7898. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7899. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7900. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7901. public virtual int Fill(Khozeev_ФАБРИКАDataSet.фильтр_найкDataTable dataTable) {
  7902. this.Adapter.SelectCommand = this.CommandCollection[0];
  7903. if ((this.ClearBeforeFill == true)) {
  7904. dataTable.Clear();
  7905. }
  7906. int returnValue = this.Adapter.Fill(dataTable);
  7907. return returnValue;
  7908. }
  7909. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7910. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7911. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7912. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7913. public virtual Khozeev_ФАБРИКАDataSet.фильтр_найкDataTable GetData() {
  7914. this.Adapter.SelectCommand = this.CommandCollection[0];
  7915. Khozeev_ФАБРИКАDataSet.фильтр_найкDataTable dataTable = new Khozeev_ФАБРИКАDataSet.фильтр_найкDataTable();
  7916. this.Adapter.Fill(dataTable);
  7917. return dataTable;
  7918. }
  7919. }
  7920. /// <summary>
  7921. ///Represents the connection and commands used to retrieve and save data.
  7922. ///</summary>
  7923. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7924. [global::System.ComponentModel.ToolboxItem(true)]
  7925. [global::System.ComponentModel.DataObjectAttribute(true)]
  7926. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7927. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7928. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7929. public partial class фильтр_прадаTableAdapter : global::System.ComponentModel.Component {
  7930. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7931. private global::System.Data.SqlClient.SqlConnection _connection;
  7932. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7933. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7934. private bool _clearBeforeFill;
  7935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7937. public фильтр_прадаTableAdapter() {
  7938. this.ClearBeforeFill = true;
  7939. }
  7940. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7941. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7942. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7943. get {
  7944. if ((this._adapter == null)) {
  7945. this.InitAdapter();
  7946. }
  7947. return this._adapter;
  7948. }
  7949. }
  7950. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7951. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7952. internal global::System.Data.SqlClient.SqlConnection Connection {
  7953. get {
  7954. if ((this._connection == null)) {
  7955. this.InitConnection();
  7956. }
  7957. return this._connection;
  7958. }
  7959. set {
  7960. this._connection = value;
  7961. if ((this.Adapter.InsertCommand != null)) {
  7962. this.Adapter.InsertCommand.Connection = value;
  7963. }
  7964. if ((this.Adapter.DeleteCommand != null)) {
  7965. this.Adapter.DeleteCommand.Connection = value;
  7966. }
  7967. if ((this.Adapter.UpdateCommand != null)) {
  7968. this.Adapter.UpdateCommand.Connection = value;
  7969. }
  7970. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7971. if ((this.CommandCollection[i] != null)) {
  7972. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7973. }
  7974. }
  7975. }
  7976. }
  7977. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7978. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7979. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7980. get {
  7981. return this._transaction;
  7982. }
  7983. set {
  7984. this._transaction = value;
  7985. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7986. this.CommandCollection[i].Transaction = this._transaction;
  7987. }
  7988. if (((this.Adapter != null)
  7989. && (this.Adapter.DeleteCommand != null))) {
  7990. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7991. }
  7992. if (((this.Adapter != null)
  7993. && (this.Adapter.InsertCommand != null))) {
  7994. this.Adapter.InsertCommand.Transaction = this._transaction;
  7995. }
  7996. if (((this.Adapter != null)
  7997. && (this.Adapter.UpdateCommand != null))) {
  7998. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7999. }
  8000. }
  8001. }
  8002. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8003. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8004. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8005. get {
  8006. if ((this._commandCollection == null)) {
  8007. this.InitCommandCollection();
  8008. }
  8009. return this._commandCollection;
  8010. }
  8011. }
  8012. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8013. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8014. public bool ClearBeforeFill {
  8015. get {
  8016. return this._clearBeforeFill;
  8017. }
  8018. set {
  8019. this._clearBeforeFill = value;
  8020. }
  8021. }
  8022. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8024. private void InitAdapter() {
  8025. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8026. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8027. tableMapping.SourceTable = "Table";
  8028. tableMapping.DataSetTable = "фильтр прада";
  8029. tableMapping.ColumnMappings.Add("Наименование товара", "Наименование товара");
  8030. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  8031. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  8032. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  8033. this._adapter.TableMappings.Add(tableMapping);
  8034. }
  8035. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8036. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8037. private void InitConnection() {
  8038. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8039. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  8040. }
  8041. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8042. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8043. private void InitCommandCollection() {
  8044. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8045. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8046. this._commandCollection[0].Connection = this.Connection;
  8047. this._commandCollection[0].CommandText = "SELECT [Наименование товара], [Цена модели], [Наименование модели], [Код модели] " +
  8048. "FROM dbo.[фильтр прада]";
  8049. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8050. }
  8051. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8052. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8053. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8054. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8055. public virtual int Fill(Khozeev_ФАБРИКАDataSet.фильтр_прадаDataTable dataTable) {
  8056. this.Adapter.SelectCommand = this.CommandCollection[0];
  8057. if ((this.ClearBeforeFill == true)) {
  8058. dataTable.Clear();
  8059. }
  8060. int returnValue = this.Adapter.Fill(dataTable);
  8061. return returnValue;
  8062. }
  8063. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8064. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8065. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8066. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8067. public virtual Khozeev_ФАБРИКАDataSet.фильтр_прадаDataTable GetData() {
  8068. this.Adapter.SelectCommand = this.CommandCollection[0];
  8069. Khozeev_ФАБРИКАDataSet.фильтр_прадаDataTable dataTable = new Khozeev_ФАБРИКАDataSet.фильтр_прадаDataTable();
  8070. this.Adapter.Fill(dataTable);
  8071. return dataTable;
  8072. }
  8073. }
  8074. /// <summary>
  8075. ///Represents the connection and commands used to retrieve and save data.
  8076. ///</summary>
  8077. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8078. [global::System.ComponentModel.ToolboxItem(true)]
  8079. [global::System.ComponentModel.DataObjectAttribute(true)]
  8080. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8081. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8082. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8083. public partial class Фильтр_цены_больше_20_кTableAdapter : global::System.ComponentModel.Component {
  8084. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8085. private global::System.Data.SqlClient.SqlConnection _connection;
  8086. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8087. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8088. private bool _clearBeforeFill;
  8089. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8090. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8091. public Фильтр_цены_больше_20_кTableAdapter() {
  8092. this.ClearBeforeFill = true;
  8093. }
  8094. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8095. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8096. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8097. get {
  8098. if ((this._adapter == null)) {
  8099. this.InitAdapter();
  8100. }
  8101. return this._adapter;
  8102. }
  8103. }
  8104. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8105. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8106. internal global::System.Data.SqlClient.SqlConnection Connection {
  8107. get {
  8108. if ((this._connection == null)) {
  8109. this.InitConnection();
  8110. }
  8111. return this._connection;
  8112. }
  8113. set {
  8114. this._connection = value;
  8115. if ((this.Adapter.InsertCommand != null)) {
  8116. this.Adapter.InsertCommand.Connection = value;
  8117. }
  8118. if ((this.Adapter.DeleteCommand != null)) {
  8119. this.Adapter.DeleteCommand.Connection = value;
  8120. }
  8121. if ((this.Adapter.UpdateCommand != null)) {
  8122. this.Adapter.UpdateCommand.Connection = value;
  8123. }
  8124. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8125. if ((this.CommandCollection[i] != null)) {
  8126. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8127. }
  8128. }
  8129. }
  8130. }
  8131. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8132. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8133. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8134. get {
  8135. return this._transaction;
  8136. }
  8137. set {
  8138. this._transaction = value;
  8139. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8140. this.CommandCollection[i].Transaction = this._transaction;
  8141. }
  8142. if (((this.Adapter != null)
  8143. && (this.Adapter.DeleteCommand != null))) {
  8144. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8145. }
  8146. if (((this.Adapter != null)
  8147. && (this.Adapter.InsertCommand != null))) {
  8148. this.Adapter.InsertCommand.Transaction = this._transaction;
  8149. }
  8150. if (((this.Adapter != null)
  8151. && (this.Adapter.UpdateCommand != null))) {
  8152. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8153. }
  8154. }
  8155. }
  8156. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8157. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8158. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8159. get {
  8160. if ((this._commandCollection == null)) {
  8161. this.InitCommandCollection();
  8162. }
  8163. return this._commandCollection;
  8164. }
  8165. }
  8166. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8167. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8168. public bool ClearBeforeFill {
  8169. get {
  8170. return this._clearBeforeFill;
  8171. }
  8172. set {
  8173. this._clearBeforeFill = value;
  8174. }
  8175. }
  8176. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8177. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8178. private void InitAdapter() {
  8179. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8180. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8181. tableMapping.SourceTable = "Table";
  8182. tableMapping.DataSetTable = "Фильтр цены больше 20 к";
  8183. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  8184. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  8185. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  8186. tableMapping.ColumnMappings.Add("Код товара", "Код товара");
  8187. this._adapter.TableMappings.Add(tableMapping);
  8188. }
  8189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8190. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8191. private void InitConnection() {
  8192. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8193. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  8194. }
  8195. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8196. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8197. private void InitCommandCollection() {
  8198. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8199. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8200. this._commandCollection[0].Connection = this.Connection;
  8201. this._commandCollection[0].CommandText = "SELECT [Код модели], [Наименование модели], [Цена модели], [Код товара] FROM dbo." +
  8202. "[Фильтр цены больше 20 к]";
  8203. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8204. }
  8205. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8206. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8207. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8208. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8209. public virtual int Fill(Khozeev_ФАБРИКАDataSet.Фильтр_цены_больше_20_кDataTable dataTable) {
  8210. this.Adapter.SelectCommand = this.CommandCollection[0];
  8211. if ((this.ClearBeforeFill == true)) {
  8212. dataTable.Clear();
  8213. }
  8214. int returnValue = this.Adapter.Fill(dataTable);
  8215. return returnValue;
  8216. }
  8217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8218. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8219. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8220. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8221. public virtual Khozeev_ФАБРИКАDataSet.Фильтр_цены_больше_20_кDataTable GetData() {
  8222. this.Adapter.SelectCommand = this.CommandCollection[0];
  8223. Khozeev_ФАБРИКАDataSet.Фильтр_цены_больше_20_кDataTable dataTable = new Khozeev_ФАБРИКАDataSet.Фильтр_цены_больше_20_кDataTable();
  8224. this.Adapter.Fill(dataTable);
  8225. return dataTable;
  8226. }
  8227. }
  8228. /// <summary>
  8229. ///Represents the connection and commands used to retrieve and save data.
  8230. ///</summary>
  8231. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8232. [global::System.ComponentModel.ToolboxItem(true)]
  8233. [global::System.ComponentModel.DataObjectAttribute(true)]
  8234. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8235. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8236. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8237. public partial class Фильтр_цены_меньше_20_кTableAdapter : global::System.ComponentModel.Component {
  8238. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8239. private global::System.Data.SqlClient.SqlConnection _connection;
  8240. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8241. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8242. private bool _clearBeforeFill;
  8243. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8244. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8245. public Фильтр_цены_меньше_20_кTableAdapter() {
  8246. this.ClearBeforeFill = true;
  8247. }
  8248. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8249. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8250. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8251. get {
  8252. if ((this._adapter == null)) {
  8253. this.InitAdapter();
  8254. }
  8255. return this._adapter;
  8256. }
  8257. }
  8258. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8259. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8260. internal global::System.Data.SqlClient.SqlConnection Connection {
  8261. get {
  8262. if ((this._connection == null)) {
  8263. this.InitConnection();
  8264. }
  8265. return this._connection;
  8266. }
  8267. set {
  8268. this._connection = value;
  8269. if ((this.Adapter.InsertCommand != null)) {
  8270. this.Adapter.InsertCommand.Connection = value;
  8271. }
  8272. if ((this.Adapter.DeleteCommand != null)) {
  8273. this.Adapter.DeleteCommand.Connection = value;
  8274. }
  8275. if ((this.Adapter.UpdateCommand != null)) {
  8276. this.Adapter.UpdateCommand.Connection = value;
  8277. }
  8278. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8279. if ((this.CommandCollection[i] != null)) {
  8280. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8281. }
  8282. }
  8283. }
  8284. }
  8285. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8286. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8287. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8288. get {
  8289. return this._transaction;
  8290. }
  8291. set {
  8292. this._transaction = value;
  8293. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8294. this.CommandCollection[i].Transaction = this._transaction;
  8295. }
  8296. if (((this.Adapter != null)
  8297. && (this.Adapter.DeleteCommand != null))) {
  8298. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8299. }
  8300. if (((this.Adapter != null)
  8301. && (this.Adapter.InsertCommand != null))) {
  8302. this.Adapter.InsertCommand.Transaction = this._transaction;
  8303. }
  8304. if (((this.Adapter != null)
  8305. && (this.Adapter.UpdateCommand != null))) {
  8306. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8307. }
  8308. }
  8309. }
  8310. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8311. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8312. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8313. get {
  8314. if ((this._commandCollection == null)) {
  8315. this.InitCommandCollection();
  8316. }
  8317. return this._commandCollection;
  8318. }
  8319. }
  8320. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8321. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8322. public bool ClearBeforeFill {
  8323. get {
  8324. return this._clearBeforeFill;
  8325. }
  8326. set {
  8327. this._clearBeforeFill = value;
  8328. }
  8329. }
  8330. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8331. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8332. private void InitAdapter() {
  8333. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8334. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8335. tableMapping.SourceTable = "Table";
  8336. tableMapping.DataSetTable = "Фильтр цены меньше 20 к";
  8337. tableMapping.ColumnMappings.Add("Код модели", "Код модели");
  8338. tableMapping.ColumnMappings.Add("Наименование модели", "Наименование модели");
  8339. tableMapping.ColumnMappings.Add("Цена модели", "Цена модели");
  8340. tableMapping.ColumnMappings.Add("Код товара", "Код товара");
  8341. this._adapter.TableMappings.Add(tableMapping);
  8342. }
  8343. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8344. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8345. private void InitConnection() {
  8346. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8347. this._connection.ConnectionString = global::WindowsFormsApp1.Properties.Settings.Default.Khozeev_ФАБРИКАConnectionString;
  8348. }
  8349. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8350. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8351. private void InitCommandCollection() {
  8352. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8353. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8354. this._commandCollection[0].Connection = this.Connection;
  8355. this._commandCollection[0].CommandText = "SELECT [Код модели], [Наименование модели], [Цена модели], [Код товара] FROM dbo." +
  8356. "[Фильтр цены меньше 20 к]";
  8357. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8358. }
  8359. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8360. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8361. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8362. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8363. public virtual int Fill(Khozeev_ФАБРИКАDataSet.Фильтр_цены_меньше_20_кDataTable dataTable) {
  8364. this.Adapter.SelectCommand = this.CommandCollection[0];
  8365. if ((this.ClearBeforeFill == true)) {
  8366. dataTable.Clear();
  8367. }
  8368. int returnValue = this.Adapter.Fill(dataTable);
  8369. return returnValue;
  8370. }
  8371. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8372. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8373. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8374. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8375. public virtual Khozeev_ФАБРИКАDataSet.Фильтр_цены_меньше_20_кDataTable GetData() {
  8376. this.Adapter.SelectCommand = this.CommandCollection[0];
  8377. Khozeev_ФАБРИКАDataSet.Фильтр_цены_меньше_20_кDataTable dataTable = new Khozeev_ФАБРИКАDataSet.Фильтр_цены_меньше_20_кDataTable();
  8378. this.Adapter.Fill(dataTable);
  8379. return dataTable;
  8380. }
  8381. }
  8382. /// <summary>
  8383. ///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
  8384. ///</summary>
  8385. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8386. [global::System.ComponentModel.ToolboxItem(true)]
  8387. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerDesigner, Microsoft.VSD" +
  8388. "esigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8389. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapterManager")]
  8390. public partial class TableAdapterManager : global::System.ComponentModel.Component {
  8391. private UpdateOrderOption _updateOrder;
  8392. private МоделиTableAdapter _моделиTableAdapter;
  8393. private ПоступленияTableAdapter _поступленияTableAdapter;
  8394. private ТоварTableAdapter _товарTableAdapter;
  8395. private bool _backupDataSetBeforeUpdate;
  8396. private global::System.Data.IDbConnection _connection;
  8397. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8398. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8399. public UpdateOrderOption UpdateOrder {
  8400. get {
  8401. return this._updateOrder;
  8402. }
  8403. set {
  8404. this._updateOrder = value;
  8405. }
  8406. }
  8407. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8408. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8409. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  8410. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  8411. "a", "System.Drawing.Design.UITypeEditor")]
  8412. public МоделиTableAdapter МоделиTableAdapter {
  8413. get {
  8414. return this._моделиTableAdapter;
  8415. }
  8416. set {
  8417. this._моделиTableAdapter = value;
  8418. }
  8419. }
  8420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8422. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  8423. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  8424. "a", "System.Drawing.Design.UITypeEditor")]
  8425. public ПоступленияTableAdapter ПоступленияTableAdapter {
  8426. get {
  8427. return this._поступленияTableAdapter;
  8428. }
  8429. set {
  8430. this._поступленияTableAdapter = value;
  8431. }
  8432. }
  8433. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8434. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8435. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  8436. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  8437. "a", "System.Drawing.Design.UITypeEditor")]
  8438. public ТоварTableAdapter ТоварTableAdapter {
  8439. get {
  8440. return this._товарTableAdapter;
  8441. }
  8442. set {
  8443. this._товарTableAdapter = value;
  8444. }
  8445. }
  8446. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8447. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8448. public bool BackupDataSetBeforeUpdate {
  8449. get {
  8450. return this._backupDataSetBeforeUpdate;
  8451. }
  8452. set {
  8453. this._backupDataSetBeforeUpdate = value;
  8454. }
  8455. }
  8456. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8457. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8458. [global::System.ComponentModel.Browsable(false)]
  8459. public global::System.Data.IDbConnection Connection {
  8460. get {
  8461. if ((this._connection != null)) {
  8462. return this._connection;
  8463. }
  8464. if (((this._моделиTableAdapter != null)
  8465. && (this._моделиTableAdapter.Connection != null))) {
  8466. return this._моделиTableAdapter.Connection;
  8467. }
  8468. if (((this._поступленияTableAdapter != null)
  8469. && (this._поступленияTableAdapter.Connection != null))) {
  8470. return this._поступленияTableAdapter.Connection;
  8471. }
  8472. if (((this._товарTableAdapter != null)
  8473. && (this._товарTableAdapter.Connection != null))) {
  8474. return this._товарTableAdapter.Connection;
  8475. }
  8476. return null;
  8477. }
  8478. set {
  8479. this._connection = value;
  8480. }
  8481. }
  8482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8484. [global::System.ComponentModel.Browsable(false)]
  8485. public int TableAdapterInstanceCount {
  8486. get {
  8487. int count = 0;
  8488. if ((this._моделиTableAdapter != null)) {
  8489. count = (count + 1);
  8490. }
  8491. if ((this._поступленияTableAdapter != null)) {
  8492. count = (count + 1);
  8493. }
  8494. if ((this._товарTableAdapter != null)) {
  8495. count = (count + 1);
  8496. }
  8497. return count;
  8498. }
  8499. }
  8500. /// <summary>
  8501. ///Update rows in top-down order.
  8502. ///</summary>
  8503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8505. private int UpdateUpdatedRows(Khozeev_ФАБРИКАDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  8506. int result = 0;
  8507. if ((this._моделиTableAdapter != null)) {
  8508. global::System.Data.DataRow[] updatedRows = dataSet.Модели.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  8509. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  8510. if (((updatedRows != null)
  8511. && (0 < updatedRows.Length))) {
  8512. result = (result + this._моделиTableAdapter.Update(updatedRows));
  8513. allChangedRows.AddRange(updatedRows);
  8514. }
  8515. }
  8516. if ((this._поступленияTableAdapter != null)) {
  8517. global::System.Data.DataRow[] updatedRows = dataSet.Поступления.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  8518. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  8519. if (((updatedRows != null)
  8520. && (0 < updatedRows.Length))) {
  8521. result = (result + this._поступленияTableAdapter.Update(updatedRows));
  8522. allChangedRows.AddRange(updatedRows);
  8523. }
  8524. }
  8525. if ((this._товарTableAdapter != null)) {
  8526. global::System.Data.DataRow[] updatedRows = dataSet.Товар.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  8527. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  8528. if (((updatedRows != null)
  8529. && (0 < updatedRows.Length))) {
  8530. result = (result + this._товарTableAdapter.Update(updatedRows));
  8531. allChangedRows.AddRange(updatedRows);
  8532. }
  8533. }
  8534. return result;
  8535. }
  8536. /// <summary>
  8537. ///Insert rows in top-down order.
  8538. ///</summary>
  8539. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8540. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8541. private int UpdateInsertedRows(Khozeev_ФАБРИКАDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  8542. int result = 0;
  8543. if ((this._моделиTableAdapter != null)) {
  8544. global::System.Data.DataRow[] addedRows = dataSet.Модели.Select(null, null, global::System.Data.DataViewRowState.Added);
  8545. if (((addedRows != null)
  8546. && (0 < addedRows.Length))) {
  8547. result = (result + this._моделиTableAdapter.Update(addedRows));
  8548. allAddedRows.AddRange(addedRows);
  8549. }
  8550. }
  8551. if ((this._поступленияTableAdapter != null)) {
  8552. global::System.Data.DataRow[] addedRows = dataSet.Поступления.Select(null, null, global::System.Data.DataViewRowState.Added);
  8553. if (((addedRows != null)
  8554. && (0 < addedRows.Length))) {
  8555. result = (result + this._поступленияTableAdapter.Update(addedRows));
  8556. allAddedRows.AddRange(addedRows);
  8557. }
  8558. }
  8559. if ((this._товарTableAdapter != null)) {
  8560. global::System.Data.DataRow[] addedRows = dataSet.Товар.Select(null, null, global::System.Data.DataViewRowState.Added);
  8561. if (((addedRows != null)
  8562. && (0 < addedRows.Length))) {
  8563. result = (result + this._товарTableAdapter.Update(addedRows));
  8564. allAddedRows.AddRange(addedRows);
  8565. }
  8566. }
  8567. return result;
  8568. }
  8569. /// <summary>
  8570. ///Delete rows in bottom-up order.
  8571. ///</summary>
  8572. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8573. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8574. private int UpdateDeletedRows(Khozeev_ФАБРИКАDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
  8575. int result = 0;
  8576. if ((this._товарTableAdapter != null)) {
  8577. global::System.Data.DataRow[] deletedRows = dataSet.Товар.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  8578. if (((deletedRows != null)
  8579. && (0 < deletedRows.Length))) {
  8580. result = (result + this._товарTableAdapter.Update(deletedRows));
  8581. allChangedRows.AddRange(deletedRows);
  8582. }
  8583. }
  8584. if ((this._поступленияTableAdapter != null)) {
  8585. global::System.Data.DataRow[] deletedRows = dataSet.Поступления.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  8586. if (((deletedRows != null)
  8587. && (0 < deletedRows.Length))) {
  8588. result = (result + this._поступленияTableAdapter.Update(deletedRows));
  8589. allChangedRows.AddRange(deletedRows);
  8590. }
  8591. }
  8592. if ((this._моделиTableAdapter != null)) {
  8593. global::System.Data.DataRow[] deletedRows = dataSet.Модели.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  8594. if (((deletedRows != null)
  8595. && (0 < deletedRows.Length))) {
  8596. result = (result + this._моделиTableAdapter.Update(deletedRows));
  8597. allChangedRows.AddRange(deletedRows);
  8598. }
  8599. }
  8600. return result;
  8601. }
  8602. /// <summary>
  8603. ///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
  8604. ///</summary>
  8605. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8606. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8607. private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  8608. if (((updatedRows == null)
  8609. || (updatedRows.Length < 1))) {
  8610. return updatedRows;
  8611. }
  8612. if (((allAddedRows == null)
  8613. || (allAddedRows.Count < 1))) {
  8614. return updatedRows;
  8615. }
  8616. global::System.Collections.Generic.List<global::System.Data.DataRow> realUpdatedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  8617. for (int i = 0; (i < updatedRows.Length); i = (i + 1)) {
  8618. global::System.Data.DataRow row = updatedRows[i];
  8619. if ((allAddedRows.Contains(row) == false)) {
  8620. realUpdatedRows.Add(row);
  8621. }
  8622. }
  8623. return realUpdatedRows.ToArray();
  8624. }
  8625. /// <summary>
  8626. ///Update all changes to the dataset.
  8627. ///</summary>
  8628. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8629. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8630. public virtual int UpdateAll(Khozeev_ФАБРИКАDataSet dataSet) {
  8631. if ((dataSet == null)) {
  8632. throw new global::System.ArgumentNullException("dataSet");
  8633. }
  8634. if ((dataSet.HasChanges() == false)) {
  8635. return 0;
  8636. }
  8637. if (((this._моделиTableAdapter != null)
  8638. && (this.MatchTableAdapterConnection(this._моделиTableAdapter.Connection) == false))) {
  8639. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  8640. "r, должны использовать одинаковую строку подключения.");
  8641. }
  8642. if (((this._поступленияTableAdapter != null)
  8643. && (this.MatchTableAdapterConnection(this._поступленияTableAdapter.Connection) == false))) {
  8644. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  8645. "r, должны использовать одинаковую строку подключения.");
  8646. }
  8647. if (((this._товарTableAdapter != null)
  8648. && (this.MatchTableAdapterConnection(this._товарTableAdapter.Connection) == false))) {
  8649. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  8650. "r, должны использовать одинаковую строку подключения.");
  8651. }
  8652. global::System.Data.IDbConnection workConnection = this.Connection;
  8653. if ((workConnection == null)) {
  8654. throw new global::System.ApplicationException("TableAdapterManager не содержит сведений о подключении. Укажите для каждого адапт" +
  8655. "ера таблицы TableAdapterManager допустимый экземпляр адаптера таблицы.");
  8656. }
  8657. bool workConnOpened = false;
  8658. if (((workConnection.State & global::System.Data.ConnectionState.Broken)
  8659. == global::System.Data.ConnectionState.Broken)) {
  8660. workConnection.Close();
  8661. }
  8662. if ((workConnection.State == global::System.Data.ConnectionState.Closed)) {
  8663. workConnection.Open();
  8664. workConnOpened = true;
  8665. }
  8666. global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
  8667. if ((workTransaction == null)) {
  8668. throw new global::System.ApplicationException("Не удается начать транзакцию. Текущее соединение данных не поддерживает транзакци" +
  8669. "и или текущее состояние не позволяет начать транзакцию.");
  8670. }
  8671. global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  8672. global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  8673. global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter> adaptersWithAcceptChangesDuringUpdate = new global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter>();
  8674. global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection> revertConnections = new global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection>();
  8675. int result = 0;
  8676. global::System.Data.DataSet backupDataSet = null;
  8677. if (this.BackupDataSetBeforeUpdate) {
  8678. backupDataSet = new global::System.Data.DataSet();
  8679. backupDataSet.Merge(dataSet);
  8680. }
  8681. try {
  8682. // ---- Prepare for update -----------
  8683. //
  8684. if ((this._моделиTableAdapter != null)) {
  8685. revertConnections.Add(this._моделиTableAdapter, this._моделиTableAdapter.Connection);
  8686. this._моделиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  8687. this._моделиTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  8688. if (this._моделиTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  8689. this._моделиTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  8690. adaptersWithAcceptChangesDuringUpdate.Add(this._моделиTableAdapter.Adapter);
  8691. }
  8692. }
  8693. if ((this._поступленияTableAdapter != null)) {
  8694. revertConnections.Add(this._поступленияTableAdapter, this._поступленияTableAdapter.Connection);
  8695. this._поступленияTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  8696. this._поступленияTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  8697. if (this._поступленияTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  8698. this._поступленияTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  8699. adaptersWithAcceptChangesDuringUpdate.Add(this._поступленияTableAdapter.Adapter);
  8700. }
  8701. }
  8702. if ((this._товарTableAdapter != null)) {
  8703. revertConnections.Add(this._товарTableAdapter, this._товарTableAdapter.Connection);
  8704. this._товарTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  8705. this._товарTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  8706. if (this._товарTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  8707. this._товарTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  8708. adaptersWithAcceptChangesDuringUpdate.Add(this._товарTableAdapter.Adapter);
  8709. }
  8710. }
  8711. //
  8712. //---- Perform updates -----------
  8713. //
  8714. if ((this.UpdateOrder == UpdateOrderOption.UpdateInsertDelete)) {
  8715. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  8716. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  8717. }
  8718. else {
  8719. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  8720. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  8721. }
  8722. result = (result + this.UpdateDeletedRows(dataSet, allChangedRows));
  8723. //
  8724. //---- Commit updates -----------
  8725. //
  8726. workTransaction.Commit();
  8727. if ((0 < allAddedRows.Count)) {
  8728. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  8729. allAddedRows.CopyTo(rows);
  8730. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  8731. global::System.Data.DataRow row = rows[i];
  8732. row.AcceptChanges();
  8733. }
  8734. }
  8735. if ((0 < allChangedRows.Count)) {
  8736. global::System.Data.DataRow[] rows = new System.Data.DataRow[allChangedRows.Count];
  8737. allChangedRows.CopyTo(rows);
  8738. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  8739. global::System.Data.DataRow row = rows[i];
  8740. row.AcceptChanges();
  8741. }
  8742. }
  8743. }
  8744. catch (global::System.Exception ex) {
  8745. workTransaction.Rollback();
  8746. // ---- Restore the dataset -----------
  8747. if (this.BackupDataSetBeforeUpdate) {
  8748. global::System.Diagnostics.Debug.Assert((backupDataSet != null));
  8749. dataSet.Clear();
  8750. dataSet.Merge(backupDataSet);
  8751. }
  8752. else {
  8753. if ((0 < allAddedRows.Count)) {
  8754. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  8755. allAddedRows.CopyTo(rows);
  8756. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  8757. global::System.Data.DataRow row = rows[i];
  8758. row.AcceptChanges();
  8759. row.SetAdded();
  8760. }
  8761. }
  8762. }
  8763. throw ex;
  8764. }
  8765. finally {
  8766. if (workConnOpened) {
  8767. workConnection.Close();
  8768. }
  8769. if ((this._моделиTableAdapter != null)) {
  8770. this._моделиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._моделиTableAdapter]));
  8771. this._моделиTableAdapter.Transaction = null;
  8772. }
  8773. if ((this._поступленияTableAdapter != null)) {
  8774. this._поступленияTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._поступленияTableAdapter]));
  8775. this._поступленияTableAdapter.Transaction = null;
  8776. }
  8777. if ((this._товарTableAdapter != null)) {
  8778. this._товарTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._товарTableAdapter]));
  8779. this._товарTableAdapter.Transaction = null;
  8780. }
  8781. if ((0 < adaptersWithAcceptChangesDuringUpdate.Count)) {
  8782. global::System.Data.Common.DataAdapter[] adapters = new System.Data.Common.DataAdapter[adaptersWithAcceptChangesDuringUpdate.Count];
  8783. adaptersWithAcceptChangesDuringUpdate.CopyTo(adapters);
  8784. for (int i = 0; (i < adapters.Length); i = (i + 1)) {
  8785. global::System.Data.Common.DataAdapter adapter = adapters[i];
  8786. adapter.AcceptChangesDuringUpdate = true;
  8787. }
  8788. }
  8789. }
  8790. return result;
  8791. }
  8792. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8793. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8794. protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
  8795. global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
  8796. }
  8797. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8798. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8799. protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) {
  8800. if ((this._connection != null)) {
  8801. return true;
  8802. }
  8803. if (((this.Connection == null)
  8804. || (inputConnection == null))) {
  8805. return true;
  8806. }
  8807. if (string.Equals(this.Connection.ConnectionString, inputConnection.ConnectionString, global::System.StringComparison.Ordinal)) {
  8808. return true;
  8809. }
  8810. return false;
  8811. }
  8812. /// <summary>
  8813. ///Update Order Option
  8814. ///</summary>
  8815. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8816. public enum UpdateOrderOption {
  8817. InsertUpdateDelete = 0,
  8818. UpdateInsertDelete = 1,
  8819. }
  8820. /// <summary>
  8821. ///Used to sort self-referenced table's rows
  8822. ///</summary>
  8823. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8824. private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
  8825. private global::System.Data.DataRelation _relation;
  8826. private int _childFirst;
  8827. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8828. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8829. internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) {
  8830. this._relation = relation;
  8831. if (childFirst) {
  8832. this._childFirst = -1;
  8833. }
  8834. else {
  8835. this._childFirst = 1;
  8836. }
  8837. }
  8838. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8839. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8840. private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) {
  8841. global::System.Diagnostics.Debug.Assert((row != null));
  8842. global::System.Data.DataRow root = row;
  8843. distance = 0;
  8844. global::System.Collections.Generic.IDictionary<global::System.Data.DataRow, global::System.Data.DataRow> traversedRows = new global::System.Collections.Generic.Dictionary<global::System.Data.DataRow, global::System.Data.DataRow>();
  8845. traversedRows[row] = row;
  8846. global::System.Data.DataRow parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  8847. for (
  8848. ; ((parent != null)
  8849. && (traversedRows.ContainsKey(parent) == false));
  8850. ) {
  8851. distance = (distance + 1);
  8852. root = parent;
  8853. traversedRows[parent] = parent;
  8854. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  8855. }
  8856. if ((distance == 0)) {
  8857. traversedRows.Clear();
  8858. traversedRows[row] = row;
  8859. parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  8860. for (
  8861. ; ((parent != null)
  8862. && (traversedRows.ContainsKey(parent) == false));
  8863. ) {
  8864. distance = (distance + 1);
  8865. root = parent;
  8866. traversedRows[parent] = parent;
  8867. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  8868. }
  8869. }
  8870. return root;
  8871. }
  8872. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8873. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8874. public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) {
  8875. if (object.ReferenceEquals(row1, row2)) {
  8876. return 0;
  8877. }
  8878. if ((row1 == null)) {
  8879. return -1;
  8880. }
  8881. if ((row2 == null)) {
  8882. return 1;
  8883. }
  8884. int distance1 = 0;
  8885. global::System.Data.DataRow root1 = this.GetRoot(row1, out distance1);
  8886. int distance2 = 0;
  8887. global::System.Data.DataRow root2 = this.GetRoot(row2, out distance2);
  8888. if (object.ReferenceEquals(root1, root2)) {
  8889. return (this._childFirst * distance1.CompareTo(distance2));
  8890. }
  8891. else {
  8892. global::System.Diagnostics.Debug.Assert(((root1.Table != null)
  8893. && (root2.Table != null)));
  8894. if ((root1.Table.Rows.IndexOf(root1) < root2.Table.Rows.IndexOf(root2))) {
  8895. return -1;
  8896. }
  8897. else {
  8898. return 1;
  8899. }
  8900. }
  8901. }
  8902. }
  8903. }
  8904. }
  8905. #pragma warning restore 1591