_Is_32_podrezovDataSet.Designer.cs 531 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан программой.
  4. // Исполняемая версия:4.0.30319.42000
  5. //
  6. // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
  7. // повторной генерации кода.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. #pragma warning disable 1591
  11. namespace IS31GrankinStudents {
  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("_Is_32_podrezovDataSet")]
  20. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
  21. public partial class _Is_32_podrezovDataSet : 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 global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  30. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  31. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  32. public _Is_32_podrezovDataSet() {
  33. this.BeginInit();
  34. this.InitClass();
  35. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  36. base.Tables.CollectionChanged += schemaChangedHandler;
  37. base.Relations.CollectionChanged += schemaChangedHandler;
  38. this.EndInit();
  39. }
  40. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  41. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  42. protected _Is_32_podrezovDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  43. base(info, context, false) {
  44. if ((this.IsBinarySerialized(info, context) == true)) {
  45. this.InitVars(false);
  46. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  47. this.Tables.CollectionChanged += schemaChangedHandler1;
  48. this.Relations.CollectionChanged += schemaChangedHandler1;
  49. return;
  50. }
  51. string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
  52. if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  53. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  54. ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  55. if ((ds.Tables["оценки"] != null)) {
  56. base.Tables.Add(new оценкиDataTable(ds.Tables["оценки"]));
  57. }
  58. if ((ds.Tables["предметы"] != null)) {
  59. base.Tables.Add(new предметыDataTable(ds.Tables["предметы"]));
  60. }
  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. this.DataSetName = ds.DataSetName;
  77. this.Prefix = ds.Prefix;
  78. this.Namespace = ds.Namespace;
  79. this.Locale = ds.Locale;
  80. this.CaseSensitive = ds.CaseSensitive;
  81. this.EnforceConstraints = ds.EnforceConstraints;
  82. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  83. this.InitVars();
  84. }
  85. else {
  86. this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  87. }
  88. this.GetSerializationData(info, context);
  89. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  90. base.Tables.CollectionChanged += schemaChangedHandler;
  91. this.Relations.CollectionChanged += schemaChangedHandler;
  92. }
  93. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  94. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  95. [global::System.ComponentModel.Browsable(false)]
  96. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  97. public оценкиDataTable оценки {
  98. get {
  99. return this.tableоценки;
  100. }
  101. }
  102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  104. [global::System.ComponentModel.Browsable(false)]
  105. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  106. public предметыDataTable предметы {
  107. get {
  108. return this.tableпредметы;
  109. }
  110. }
  111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  113. [global::System.ComponentModel.Browsable(false)]
  114. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  115. public специальностиDataTable специальности {
  116. get {
  117. return this.tableспециальности;
  118. }
  119. }
  120. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  121. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  122. [global::System.ComponentModel.Browsable(false)]
  123. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  124. public студентыDataTable студенты {
  125. get {
  126. return this.tableстуденты;
  127. }
  128. }
  129. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  130. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  131. [global::System.ComponentModel.Browsable(false)]
  132. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  133. public _Запрос_Студенты_ОценкиDataTable _Запрос_Студенты_Оценки {
  134. get {
  135. return this._tableЗапрос_Студенты_Оценки;
  136. }
  137. }
  138. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  139. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  140. [global::System.ComponentModel.Browsable(false)]
  141. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  142. public _запрос_студенты_специальностиDataTable _запрос_студенты_специальности {
  143. get {
  144. return this._tableзапрос_студенты_специальности;
  145. }
  146. }
  147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  148. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  149. [global::System.ComponentModel.Browsable(false)]
  150. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  151. public фильтр_ММDataTable фильтр_ММ {
  152. get {
  153. return this.tableфильтр_ММ;
  154. }
  155. }
  156. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  157. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  158. [global::System.ComponentModel.BrowsableAttribute(true)]
  159. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
  160. public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
  161. get {
  162. return this._schemaSerializationMode;
  163. }
  164. set {
  165. this._schemaSerializationMode = value;
  166. }
  167. }
  168. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  169. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  170. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  171. public new global::System.Data.DataTableCollection Tables {
  172. get {
  173. return base.Tables;
  174. }
  175. }
  176. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  177. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  178. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  179. public new global::System.Data.DataRelationCollection Relations {
  180. get {
  181. return base.Relations;
  182. }
  183. }
  184. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  185. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  186. protected override void InitializeDerivedDataSet() {
  187. this.BeginInit();
  188. this.InitClass();
  189. this.EndInit();
  190. }
  191. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  192. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  193. public override global::System.Data.DataSet Clone() {
  194. _Is_32_podrezovDataSet cln = ((_Is_32_podrezovDataSet)(base.Clone()));
  195. cln.InitVars();
  196. cln.SchemaSerializationMode = this.SchemaSerializationMode;
  197. return cln;
  198. }
  199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  200. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  201. protected override bool ShouldSerializeTables() {
  202. return false;
  203. }
  204. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  205. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  206. protected override bool ShouldSerializeRelations() {
  207. return false;
  208. }
  209. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  210. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  211. protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
  212. if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  213. this.Reset();
  214. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  215. ds.ReadXml(reader);
  216. if ((ds.Tables["оценки"] != null)) {
  217. base.Tables.Add(new оценкиDataTable(ds.Tables["оценки"]));
  218. }
  219. if ((ds.Tables["предметы"] != null)) {
  220. base.Tables.Add(new предметыDataTable(ds.Tables["предметы"]));
  221. }
  222. if ((ds.Tables["специальности"] != null)) {
  223. base.Tables.Add(new специальностиDataTable(ds.Tables["специальности"]));
  224. }
  225. if ((ds.Tables["студенты"] != null)) {
  226. base.Tables.Add(new студентыDataTable(ds.Tables["студенты"]));
  227. }
  228. if ((ds.Tables["Запрос Студенты+Оценки"] != null)) {
  229. base.Tables.Add(new _Запрос_Студенты_ОценкиDataTable(ds.Tables["Запрос Студенты+Оценки"]));
  230. }
  231. if ((ds.Tables["запрос студенты+специальности"] != null)) {
  232. base.Tables.Add(new _запрос_студенты_специальностиDataTable(ds.Tables["запрос студенты+специальности"]));
  233. }
  234. if ((ds.Tables["фильтр ММ"] != null)) {
  235. base.Tables.Add(new фильтр_ММDataTable(ds.Tables["фильтр ММ"]));
  236. }
  237. this.DataSetName = ds.DataSetName;
  238. this.Prefix = ds.Prefix;
  239. this.Namespace = ds.Namespace;
  240. this.Locale = ds.Locale;
  241. this.CaseSensitive = ds.CaseSensitive;
  242. this.EnforceConstraints = ds.EnforceConstraints;
  243. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  244. this.InitVars();
  245. }
  246. else {
  247. this.ReadXml(reader);
  248. this.InitVars();
  249. }
  250. }
  251. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  252. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  253. protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
  254. global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
  255. this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
  256. stream.Position = 0;
  257. return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
  258. }
  259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  261. internal void InitVars() {
  262. this.InitVars(true);
  263. }
  264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  266. internal void InitVars(bool initTable) {
  267. this.tableоценки = ((оценкиDataTable)(base.Tables["оценки"]));
  268. if ((initTable == true)) {
  269. if ((this.tableоценки != null)) {
  270. this.tableоценки.InitVars();
  271. }
  272. }
  273. this.tableпредметы = ((предметыDataTable)(base.Tables["предметы"]));
  274. if ((initTable == true)) {
  275. if ((this.tableпредметы != null)) {
  276. this.tableпредметы.InitVars();
  277. }
  278. }
  279. this.tableспециальности = ((специальностиDataTable)(base.Tables["специальности"]));
  280. if ((initTable == true)) {
  281. if ((this.tableспециальности != null)) {
  282. this.tableспециальности.InitVars();
  283. }
  284. }
  285. this.tableстуденты = ((студентыDataTable)(base.Tables["студенты"]));
  286. if ((initTable == true)) {
  287. if ((this.tableстуденты != null)) {
  288. this.tableстуденты.InitVars();
  289. }
  290. }
  291. this._tableЗапрос_Студенты_Оценки = ((_Запрос_Студенты_ОценкиDataTable)(base.Tables["Запрос Студенты+Оценки"]));
  292. if ((initTable == true)) {
  293. if ((this._tableЗапрос_Студенты_Оценки != null)) {
  294. this._tableЗапрос_Студенты_Оценки.InitVars();
  295. }
  296. }
  297. this._tableзапрос_студенты_специальности = ((_запрос_студенты_специальностиDataTable)(base.Tables["запрос студенты+специальности"]));
  298. if ((initTable == true)) {
  299. if ((this._tableзапрос_студенты_специальности != null)) {
  300. this._tableзапрос_студенты_специальности.InitVars();
  301. }
  302. }
  303. this.tableфильтр_ММ = ((фильтр_ММDataTable)(base.Tables["фильтр ММ"]));
  304. if ((initTable == true)) {
  305. if ((this.tableфильтр_ММ != null)) {
  306. this.tableфильтр_ММ.InitVars();
  307. }
  308. }
  309. }
  310. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  311. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  312. private void InitClass() {
  313. this.DataSetName = "_Is_32_podrezovDataSet";
  314. this.Prefix = "";
  315. this.Namespace = "http://tempuri.org/_Is_32_podrezovDataSet.xsd";
  316. this.EnforceConstraints = true;
  317. this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  318. this.tableоценки = new оценкиDataTable();
  319. base.Tables.Add(this.tableоценки);
  320. this.tableпредметы = new предметыDataTable();
  321. base.Tables.Add(this.tableпредметы);
  322. this.tableспециальности = new специальностиDataTable();
  323. base.Tables.Add(this.tableспециальности);
  324. this.tableстуденты = new студентыDataTable();
  325. base.Tables.Add(this.tableстуденты);
  326. this._tableЗапрос_Студенты_Оценки = new _Запрос_Студенты_ОценкиDataTable();
  327. base.Tables.Add(this._tableЗапрос_Студенты_Оценки);
  328. this._tableзапрос_студенты_специальности = new _запрос_студенты_специальностиDataTable();
  329. base.Tables.Add(this._tableзапрос_студенты_специальности);
  330. this.tableфильтр_ММ = new фильтр_ММDataTable();
  331. base.Tables.Add(this.tableфильтр_ММ);
  332. }
  333. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  334. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  335. private bool ShouldSerializeоценки() {
  336. return false;
  337. }
  338. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  339. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  340. private bool ShouldSerializeпредметы() {
  341. return false;
  342. }
  343. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  344. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  345. private bool ShouldSerializeспециальности() {
  346. return false;
  347. }
  348. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  349. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  350. private bool ShouldSerializeстуденты() {
  351. return false;
  352. }
  353. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  354. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  355. private bool ShouldSerialize_Запрос_Студенты_Оценки() {
  356. return false;
  357. }
  358. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  359. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  360. private bool ShouldSerialize_запрос_студенты_специальности() {
  361. return false;
  362. }
  363. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  364. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  365. private bool ShouldSerializeфильтр_ММ() {
  366. return false;
  367. }
  368. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  369. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  370. private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
  371. if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
  372. this.InitVars();
  373. }
  374. }
  375. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  376. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  377. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  378. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  379. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  380. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  381. global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
  382. any.Namespace = ds.Namespace;
  383. sequence.Items.Add(any);
  384. type.Particle = sequence;
  385. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  386. if (xs.Contains(dsSchema.TargetNamespace)) {
  387. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  388. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  389. try {
  390. global::System.Xml.Schema.XmlSchema schema = null;
  391. dsSchema.Write(s1);
  392. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  393. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  394. s2.SetLength(0);
  395. schema.Write(s2);
  396. if ((s1.Length == s2.Length)) {
  397. s1.Position = 0;
  398. s2.Position = 0;
  399. for (; ((s1.Position != s1.Length)
  400. && (s1.ReadByte() == s2.ReadByte())); ) {
  401. ;
  402. }
  403. if ((s1.Position == s1.Length)) {
  404. return type;
  405. }
  406. }
  407. }
  408. }
  409. finally {
  410. if ((s1 != null)) {
  411. s1.Close();
  412. }
  413. if ((s2 != null)) {
  414. s2.Close();
  415. }
  416. }
  417. }
  418. xs.Add(dsSchema);
  419. return type;
  420. }
  421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  422. public delegate void оценкиRowChangeEventHandler(object sender, оценкиRowChangeEvent e);
  423. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  424. public delegate void предметыRowChangeEventHandler(object sender, предметыRowChangeEvent e);
  425. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  426. public delegate void специальностиRowChangeEventHandler(object sender, специальностиRowChangeEvent e);
  427. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  428. public delegate void студентыRowChangeEventHandler(object sender, студентыRowChangeEvent e);
  429. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  430. public delegate void _Запрос_Студенты_ОценкиRowChangeEventHandler(object sender, _Запрос_Студенты_ОценкиRowChangeEvent e);
  431. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  432. public delegate void _запрос_студенты_специальностиRowChangeEventHandler(object sender, _запрос_студенты_специальностиRowChangeEvent e);
  433. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  434. public delegate void фильтр_ММRowChangeEventHandler(object sender, фильтр_ММRowChangeEvent e);
  435. /// <summary>
  436. ///Represents the strongly named DataTable class.
  437. ///</summary>
  438. [global::System.Serializable()]
  439. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  440. public partial class оценкиDataTable : global::System.Data.TypedTableBase<оценкиRow> {
  441. private global::System.Data.DataColumn columnкод_студента;
  442. private global::System.Data.DataColumn columnдата_экзамена_1;
  443. private global::System.Data.DataColumn columnкод_предмета_1;
  444. private global::System.Data.DataColumn columnоценка_1;
  445. private global::System.Data.DataColumn columnдата_экзамена_2;
  446. private global::System.Data.DataColumn columnкод_предмета_2;
  447. private global::System.Data.DataColumn columnоценка_2;
  448. private global::System.Data.DataColumn columnдата_экзамена_3;
  449. private global::System.Data.DataColumn columnкод_предмета_3;
  450. private global::System.Data.DataColumn columnоценка_3;
  451. private global::System.Data.DataColumn columnсредний_балл;
  452. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  453. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  454. public оценкиDataTable() {
  455. this.TableName = "оценки";
  456. this.BeginInit();
  457. this.InitClass();
  458. this.EndInit();
  459. }
  460. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  461. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  462. internal оценкиDataTable(global::System.Data.DataTable table) {
  463. this.TableName = table.TableName;
  464. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  465. this.CaseSensitive = table.CaseSensitive;
  466. }
  467. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  468. this.Locale = table.Locale;
  469. }
  470. if ((table.Namespace != table.DataSet.Namespace)) {
  471. this.Namespace = table.Namespace;
  472. }
  473. this.Prefix = table.Prefix;
  474. this.MinimumCapacity = table.MinimumCapacity;
  475. }
  476. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  477. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  478. protected оценкиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  479. base(info, context) {
  480. this.InitVars();
  481. }
  482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  484. public global::System.Data.DataColumn код_студентаColumn {
  485. get {
  486. return this.columnкод_студента;
  487. }
  488. }
  489. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  490. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  491. public global::System.Data.DataColumn дата_экзамена_1Column {
  492. get {
  493. return this.columnдата_экзамена_1;
  494. }
  495. }
  496. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  497. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  498. public global::System.Data.DataColumn код_предмета_1Column {
  499. get {
  500. return this.columnкод_предмета_1;
  501. }
  502. }
  503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  505. public global::System.Data.DataColumn оценка_1Column {
  506. get {
  507. return this.columnоценка_1;
  508. }
  509. }
  510. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  511. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  512. public global::System.Data.DataColumn дата_экзамена_2Column {
  513. get {
  514. return this.columnдата_экзамена_2;
  515. }
  516. }
  517. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  518. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  519. public global::System.Data.DataColumn код_предмета_2Column {
  520. get {
  521. return this.columnкод_предмета_2;
  522. }
  523. }
  524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  526. public global::System.Data.DataColumn оценка_2Column {
  527. get {
  528. return this.columnоценка_2;
  529. }
  530. }
  531. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  532. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  533. public global::System.Data.DataColumn дата_экзамена_3Column {
  534. get {
  535. return this.columnдата_экзамена_3;
  536. }
  537. }
  538. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  539. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  540. public global::System.Data.DataColumn код_предмета_3Column {
  541. get {
  542. return this.columnкод_предмета_3;
  543. }
  544. }
  545. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  547. public global::System.Data.DataColumn оценка_3Column {
  548. get {
  549. return this.columnоценка_3;
  550. }
  551. }
  552. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  554. public global::System.Data.DataColumn средний_баллColumn {
  555. get {
  556. return this.columnсредний_балл;
  557. }
  558. }
  559. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  560. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  561. [global::System.ComponentModel.Browsable(false)]
  562. public int Count {
  563. get {
  564. return this.Rows.Count;
  565. }
  566. }
  567. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  568. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  569. public оценкиRow this[int index] {
  570. get {
  571. return ((оценкиRow)(this.Rows[index]));
  572. }
  573. }
  574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  575. public event оценкиRowChangeEventHandler оценкиRowChanging;
  576. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  577. public event оценкиRowChangeEventHandler оценкиRowChanged;
  578. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  579. public event оценкиRowChangeEventHandler оценкиRowDeleting;
  580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  581. public event оценкиRowChangeEventHandler оценкиRowDeleted;
  582. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  583. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  584. public void AddоценкиRow(оценкиRow row) {
  585. this.Rows.Add(row);
  586. }
  587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  589. public оценкиRow AddоценкиRow(long код_студента, System.DateTime дата_экзамена_1, long код_предмета_1, byte оценка_1, System.DateTime дата_экзамена_2, long код_предмета_2, byte оценка_2, System.DateTime дата_экзамена_3, long код_предмета_3, byte оценка_3, float средний_балл) {
  590. оценкиRow rowоценкиRow = ((оценкиRow)(this.NewRow()));
  591. object[] columnValuesArray = new object[] {
  592. код_студента,
  593. дата_экзамена_1,
  594. код_предмета_1,
  595. оценка_1,
  596. дата_экзамена_2,
  597. код_предмета_2,
  598. оценка_2,
  599. дата_экзамена_3,
  600. код_предмета_3,
  601. оценка_3,
  602. средний_балл};
  603. rowоценкиRow.ItemArray = columnValuesArray;
  604. this.Rows.Add(rowоценкиRow);
  605. return rowоценкиRow;
  606. }
  607. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  608. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  609. public override global::System.Data.DataTable Clone() {
  610. оценкиDataTable cln = ((оценкиDataTable)(base.Clone()));
  611. cln.InitVars();
  612. return cln;
  613. }
  614. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  615. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  616. protected override global::System.Data.DataTable CreateInstance() {
  617. return new оценкиDataTable();
  618. }
  619. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  620. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  621. internal void InitVars() {
  622. this.columnкод_студента = base.Columns["код студента"];
  623. this.columnдата_экзамена_1 = base.Columns["дата экзамена 1"];
  624. this.columnкод_предмета_1 = base.Columns["код предмета 1"];
  625. this.columnоценка_1 = base.Columns["оценка 1"];
  626. this.columnдата_экзамена_2 = base.Columns["дата экзамена 2"];
  627. this.columnкод_предмета_2 = base.Columns["код предмета 2"];
  628. this.columnоценка_2 = base.Columns["оценка 2"];
  629. this.columnдата_экзамена_3 = base.Columns["дата экзамена 3"];
  630. this.columnкод_предмета_3 = base.Columns["код предмета 3"];
  631. this.columnоценка_3 = base.Columns["оценка 3"];
  632. this.columnсредний_балл = base.Columns["средний балл"];
  633. }
  634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  636. private void InitClass() {
  637. this.columnкод_студента = new global::System.Data.DataColumn("код студента", typeof(long), null, global::System.Data.MappingType.Element);
  638. base.Columns.Add(this.columnкод_студента);
  639. this.columnдата_экзамена_1 = new global::System.Data.DataColumn("дата экзамена 1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  640. base.Columns.Add(this.columnдата_экзамена_1);
  641. this.columnкод_предмета_1 = new global::System.Data.DataColumn("код предмета 1", typeof(long), null, global::System.Data.MappingType.Element);
  642. base.Columns.Add(this.columnкод_предмета_1);
  643. this.columnоценка_1 = new global::System.Data.DataColumn("оценка 1", typeof(byte), null, global::System.Data.MappingType.Element);
  644. base.Columns.Add(this.columnоценка_1);
  645. this.columnдата_экзамена_2 = new global::System.Data.DataColumn("дата экзамена 2", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  646. base.Columns.Add(this.columnдата_экзамена_2);
  647. this.columnкод_предмета_2 = new global::System.Data.DataColumn("код предмета 2", typeof(long), null, global::System.Data.MappingType.Element);
  648. base.Columns.Add(this.columnкод_предмета_2);
  649. this.columnоценка_2 = new global::System.Data.DataColumn("оценка 2", typeof(byte), null, global::System.Data.MappingType.Element);
  650. base.Columns.Add(this.columnоценка_2);
  651. this.columnдата_экзамена_3 = new global::System.Data.DataColumn("дата экзамена 3", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  652. base.Columns.Add(this.columnдата_экзамена_3);
  653. this.columnкод_предмета_3 = new global::System.Data.DataColumn("код предмета 3", typeof(long), null, global::System.Data.MappingType.Element);
  654. base.Columns.Add(this.columnкод_предмета_3);
  655. this.columnоценка_3 = new global::System.Data.DataColumn("оценка 3", typeof(byte), null, global::System.Data.MappingType.Element);
  656. base.Columns.Add(this.columnоценка_3);
  657. this.columnсредний_балл = new global::System.Data.DataColumn("средний балл", typeof(float), null, global::System.Data.MappingType.Element);
  658. base.Columns.Add(this.columnсредний_балл);
  659. }
  660. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  661. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  662. public оценкиRow NewоценкиRow() {
  663. return ((оценкиRow)(this.NewRow()));
  664. }
  665. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  666. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  667. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  668. return new оценкиRow(builder);
  669. }
  670. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  671. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  672. protected override global::System.Type GetRowType() {
  673. return typeof(оценкиRow);
  674. }
  675. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  676. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  677. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  678. base.OnRowChanged(e);
  679. if ((this.оценкиRowChanged != null)) {
  680. this.оценкиRowChanged(this, new оценкиRowChangeEvent(((оценкиRow)(e.Row)), e.Action));
  681. }
  682. }
  683. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  684. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  685. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  686. base.OnRowChanging(e);
  687. if ((this.оценкиRowChanging != null)) {
  688. this.оценкиRowChanging(this, new оценкиRowChangeEvent(((оценкиRow)(e.Row)), e.Action));
  689. }
  690. }
  691. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  692. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  693. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  694. base.OnRowDeleted(e);
  695. if ((this.оценкиRowDeleted != null)) {
  696. this.оценкиRowDeleted(this, new оценкиRowChangeEvent(((оценкиRow)(e.Row)), e.Action));
  697. }
  698. }
  699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  701. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  702. base.OnRowDeleting(e);
  703. if ((this.оценкиRowDeleting != null)) {
  704. this.оценкиRowDeleting(this, new оценкиRowChangeEvent(((оценкиRow)(e.Row)), e.Action));
  705. }
  706. }
  707. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  708. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  709. public void RemoveоценкиRow(оценкиRow row) {
  710. this.Rows.Remove(row);
  711. }
  712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  714. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  715. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  716. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  717. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  718. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  719. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  720. any1.MinOccurs = new decimal(0);
  721. any1.MaxOccurs = decimal.MaxValue;
  722. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  723. sequence.Items.Add(any1);
  724. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  725. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  726. any2.MinOccurs = new decimal(1);
  727. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  728. sequence.Items.Add(any2);
  729. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  730. attribute1.Name = "namespace";
  731. attribute1.FixedValue = ds.Namespace;
  732. type.Attributes.Add(attribute1);
  733. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  734. attribute2.Name = "tableTypeName";
  735. attribute2.FixedValue = "оценкиDataTable";
  736. type.Attributes.Add(attribute2);
  737. type.Particle = sequence;
  738. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  739. if (xs.Contains(dsSchema.TargetNamespace)) {
  740. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  741. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  742. try {
  743. global::System.Xml.Schema.XmlSchema schema = null;
  744. dsSchema.Write(s1);
  745. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  746. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  747. s2.SetLength(0);
  748. schema.Write(s2);
  749. if ((s1.Length == s2.Length)) {
  750. s1.Position = 0;
  751. s2.Position = 0;
  752. for (; ((s1.Position != s1.Length)
  753. && (s1.ReadByte() == s2.ReadByte())); ) {
  754. ;
  755. }
  756. if ((s1.Position == s1.Length)) {
  757. return type;
  758. }
  759. }
  760. }
  761. }
  762. finally {
  763. if ((s1 != null)) {
  764. s1.Close();
  765. }
  766. if ((s2 != null)) {
  767. s2.Close();
  768. }
  769. }
  770. }
  771. xs.Add(dsSchema);
  772. return type;
  773. }
  774. }
  775. /// <summary>
  776. ///Represents the strongly named DataTable class.
  777. ///</summary>
  778. [global::System.Serializable()]
  779. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  780. public partial class предметыDataTable : global::System.Data.TypedTableBase<предметыRow> {
  781. private global::System.Data.DataColumn columnкод_предмета;
  782. private global::System.Data.DataColumn columnнаименование_предмета;
  783. private global::System.Data.DataColumn columnописание_предмета;
  784. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  785. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  786. public предметыDataTable() {
  787. this.TableName = "предметы";
  788. this.BeginInit();
  789. this.InitClass();
  790. this.EndInit();
  791. }
  792. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  793. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  794. internal предметыDataTable(global::System.Data.DataTable table) {
  795. this.TableName = table.TableName;
  796. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  797. this.CaseSensitive = table.CaseSensitive;
  798. }
  799. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  800. this.Locale = table.Locale;
  801. }
  802. if ((table.Namespace != table.DataSet.Namespace)) {
  803. this.Namespace = table.Namespace;
  804. }
  805. this.Prefix = table.Prefix;
  806. this.MinimumCapacity = table.MinimumCapacity;
  807. }
  808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  810. protected предметыDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  811. base(info, context) {
  812. this.InitVars();
  813. }
  814. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  815. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  816. public global::System.Data.DataColumn код_предметаColumn {
  817. get {
  818. return this.columnкод_предмета;
  819. }
  820. }
  821. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  822. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  823. public global::System.Data.DataColumn наименование_предметаColumn {
  824. get {
  825. return this.columnнаименование_предмета;
  826. }
  827. }
  828. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  829. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  830. public global::System.Data.DataColumn описание_предметаColumn {
  831. get {
  832. return this.columnописание_предмета;
  833. }
  834. }
  835. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  836. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  837. [global::System.ComponentModel.Browsable(false)]
  838. public int Count {
  839. get {
  840. return this.Rows.Count;
  841. }
  842. }
  843. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  844. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  845. public предметыRow this[int index] {
  846. get {
  847. return ((предметыRow)(this.Rows[index]));
  848. }
  849. }
  850. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  851. public event предметыRowChangeEventHandler предметыRowChanging;
  852. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  853. public event предметыRowChangeEventHandler предметыRowChanged;
  854. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  855. public event предметыRowChangeEventHandler предметыRowDeleting;
  856. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  857. public event предметыRowChangeEventHandler предметыRowDeleted;
  858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  859. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  860. public void AddпредметыRow(предметыRow row) {
  861. this.Rows.Add(row);
  862. }
  863. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  864. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  865. public предметыRow AddпредметыRow(string наименование_предмета, string описание_предмета) {
  866. предметыRow rowпредметыRow = ((предметыRow)(this.NewRow()));
  867. object[] columnValuesArray = new object[] {
  868. null,
  869. наименование_предмета,
  870. описание_предмета};
  871. rowпредметыRow.ItemArray = columnValuesArray;
  872. this.Rows.Add(rowпредметыRow);
  873. return rowпредметыRow;
  874. }
  875. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  876. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  877. public предметыRow FindByкод_предмета(int код_предмета) {
  878. return ((предметыRow)(this.Rows.Find(new object[] {
  879. код_предмета})));
  880. }
  881. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  882. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  883. public override global::System.Data.DataTable Clone() {
  884. предметыDataTable cln = ((предметыDataTable)(base.Clone()));
  885. cln.InitVars();
  886. return cln;
  887. }
  888. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  889. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  890. protected override global::System.Data.DataTable CreateInstance() {
  891. return new предметыDataTable();
  892. }
  893. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  894. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  895. internal void InitVars() {
  896. this.columnкод_предмета = base.Columns["код предмета"];
  897. this.columnнаименование_предмета = base.Columns["наименование предмета"];
  898. this.columnописание_предмета = base.Columns["описание предмета"];
  899. }
  900. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  901. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  902. private void InitClass() {
  903. this.columnкод_предмета = new global::System.Data.DataColumn("код предмета", typeof(int), null, global::System.Data.MappingType.Element);
  904. base.Columns.Add(this.columnкод_предмета);
  905. this.columnнаименование_предмета = new global::System.Data.DataColumn("наименование предмета", typeof(string), null, global::System.Data.MappingType.Element);
  906. base.Columns.Add(this.columnнаименование_предмета);
  907. this.columnописание_предмета = new global::System.Data.DataColumn("описание предмета", typeof(string), null, global::System.Data.MappingType.Element);
  908. base.Columns.Add(this.columnописание_предмета);
  909. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  910. this.columnкод_предмета}, true));
  911. this.columnкод_предмета.AutoIncrement = true;
  912. this.columnкод_предмета.AutoIncrementSeed = -1;
  913. this.columnкод_предмета.AutoIncrementStep = -1;
  914. this.columnкод_предмета.AllowDBNull = false;
  915. this.columnкод_предмета.ReadOnly = true;
  916. this.columnкод_предмета.Unique = true;
  917. this.columnнаименование_предмета.MaxLength = 50;
  918. this.columnописание_предмета.MaxLength = 2147483647;
  919. }
  920. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  921. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  922. public предметыRow NewпредметыRow() {
  923. return ((предметыRow)(this.NewRow()));
  924. }
  925. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  926. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  927. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  928. return new предметыRow(builder);
  929. }
  930. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  931. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  932. protected override global::System.Type GetRowType() {
  933. return typeof(предметыRow);
  934. }
  935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  937. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  938. base.OnRowChanged(e);
  939. if ((this.предметыRowChanged != null)) {
  940. this.предметыRowChanged(this, new предметыRowChangeEvent(((предметыRow)(e.Row)), e.Action));
  941. }
  942. }
  943. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  944. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  945. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  946. base.OnRowChanging(e);
  947. if ((this.предметыRowChanging != null)) {
  948. this.предметыRowChanging(this, new предметыRowChangeEvent(((предметыRow)(e.Row)), e.Action));
  949. }
  950. }
  951. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  952. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  953. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  954. base.OnRowDeleted(e);
  955. if ((this.предметыRowDeleted != null)) {
  956. this.предметыRowDeleted(this, new предметыRowChangeEvent(((предметыRow)(e.Row)), e.Action));
  957. }
  958. }
  959. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  960. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  961. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  962. base.OnRowDeleting(e);
  963. if ((this.предметыRowDeleting != null)) {
  964. this.предметыRowDeleting(this, new предметыRowChangeEvent(((предметыRow)(e.Row)), e.Action));
  965. }
  966. }
  967. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  968. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  969. public void RemoveпредметыRow(предметыRow row) {
  970. this.Rows.Remove(row);
  971. }
  972. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  973. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  974. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  975. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  976. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  977. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  978. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  979. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  980. any1.MinOccurs = new decimal(0);
  981. any1.MaxOccurs = decimal.MaxValue;
  982. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  983. sequence.Items.Add(any1);
  984. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  985. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  986. any2.MinOccurs = new decimal(1);
  987. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  988. sequence.Items.Add(any2);
  989. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  990. attribute1.Name = "namespace";
  991. attribute1.FixedValue = ds.Namespace;
  992. type.Attributes.Add(attribute1);
  993. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  994. attribute2.Name = "tableTypeName";
  995. attribute2.FixedValue = "предметыDataTable";
  996. type.Attributes.Add(attribute2);
  997. type.Particle = sequence;
  998. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  999. if (xs.Contains(dsSchema.TargetNamespace)) {
  1000. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1001. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1002. try {
  1003. global::System.Xml.Schema.XmlSchema schema = null;
  1004. dsSchema.Write(s1);
  1005. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1006. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1007. s2.SetLength(0);
  1008. schema.Write(s2);
  1009. if ((s1.Length == s2.Length)) {
  1010. s1.Position = 0;
  1011. s2.Position = 0;
  1012. for (; ((s1.Position != s1.Length)
  1013. && (s1.ReadByte() == s2.ReadByte())); ) {
  1014. ;
  1015. }
  1016. if ((s1.Position == s1.Length)) {
  1017. return type;
  1018. }
  1019. }
  1020. }
  1021. }
  1022. finally {
  1023. if ((s1 != null)) {
  1024. s1.Close();
  1025. }
  1026. if ((s2 != null)) {
  1027. s2.Close();
  1028. }
  1029. }
  1030. }
  1031. xs.Add(dsSchema);
  1032. return type;
  1033. }
  1034. }
  1035. /// <summary>
  1036. ///Represents the strongly named DataTable class.
  1037. ///</summary>
  1038. [global::System.Serializable()]
  1039. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1040. public partial class специальностиDataTable : global::System.Data.TypedTableBase<специальностиRow> {
  1041. private global::System.Data.DataColumn columnКод_специальности;
  1042. private global::System.Data.DataColumn columnНаименование_специальности;
  1043. private global::System.Data.DataColumn columnОписание_специальности;
  1044. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1045. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1046. public специальностиDataTable() {
  1047. this.TableName = "специальности";
  1048. this.BeginInit();
  1049. this.InitClass();
  1050. this.EndInit();
  1051. }
  1052. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1053. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1054. internal специальностиDataTable(global::System.Data.DataTable table) {
  1055. this.TableName = table.TableName;
  1056. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1057. this.CaseSensitive = table.CaseSensitive;
  1058. }
  1059. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1060. this.Locale = table.Locale;
  1061. }
  1062. if ((table.Namespace != table.DataSet.Namespace)) {
  1063. this.Namespace = table.Namespace;
  1064. }
  1065. this.Prefix = table.Prefix;
  1066. this.MinimumCapacity = table.MinimumCapacity;
  1067. }
  1068. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1069. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1070. protected специальностиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1071. base(info, context) {
  1072. this.InitVars();
  1073. }
  1074. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1075. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1076. public global::System.Data.DataColumn Код_специальностиColumn {
  1077. get {
  1078. return this.columnКод_специальности;
  1079. }
  1080. }
  1081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1082. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1083. public global::System.Data.DataColumn Наименование_специальностиColumn {
  1084. get {
  1085. return this.columnНаименование_специальности;
  1086. }
  1087. }
  1088. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1089. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1090. public global::System.Data.DataColumn Описание_специальностиColumn {
  1091. get {
  1092. return this.columnОписание_специальности;
  1093. }
  1094. }
  1095. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1096. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1097. [global::System.ComponentModel.Browsable(false)]
  1098. public int Count {
  1099. get {
  1100. return this.Rows.Count;
  1101. }
  1102. }
  1103. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1104. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1105. public специальностиRow this[int index] {
  1106. get {
  1107. return ((специальностиRow)(this.Rows[index]));
  1108. }
  1109. }
  1110. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1111. public event специальностиRowChangeEventHandler специальностиRowChanging;
  1112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1113. public event специальностиRowChangeEventHandler специальностиRowChanged;
  1114. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1115. public event специальностиRowChangeEventHandler специальностиRowDeleting;
  1116. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1117. public event специальностиRowChangeEventHandler специальностиRowDeleted;
  1118. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1119. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1120. public void AddспециальностиRow(специальностиRow row) {
  1121. this.Rows.Add(row);
  1122. }
  1123. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1124. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1125. public специальностиRow AddспециальностиRow(string Наименование_специальности, string Описание_специальности) {
  1126. специальностиRow rowспециальностиRow = ((специальностиRow)(this.NewRow()));
  1127. object[] columnValuesArray = new object[] {
  1128. null,
  1129. Наименование_специальности,
  1130. Описание_специальности};
  1131. rowспециальностиRow.ItemArray = columnValuesArray;
  1132. this.Rows.Add(rowспециальностиRow);
  1133. return rowспециальностиRow;
  1134. }
  1135. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1136. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1137. public специальностиRow FindByКод_специальности(int Код_специальности) {
  1138. return ((специальностиRow)(this.Rows.Find(new object[] {
  1139. Код_специальности})));
  1140. }
  1141. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1142. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1143. public override global::System.Data.DataTable Clone() {
  1144. специальностиDataTable cln = ((специальностиDataTable)(base.Clone()));
  1145. cln.InitVars();
  1146. return cln;
  1147. }
  1148. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1149. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1150. protected override global::System.Data.DataTable CreateInstance() {
  1151. return new специальностиDataTable();
  1152. }
  1153. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1154. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1155. internal void InitVars() {
  1156. this.columnКод_специальности = base.Columns["Код специальности"];
  1157. this.columnНаименование_специальности = base.Columns["Наименование специальности"];
  1158. this.columnОписание_специальности = base.Columns["Описание специальности"];
  1159. }
  1160. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1161. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1162. private void InitClass() {
  1163. this.columnКод_специальности = new global::System.Data.DataColumn("Код специальности", typeof(int), null, global::System.Data.MappingType.Element);
  1164. base.Columns.Add(this.columnКод_специальности);
  1165. this.columnНаименование_специальности = new global::System.Data.DataColumn("Наименование специальности", typeof(string), null, global::System.Data.MappingType.Element);
  1166. base.Columns.Add(this.columnНаименование_специальности);
  1167. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  1168. base.Columns.Add(this.columnОписание_специальности);
  1169. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1170. this.columnКод_специальности}, true));
  1171. this.columnКод_специальности.AutoIncrement = true;
  1172. this.columnКод_специальности.AutoIncrementSeed = -1;
  1173. this.columnКод_специальности.AutoIncrementStep = -1;
  1174. this.columnКод_специальности.AllowDBNull = false;
  1175. this.columnКод_специальности.ReadOnly = true;
  1176. this.columnКод_специальности.Unique = true;
  1177. this.columnНаименование_специальности.MaxLength = 50;
  1178. this.columnОписание_специальности.MaxLength = 2147483647;
  1179. }
  1180. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1181. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1182. public специальностиRow NewспециальностиRow() {
  1183. return ((специальностиRow)(this.NewRow()));
  1184. }
  1185. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1186. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1187. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1188. return new специальностиRow(builder);
  1189. }
  1190. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1191. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1192. protected override global::System.Type GetRowType() {
  1193. return typeof(специальностиRow);
  1194. }
  1195. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1196. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1197. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1198. base.OnRowChanged(e);
  1199. if ((this.специальностиRowChanged != null)) {
  1200. this.специальностиRowChanged(this, new специальностиRowChangeEvent(((специальностиRow)(e.Row)), e.Action));
  1201. }
  1202. }
  1203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1204. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1205. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1206. base.OnRowChanging(e);
  1207. if ((this.специальностиRowChanging != null)) {
  1208. this.специальностиRowChanging(this, new специальностиRowChangeEvent(((специальностиRow)(e.Row)), e.Action));
  1209. }
  1210. }
  1211. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1212. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1213. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1214. base.OnRowDeleted(e);
  1215. if ((this.специальностиRowDeleted != null)) {
  1216. this.специальностиRowDeleted(this, new специальностиRowChangeEvent(((специальностиRow)(e.Row)), e.Action));
  1217. }
  1218. }
  1219. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1220. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1221. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1222. base.OnRowDeleting(e);
  1223. if ((this.специальностиRowDeleting != null)) {
  1224. this.специальностиRowDeleting(this, new специальностиRowChangeEvent(((специальностиRow)(e.Row)), e.Action));
  1225. }
  1226. }
  1227. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1228. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1229. public void RemoveспециальностиRow(специальностиRow row) {
  1230. this.Rows.Remove(row);
  1231. }
  1232. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1233. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1234. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1235. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1236. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1237. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  1238. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1239. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1240. any1.MinOccurs = new decimal(0);
  1241. any1.MaxOccurs = decimal.MaxValue;
  1242. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1243. sequence.Items.Add(any1);
  1244. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1245. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1246. any2.MinOccurs = new decimal(1);
  1247. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1248. sequence.Items.Add(any2);
  1249. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1250. attribute1.Name = "namespace";
  1251. attribute1.FixedValue = ds.Namespace;
  1252. type.Attributes.Add(attribute1);
  1253. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1254. attribute2.Name = "tableTypeName";
  1255. attribute2.FixedValue = "специальностиDataTable";
  1256. type.Attributes.Add(attribute2);
  1257. type.Particle = sequence;
  1258. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1259. if (xs.Contains(dsSchema.TargetNamespace)) {
  1260. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1261. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1262. try {
  1263. global::System.Xml.Schema.XmlSchema schema = null;
  1264. dsSchema.Write(s1);
  1265. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1266. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1267. s2.SetLength(0);
  1268. schema.Write(s2);
  1269. if ((s1.Length == s2.Length)) {
  1270. s1.Position = 0;
  1271. s2.Position = 0;
  1272. for (; ((s1.Position != s1.Length)
  1273. && (s1.ReadByte() == s2.ReadByte())); ) {
  1274. ;
  1275. }
  1276. if ((s1.Position == s1.Length)) {
  1277. return type;
  1278. }
  1279. }
  1280. }
  1281. }
  1282. finally {
  1283. if ((s1 != null)) {
  1284. s1.Close();
  1285. }
  1286. if ((s2 != null)) {
  1287. s2.Close();
  1288. }
  1289. }
  1290. }
  1291. xs.Add(dsSchema);
  1292. return type;
  1293. }
  1294. }
  1295. /// <summary>
  1296. ///Represents the strongly named DataTable class.
  1297. ///</summary>
  1298. [global::System.Serializable()]
  1299. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1300. public partial class студентыDataTable : global::System.Data.TypedTableBase<студентыRow> {
  1301. private global::System.Data.DataColumn columnкод_студента;
  1302. private global::System.Data.DataColumn columnФИО;
  1303. private global::System.Data.DataColumn columnПол;
  1304. private global::System.Data.DataColumn columnДата_рождения;
  1305. private global::System.Data.DataColumn columnРодители;
  1306. private global::System.Data.DataColumn columnАдрес;
  1307. private global::System.Data.DataColumn columnТелефон;
  1308. private global::System.Data.DataColumn columnПаспортные_данные;
  1309. private global::System.Data.DataColumn columnНомер_зачетки;
  1310. private global::System.Data.DataColumn columnДата_поступления;
  1311. private global::System.Data.DataColumn columnГуппа;
  1312. private global::System.Data.DataColumn columnКурс;
  1313. private global::System.Data.DataColumn columnКод_специальности;
  1314. private global::System.Data.DataColumn columnОчная_форма_обучения;
  1315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1317. public студентыDataTable() {
  1318. this.TableName = "студенты";
  1319. this.BeginInit();
  1320. this.InitClass();
  1321. this.EndInit();
  1322. }
  1323. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1324. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1325. internal студентыDataTable(global::System.Data.DataTable table) {
  1326. this.TableName = table.TableName;
  1327. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1328. this.CaseSensitive = table.CaseSensitive;
  1329. }
  1330. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1331. this.Locale = table.Locale;
  1332. }
  1333. if ((table.Namespace != table.DataSet.Namespace)) {
  1334. this.Namespace = table.Namespace;
  1335. }
  1336. this.Prefix = table.Prefix;
  1337. this.MinimumCapacity = table.MinimumCapacity;
  1338. }
  1339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1341. protected студентыDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1342. base(info, context) {
  1343. this.InitVars();
  1344. }
  1345. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1346. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1347. public global::System.Data.DataColumn код_студентаColumn {
  1348. get {
  1349. return this.columnкод_студента;
  1350. }
  1351. }
  1352. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1353. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1354. public global::System.Data.DataColumn ФИОColumn {
  1355. get {
  1356. return this.columnФИО;
  1357. }
  1358. }
  1359. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1360. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1361. public global::System.Data.DataColumn ПолColumn {
  1362. get {
  1363. return this.columnПол;
  1364. }
  1365. }
  1366. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1367. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1368. public global::System.Data.DataColumn Дата_рожденияColumn {
  1369. get {
  1370. return this.columnДата_рождения;
  1371. }
  1372. }
  1373. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1374. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1375. public global::System.Data.DataColumn РодителиColumn {
  1376. get {
  1377. return this.columnРодители;
  1378. }
  1379. }
  1380. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1381. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1382. public global::System.Data.DataColumn АдресColumn {
  1383. get {
  1384. return this.columnАдрес;
  1385. }
  1386. }
  1387. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1388. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1389. public global::System.Data.DataColumn ТелефонColumn {
  1390. get {
  1391. return this.columnТелефон;
  1392. }
  1393. }
  1394. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1395. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1396. public global::System.Data.DataColumn Паспортные_данныеColumn {
  1397. get {
  1398. return this.columnПаспортные_данные;
  1399. }
  1400. }
  1401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1403. public global::System.Data.DataColumn Номер_зачеткиColumn {
  1404. get {
  1405. return this.columnНомер_зачетки;
  1406. }
  1407. }
  1408. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1409. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1410. public global::System.Data.DataColumn Дата_поступленияColumn {
  1411. get {
  1412. return this.columnДата_поступления;
  1413. }
  1414. }
  1415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1417. public global::System.Data.DataColumn ГуппаColumn {
  1418. get {
  1419. return this.columnГуппа;
  1420. }
  1421. }
  1422. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1423. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1424. public global::System.Data.DataColumn КурсColumn {
  1425. get {
  1426. return this.columnКурс;
  1427. }
  1428. }
  1429. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1430. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1431. public global::System.Data.DataColumn Код_специальностиColumn {
  1432. get {
  1433. return this.columnКод_специальности;
  1434. }
  1435. }
  1436. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1437. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1438. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  1439. get {
  1440. return this.columnОчная_форма_обучения;
  1441. }
  1442. }
  1443. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1444. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1445. [global::System.ComponentModel.Browsable(false)]
  1446. public int Count {
  1447. get {
  1448. return this.Rows.Count;
  1449. }
  1450. }
  1451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1452. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1453. public студентыRow this[int index] {
  1454. get {
  1455. return ((студентыRow)(this.Rows[index]));
  1456. }
  1457. }
  1458. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1459. public event студентыRowChangeEventHandler студентыRowChanging;
  1460. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1461. public event студентыRowChangeEventHandler студентыRowChanged;
  1462. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1463. public event студентыRowChangeEventHandler студентыRowDeleting;
  1464. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1465. public event студентыRowChangeEventHandler студентыRowDeleted;
  1466. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1467. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1468. public void AddстудентыRow(студентыRow row) {
  1469. this.Rows.Add(row);
  1470. }
  1471. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1472. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1473. public студентыRow AddстудентыRow(string ФИО, string Пол, System.DateTime Дата_рождения, string Родители, string Адрес, string Телефон, string Паспортные_данные, long Номер_зачетки, System.DateTime Дата_поступления, string Гуппа, byte Курс, long Код_специальности, bool Очная_форма_обучения) {
  1474. студентыRow rowстудентыRow = ((студентыRow)(this.NewRow()));
  1475. object[] columnValuesArray = new object[] {
  1476. null,
  1477. ФИО,
  1478. Пол,
  1479. Дата_рождения,
  1480. Родители,
  1481. Адрес,
  1482. Телефон,
  1483. Паспортные_данные,
  1484. Номер_зачетки,
  1485. Дата_поступления,
  1486. Гуппа,
  1487. Курс,
  1488. Код_специальности,
  1489. Очная_форма_обучения};
  1490. rowстудентыRow.ItemArray = columnValuesArray;
  1491. this.Rows.Add(rowстудентыRow);
  1492. return rowстудентыRow;
  1493. }
  1494. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1495. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1496. public студентыRow FindByкод_студента(long код_студента) {
  1497. return ((студентыRow)(this.Rows.Find(new object[] {
  1498. код_студента})));
  1499. }
  1500. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1501. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1502. public override global::System.Data.DataTable Clone() {
  1503. студентыDataTable cln = ((студентыDataTable)(base.Clone()));
  1504. cln.InitVars();
  1505. return cln;
  1506. }
  1507. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1508. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1509. protected override global::System.Data.DataTable CreateInstance() {
  1510. return new студентыDataTable();
  1511. }
  1512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1513. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1514. internal void InitVars() {
  1515. this.columnкод_студента = base.Columns["код студента"];
  1516. this.columnФИО = base.Columns["ФИО"];
  1517. this.columnПол = base.Columns["Пол"];
  1518. this.columnДата_рождения = base.Columns["Дата рождения"];
  1519. this.columnРодители = base.Columns["Родители"];
  1520. this.columnАдрес = base.Columns["Адрес"];
  1521. this.columnТелефон = base.Columns["Телефон"];
  1522. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  1523. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  1524. this.columnДата_поступления = base.Columns["Дата поступления"];
  1525. this.columnГуппа = base.Columns["Гуппа"];
  1526. this.columnКурс = base.Columns["Курс"];
  1527. this.columnКод_специальности = base.Columns["Код специальности"];
  1528. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  1529. }
  1530. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1531. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1532. private void InitClass() {
  1533. this.columnкод_студента = new global::System.Data.DataColumn("код студента", typeof(long), null, global::System.Data.MappingType.Element);
  1534. base.Columns.Add(this.columnкод_студента);
  1535. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  1536. base.Columns.Add(this.columnФИО);
  1537. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  1538. base.Columns.Add(this.columnПол);
  1539. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1540. base.Columns.Add(this.columnДата_рождения);
  1541. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  1542. base.Columns.Add(this.columnРодители);
  1543. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  1544. base.Columns.Add(this.columnАдрес);
  1545. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  1546. base.Columns.Add(this.columnТелефон);
  1547. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  1548. base.Columns.Add(this.columnПаспортные_данные);
  1549. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  1550. base.Columns.Add(this.columnНомер_зачетки);
  1551. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1552. base.Columns.Add(this.columnДата_поступления);
  1553. this.columnГуппа = new global::System.Data.DataColumn("Гуппа", typeof(string), null, global::System.Data.MappingType.Element);
  1554. base.Columns.Add(this.columnГуппа);
  1555. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  1556. base.Columns.Add(this.columnКурс);
  1557. this.columnКод_специальности = new global::System.Data.DataColumn("Код специальности", typeof(long), null, global::System.Data.MappingType.Element);
  1558. base.Columns.Add(this.columnКод_специальности);
  1559. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  1560. base.Columns.Add(this.columnОчная_форма_обучения);
  1561. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1562. this.columnкод_студента}, true));
  1563. this.columnкод_студента.AutoIncrement = true;
  1564. this.columnкод_студента.AutoIncrementSeed = -1;
  1565. this.columnкод_студента.AutoIncrementStep = -1;
  1566. this.columnкод_студента.AllowDBNull = false;
  1567. this.columnкод_студента.ReadOnly = true;
  1568. this.columnкод_студента.Unique = true;
  1569. this.columnФИО.MaxLength = 2147483647;
  1570. this.columnПол.MaxLength = 2147483647;
  1571. this.columnРодители.MaxLength = 2147483647;
  1572. this.columnАдрес.MaxLength = 2147483647;
  1573. this.columnТелефон.MaxLength = 2147483647;
  1574. this.columnПаспортные_данные.MaxLength = 2147483647;
  1575. this.columnГуппа.MaxLength = 10;
  1576. }
  1577. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1578. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1579. public студентыRow NewстудентыRow() {
  1580. return ((студентыRow)(this.NewRow()));
  1581. }
  1582. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1583. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1584. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1585. return new студентыRow(builder);
  1586. }
  1587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1589. protected override global::System.Type GetRowType() {
  1590. return typeof(студентыRow);
  1591. }
  1592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1593. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1594. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1595. base.OnRowChanged(e);
  1596. if ((this.студентыRowChanged != null)) {
  1597. this.студентыRowChanged(this, new студентыRowChangeEvent(((студентыRow)(e.Row)), e.Action));
  1598. }
  1599. }
  1600. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1601. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1602. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1603. base.OnRowChanging(e);
  1604. if ((this.студентыRowChanging != null)) {
  1605. this.студентыRowChanging(this, new студентыRowChangeEvent(((студентыRow)(e.Row)), e.Action));
  1606. }
  1607. }
  1608. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1609. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1610. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1611. base.OnRowDeleted(e);
  1612. if ((this.студентыRowDeleted != null)) {
  1613. this.студентыRowDeleted(this, new студентыRowChangeEvent(((студентыRow)(e.Row)), e.Action));
  1614. }
  1615. }
  1616. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1617. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1618. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1619. base.OnRowDeleting(e);
  1620. if ((this.студентыRowDeleting != null)) {
  1621. this.студентыRowDeleting(this, new студентыRowChangeEvent(((студентыRow)(e.Row)), e.Action));
  1622. }
  1623. }
  1624. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1626. public void RemoveстудентыRow(студентыRow row) {
  1627. this.Rows.Remove(row);
  1628. }
  1629. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1630. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1631. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1632. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1633. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1634. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  1635. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1636. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1637. any1.MinOccurs = new decimal(0);
  1638. any1.MaxOccurs = decimal.MaxValue;
  1639. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1640. sequence.Items.Add(any1);
  1641. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1642. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1643. any2.MinOccurs = new decimal(1);
  1644. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1645. sequence.Items.Add(any2);
  1646. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1647. attribute1.Name = "namespace";
  1648. attribute1.FixedValue = ds.Namespace;
  1649. type.Attributes.Add(attribute1);
  1650. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1651. attribute2.Name = "tableTypeName";
  1652. attribute2.FixedValue = "студентыDataTable";
  1653. type.Attributes.Add(attribute2);
  1654. type.Particle = sequence;
  1655. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1656. if (xs.Contains(dsSchema.TargetNamespace)) {
  1657. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1658. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1659. try {
  1660. global::System.Xml.Schema.XmlSchema schema = null;
  1661. dsSchema.Write(s1);
  1662. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1663. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1664. s2.SetLength(0);
  1665. schema.Write(s2);
  1666. if ((s1.Length == s2.Length)) {
  1667. s1.Position = 0;
  1668. s2.Position = 0;
  1669. for (; ((s1.Position != s1.Length)
  1670. && (s1.ReadByte() == s2.ReadByte())); ) {
  1671. ;
  1672. }
  1673. if ((s1.Position == s1.Length)) {
  1674. return type;
  1675. }
  1676. }
  1677. }
  1678. }
  1679. finally {
  1680. if ((s1 != null)) {
  1681. s1.Close();
  1682. }
  1683. if ((s2 != null)) {
  1684. s2.Close();
  1685. }
  1686. }
  1687. }
  1688. xs.Add(dsSchema);
  1689. return type;
  1690. }
  1691. }
  1692. /// <summary>
  1693. ///Represents the strongly named DataTable class.
  1694. ///</summary>
  1695. [global::System.Serializable()]
  1696. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1697. public partial class _Запрос_Студенты_ОценкиDataTable : global::System.Data.TypedTableBase<_Запрос_Студенты_ОценкиRow> {
  1698. private global::System.Data.DataColumn columnФИО_студента;
  1699. private global::System.Data.DataColumn columnдата_предмета_первого_экзамена;
  1700. private global::System.Data.DataColumn columnнаименование_предмета_первого_экзамена;
  1701. private global::System.Data.DataColumn columnоценка_первого_экзамена;
  1702. private global::System.Data.DataColumn columnдата_второго_экзамена;
  1703. private global::System.Data.DataColumn columnнаименование_предмета_второго_экзамена;
  1704. private global::System.Data.DataColumn columnоценка_второго_экзамена;
  1705. private global::System.Data.DataColumn columnдата_третьего_экзамена;
  1706. private global::System.Data.DataColumn columnнаименование_предмета_третьего_экзамена;
  1707. private global::System.Data.DataColumn columnоценка_третьего_экзамена;
  1708. private global::System.Data.DataColumn columnсредний_балл_студента_за_сессию;
  1709. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1710. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1711. public _Запрос_Студенты_ОценкиDataTable() {
  1712. this.TableName = "Запрос Студенты+Оценки";
  1713. this.BeginInit();
  1714. this.InitClass();
  1715. this.EndInit();
  1716. }
  1717. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1718. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1719. internal _Запрос_Студенты_ОценкиDataTable(global::System.Data.DataTable table) {
  1720. this.TableName = table.TableName;
  1721. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1722. this.CaseSensitive = table.CaseSensitive;
  1723. }
  1724. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1725. this.Locale = table.Locale;
  1726. }
  1727. if ((table.Namespace != table.DataSet.Namespace)) {
  1728. this.Namespace = table.Namespace;
  1729. }
  1730. this.Prefix = table.Prefix;
  1731. this.MinimumCapacity = table.MinimumCapacity;
  1732. }
  1733. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1734. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1735. protected _Запрос_Студенты_ОценкиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1736. base(info, context) {
  1737. this.InitVars();
  1738. }
  1739. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1740. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1741. public global::System.Data.DataColumn ФИО_студентаColumn {
  1742. get {
  1743. return this.columnФИО_студента;
  1744. }
  1745. }
  1746. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1747. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1748. public global::System.Data.DataColumn дата_предмета_первого_экзаменаColumn {
  1749. get {
  1750. return this.columnдата_предмета_первого_экзамена;
  1751. }
  1752. }
  1753. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1754. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1755. public global::System.Data.DataColumn наименование_предмета_первого_экзаменаColumn {
  1756. get {
  1757. return this.columnнаименование_предмета_первого_экзамена;
  1758. }
  1759. }
  1760. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1761. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1762. public global::System.Data.DataColumn оценка_первого_экзаменаColumn {
  1763. get {
  1764. return this.columnоценка_первого_экзамена;
  1765. }
  1766. }
  1767. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1768. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1769. public global::System.Data.DataColumn дата_второго_экзаменаColumn {
  1770. get {
  1771. return this.columnдата_второго_экзамена;
  1772. }
  1773. }
  1774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1775. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1776. public global::System.Data.DataColumn наименование_предмета_второго_экзаменаColumn {
  1777. get {
  1778. return this.columnнаименование_предмета_второго_экзамена;
  1779. }
  1780. }
  1781. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1782. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1783. public global::System.Data.DataColumn оценка_второго_экзаменаColumn {
  1784. get {
  1785. return this.columnоценка_второго_экзамена;
  1786. }
  1787. }
  1788. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1790. public global::System.Data.DataColumn дата_третьего_экзаменаColumn {
  1791. get {
  1792. return this.columnдата_третьего_экзамена;
  1793. }
  1794. }
  1795. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1796. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1797. public global::System.Data.DataColumn наименование_предмета_третьего_экзаменаColumn {
  1798. get {
  1799. return this.columnнаименование_предмета_третьего_экзамена;
  1800. }
  1801. }
  1802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1803. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1804. public global::System.Data.DataColumn оценка_третьего_экзаменаColumn {
  1805. get {
  1806. return this.columnоценка_третьего_экзамена;
  1807. }
  1808. }
  1809. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1810. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1811. public global::System.Data.DataColumn средний_балл_студента_за_сессиюColumn {
  1812. get {
  1813. return this.columnсредний_балл_студента_за_сессию;
  1814. }
  1815. }
  1816. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1817. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1818. [global::System.ComponentModel.Browsable(false)]
  1819. public int Count {
  1820. get {
  1821. return this.Rows.Count;
  1822. }
  1823. }
  1824. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1825. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1826. public _Запрос_Студенты_ОценкиRow this[int index] {
  1827. get {
  1828. return ((_Запрос_Студенты_ОценкиRow)(this.Rows[index]));
  1829. }
  1830. }
  1831. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1832. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowChanging;
  1833. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1834. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowChanged;
  1835. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1836. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowDeleting;
  1837. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1838. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowDeleted;
  1839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1841. public void Add_Запрос_Студенты_ОценкиRow(_Запрос_Студенты_ОценкиRow row) {
  1842. this.Rows.Add(row);
  1843. }
  1844. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1845. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1846. public _Запрос_Студенты_ОценкиRow Add_Запрос_Студенты_ОценкиRow(string ФИО_студента, System.DateTime дата_предмета_первого_экзамена, string наименование_предмета_первого_экзамена, byte оценка_первого_экзамена, System.DateTime дата_второго_экзамена, string наименование_предмета_второго_экзамена, byte оценка_второго_экзамена, System.DateTime дата_третьего_экзамена, string наименование_предмета_третьего_экзамена, byte оценка_третьего_экзамена, float средний_балл_студента_за_сессию) {
  1847. _Запрос_Студенты_ОценкиRow row_Запрос_Студенты_ОценкиRow = ((_Запрос_Студенты_ОценкиRow)(this.NewRow()));
  1848. object[] columnValuesArray = new object[] {
  1849. ФИО_студента,
  1850. дата_предмета_первого_экзамена,
  1851. наименование_предмета_первого_экзамена,
  1852. оценка_первого_экзамена,
  1853. дата_второго_экзамена,
  1854. наименование_предмета_второго_экзамена,
  1855. оценка_второго_экзамена,
  1856. дата_третьего_экзамена,
  1857. наименование_предмета_третьего_экзамена,
  1858. оценка_третьего_экзамена,
  1859. средний_балл_студента_за_сессию};
  1860. row_Запрос_Студенты_ОценкиRow.ItemArray = columnValuesArray;
  1861. this.Rows.Add(row_Запрос_Студенты_ОценкиRow);
  1862. return row_Запрос_Студенты_ОценкиRow;
  1863. }
  1864. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1865. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1866. public override global::System.Data.DataTable Clone() {
  1867. _Запрос_Студенты_ОценкиDataTable cln = ((_Запрос_Студенты_ОценкиDataTable)(base.Clone()));
  1868. cln.InitVars();
  1869. return cln;
  1870. }
  1871. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1872. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1873. protected override global::System.Data.DataTable CreateInstance() {
  1874. return new _Запрос_Студенты_ОценкиDataTable();
  1875. }
  1876. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1877. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1878. internal void InitVars() {
  1879. this.columnФИО_студента = base.Columns["ФИО студента"];
  1880. this.columnдата_предмета_первого_экзамена = base.Columns["дата предмета первого экзамена"];
  1881. this.columnнаименование_предмета_первого_экзамена = base.Columns["наименование предмета первого экзамена"];
  1882. this.columnоценка_первого_экзамена = base.Columns["оценка первого экзамена"];
  1883. this.columnдата_второго_экзамена = base.Columns["дата второго экзамена"];
  1884. this.columnнаименование_предмета_второго_экзамена = base.Columns["наименование предмета второго экзамена"];
  1885. this.columnоценка_второго_экзамена = base.Columns["оценка второго экзамена"];
  1886. this.columnдата_третьего_экзамена = base.Columns["дата третьего экзамена"];
  1887. this.columnнаименование_предмета_третьего_экзамена = base.Columns["наименование предмета третьего экзамена"];
  1888. this.columnоценка_третьего_экзамена = base.Columns["оценка третьего экзамена"];
  1889. this.columnсредний_балл_студента_за_сессию = base.Columns["средний балл студента за сессию"];
  1890. }
  1891. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1892. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1893. private void InitClass() {
  1894. this.columnФИО_студента = new global::System.Data.DataColumn("ФИО студента", typeof(string), null, global::System.Data.MappingType.Element);
  1895. base.Columns.Add(this.columnФИО_студента);
  1896. this.columnдата_предмета_первого_экзамена = new global::System.Data.DataColumn("дата предмета первого экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1897. base.Columns.Add(this.columnдата_предмета_первого_экзамена);
  1898. this.columnнаименование_предмета_первого_экзамена = new global::System.Data.DataColumn("наименование предмета первого экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  1899. base.Columns.Add(this.columnнаименование_предмета_первого_экзамена);
  1900. this.columnоценка_первого_экзамена = new global::System.Data.DataColumn("оценка первого экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  1901. base.Columns.Add(this.columnоценка_первого_экзамена);
  1902. this.columnдата_второго_экзамена = new global::System.Data.DataColumn("дата второго экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1903. base.Columns.Add(this.columnдата_второго_экзамена);
  1904. this.columnнаименование_предмета_второго_экзамена = new global::System.Data.DataColumn("наименование предмета второго экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  1905. base.Columns.Add(this.columnнаименование_предмета_второго_экзамена);
  1906. this.columnоценка_второго_экзамена = new global::System.Data.DataColumn("оценка второго экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  1907. base.Columns.Add(this.columnоценка_второго_экзамена);
  1908. this.columnдата_третьего_экзамена = new global::System.Data.DataColumn("дата третьего экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1909. base.Columns.Add(this.columnдата_третьего_экзамена);
  1910. this.columnнаименование_предмета_третьего_экзамена = new global::System.Data.DataColumn("наименование предмета третьего экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  1911. base.Columns.Add(this.columnнаименование_предмета_третьего_экзамена);
  1912. this.columnоценка_третьего_экзамена = new global::System.Data.DataColumn("оценка третьего экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  1913. base.Columns.Add(this.columnоценка_третьего_экзамена);
  1914. this.columnсредний_балл_студента_за_сессию = new global::System.Data.DataColumn("средний балл студента за сессию", typeof(float), null, global::System.Data.MappingType.Element);
  1915. base.Columns.Add(this.columnсредний_балл_студента_за_сессию);
  1916. this.columnФИО_студента.MaxLength = 2147483647;
  1917. this.columnнаименование_предмета_первого_экзамена.MaxLength = 50;
  1918. this.columnнаименование_предмета_второго_экзамена.MaxLength = 50;
  1919. this.columnнаименование_предмета_третьего_экзамена.MaxLength = 50;
  1920. this.ExtendedProperties.Add("Generator_TableVarName", "_tableЗапрос_Студенты_Оценки");
  1921. this.ExtendedProperties.Add("Generator_UserTableName", "Запрос Студенты+Оценки");
  1922. }
  1923. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1924. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1925. public _Запрос_Студенты_ОценкиRow New_Запрос_Студенты_ОценкиRow() {
  1926. return ((_Запрос_Студенты_ОценкиRow)(this.NewRow()));
  1927. }
  1928. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1929. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1930. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1931. return new _Запрос_Студенты_ОценкиRow(builder);
  1932. }
  1933. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1934. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1935. protected override global::System.Type GetRowType() {
  1936. return typeof(_Запрос_Студенты_ОценкиRow);
  1937. }
  1938. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1939. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1940. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1941. base.OnRowChanged(e);
  1942. if ((this._Запрос_Студенты_ОценкиRowChanged != null)) {
  1943. this._Запрос_Студенты_ОценкиRowChanged(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  1944. }
  1945. }
  1946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1948. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1949. base.OnRowChanging(e);
  1950. if ((this._Запрос_Студенты_ОценкиRowChanging != null)) {
  1951. this._Запрос_Студенты_ОценкиRowChanging(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  1952. }
  1953. }
  1954. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1955. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1956. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1957. base.OnRowDeleted(e);
  1958. if ((this._Запрос_Студенты_ОценкиRowDeleted != null)) {
  1959. this._Запрос_Студенты_ОценкиRowDeleted(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  1960. }
  1961. }
  1962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1964. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1965. base.OnRowDeleting(e);
  1966. if ((this._Запрос_Студенты_ОценкиRowDeleting != null)) {
  1967. this._Запрос_Студенты_ОценкиRowDeleting(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  1968. }
  1969. }
  1970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1972. public void Remove_Запрос_Студенты_ОценкиRow(_Запрос_Студенты_ОценкиRow row) {
  1973. this.Rows.Remove(row);
  1974. }
  1975. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1976. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1977. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1978. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1979. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1980. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  1981. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1982. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1983. any1.MinOccurs = new decimal(0);
  1984. any1.MaxOccurs = decimal.MaxValue;
  1985. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1986. sequence.Items.Add(any1);
  1987. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1988. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1989. any2.MinOccurs = new decimal(1);
  1990. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1991. sequence.Items.Add(any2);
  1992. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1993. attribute1.Name = "namespace";
  1994. attribute1.FixedValue = ds.Namespace;
  1995. type.Attributes.Add(attribute1);
  1996. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1997. attribute2.Name = "tableTypeName";
  1998. attribute2.FixedValue = "_Запрос_Студенты_ОценкиDataTable";
  1999. type.Attributes.Add(attribute2);
  2000. type.Particle = sequence;
  2001. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2002. if (xs.Contains(dsSchema.TargetNamespace)) {
  2003. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2004. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2005. try {
  2006. global::System.Xml.Schema.XmlSchema schema = null;
  2007. dsSchema.Write(s1);
  2008. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2009. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2010. s2.SetLength(0);
  2011. schema.Write(s2);
  2012. if ((s1.Length == s2.Length)) {
  2013. s1.Position = 0;
  2014. s2.Position = 0;
  2015. for (; ((s1.Position != s1.Length)
  2016. && (s1.ReadByte() == s2.ReadByte())); ) {
  2017. ;
  2018. }
  2019. if ((s1.Position == s1.Length)) {
  2020. return type;
  2021. }
  2022. }
  2023. }
  2024. }
  2025. finally {
  2026. if ((s1 != null)) {
  2027. s1.Close();
  2028. }
  2029. if ((s2 != null)) {
  2030. s2.Close();
  2031. }
  2032. }
  2033. }
  2034. xs.Add(dsSchema);
  2035. return type;
  2036. }
  2037. }
  2038. /// <summary>
  2039. ///Represents the strongly named DataTable class.
  2040. ///</summary>
  2041. [global::System.Serializable()]
  2042. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2043. public partial class _запрос_студенты_специальностиDataTable : global::System.Data.TypedTableBase<_запрос_студенты_специальностиRow> {
  2044. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2045. private global::System.Data.DataColumn columnКурс;
  2046. private global::System.Data.DataColumn columnДата_поступления;
  2047. private global::System.Data.DataColumn columnНомер_зачетки;
  2048. private global::System.Data.DataColumn columnПаспортные_данные;
  2049. private global::System.Data.DataColumn columnТелефон;
  2050. private global::System.Data.DataColumn columnАдрес;
  2051. private global::System.Data.DataColumn columnРодители;
  2052. private global::System.Data.DataColumn columnДата_рождения;
  2053. private global::System.Data.DataColumn columnПол;
  2054. private global::System.Data.DataColumn columnФИО;
  2055. private global::System.Data.DataColumn columnГуппа;
  2056. private global::System.Data.DataColumn columnОписание_специальности;
  2057. private global::System.Data.DataColumn columnНаименование_специальности;
  2058. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2059. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2060. public _запрос_студенты_специальностиDataTable() {
  2061. this.TableName = "запрос студенты+специальности";
  2062. this.BeginInit();
  2063. this.InitClass();
  2064. this.EndInit();
  2065. }
  2066. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2067. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2068. internal _запрос_студенты_специальностиDataTable(global::System.Data.DataTable table) {
  2069. this.TableName = table.TableName;
  2070. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2071. this.CaseSensitive = table.CaseSensitive;
  2072. }
  2073. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2074. this.Locale = table.Locale;
  2075. }
  2076. if ((table.Namespace != table.DataSet.Namespace)) {
  2077. this.Namespace = table.Namespace;
  2078. }
  2079. this.Prefix = table.Prefix;
  2080. this.MinimumCapacity = table.MinimumCapacity;
  2081. }
  2082. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2083. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2084. protected _запрос_студенты_специальностиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2085. base(info, context) {
  2086. this.InitVars();
  2087. }
  2088. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2089. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2090. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  2091. get {
  2092. return this.columnОчная_форма_обучения;
  2093. }
  2094. }
  2095. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2096. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2097. public global::System.Data.DataColumn КурсColumn {
  2098. get {
  2099. return this.columnКурс;
  2100. }
  2101. }
  2102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2104. public global::System.Data.DataColumn Дата_поступленияColumn {
  2105. get {
  2106. return this.columnДата_поступления;
  2107. }
  2108. }
  2109. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2110. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2111. public global::System.Data.DataColumn Номер_зачеткиColumn {
  2112. get {
  2113. return this.columnНомер_зачетки;
  2114. }
  2115. }
  2116. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2117. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2118. public global::System.Data.DataColumn Паспортные_данныеColumn {
  2119. get {
  2120. return this.columnПаспортные_данные;
  2121. }
  2122. }
  2123. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2124. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2125. public global::System.Data.DataColumn ТелефонColumn {
  2126. get {
  2127. return this.columnТелефон;
  2128. }
  2129. }
  2130. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2131. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2132. public global::System.Data.DataColumn АдресColumn {
  2133. get {
  2134. return this.columnАдрес;
  2135. }
  2136. }
  2137. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2138. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2139. public global::System.Data.DataColumn РодителиColumn {
  2140. get {
  2141. return this.columnРодители;
  2142. }
  2143. }
  2144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2145. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2146. public global::System.Data.DataColumn Дата_рожденияColumn {
  2147. get {
  2148. return this.columnДата_рождения;
  2149. }
  2150. }
  2151. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2152. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2153. public global::System.Data.DataColumn ПолColumn {
  2154. get {
  2155. return this.columnПол;
  2156. }
  2157. }
  2158. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2159. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2160. public global::System.Data.DataColumn ФИОColumn {
  2161. get {
  2162. return this.columnФИО;
  2163. }
  2164. }
  2165. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2166. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2167. public global::System.Data.DataColumn ГуппаColumn {
  2168. get {
  2169. return this.columnГуппа;
  2170. }
  2171. }
  2172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2173. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2174. public global::System.Data.DataColumn Описание_специальностиColumn {
  2175. get {
  2176. return this.columnОписание_специальности;
  2177. }
  2178. }
  2179. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2180. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2181. public global::System.Data.DataColumn Наименование_специальностиColumn {
  2182. get {
  2183. return this.columnНаименование_специальности;
  2184. }
  2185. }
  2186. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2187. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2188. [global::System.ComponentModel.Browsable(false)]
  2189. public int Count {
  2190. get {
  2191. return this.Rows.Count;
  2192. }
  2193. }
  2194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2196. public _запрос_студенты_специальностиRow this[int index] {
  2197. get {
  2198. return ((_запрос_студенты_специальностиRow)(this.Rows[index]));
  2199. }
  2200. }
  2201. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2202. public event _запрос_студенты_специальностиRowChangeEventHandler _запрос_студенты_специальностиRowChanging;
  2203. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2204. public event _запрос_студенты_специальностиRowChangeEventHandler _запрос_студенты_специальностиRowChanged;
  2205. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2206. public event _запрос_студенты_специальностиRowChangeEventHandler _запрос_студенты_специальностиRowDeleting;
  2207. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2208. public event _запрос_студенты_специальностиRowChangeEventHandler _запрос_студенты_специальностиRowDeleted;
  2209. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2210. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2211. public void Add_запрос_студенты_специальностиRow(_запрос_студенты_специальностиRow row) {
  2212. this.Rows.Add(row);
  2213. }
  2214. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2215. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2216. public _запрос_студенты_специальностиRow Add_запрос_студенты_специальностиRow(bool Очная_форма_обучения, byte Курс, System.DateTime Дата_поступления, long Номер_зачетки, string Паспортные_данные, string Телефон, string Адрес, string Родители, System.DateTime Дата_рождения, string Пол, string ФИО, string Гуппа, string Описание_специальности, string Наименование_специальности) {
  2217. _запрос_студенты_специальностиRow row_запрос_студенты_специальностиRow = ((_запрос_студенты_специальностиRow)(this.NewRow()));
  2218. object[] columnValuesArray = new object[] {
  2219. Очная_форма_обучения,
  2220. Курс,
  2221. Дата_поступления,
  2222. Номер_зачетки,
  2223. Паспортные_данные,
  2224. Телефон,
  2225. Адрес,
  2226. Родители,
  2227. Дата_рождения,
  2228. Пол,
  2229. ФИО,
  2230. Гуппа,
  2231. Описание_специальности,
  2232. Наименование_специальности};
  2233. row_запрос_студенты_специальностиRow.ItemArray = columnValuesArray;
  2234. this.Rows.Add(row_запрос_студенты_специальностиRow);
  2235. return row_запрос_студенты_специальностиRow;
  2236. }
  2237. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2238. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2239. public override global::System.Data.DataTable Clone() {
  2240. _запрос_студенты_специальностиDataTable cln = ((_запрос_студенты_специальностиDataTable)(base.Clone()));
  2241. cln.InitVars();
  2242. return cln;
  2243. }
  2244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2246. protected override global::System.Data.DataTable CreateInstance() {
  2247. return new _запрос_студенты_специальностиDataTable();
  2248. }
  2249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2251. internal void InitVars() {
  2252. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  2253. this.columnКурс = base.Columns["Курс"];
  2254. this.columnДата_поступления = base.Columns["Дата поступления"];
  2255. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  2256. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  2257. this.columnТелефон = base.Columns["Телефон"];
  2258. this.columnАдрес = base.Columns["Адрес"];
  2259. this.columnРодители = base.Columns["Родители"];
  2260. this.columnДата_рождения = base.Columns["Дата рождения"];
  2261. this.columnПол = base.Columns["Пол"];
  2262. this.columnФИО = base.Columns["ФИО"];
  2263. this.columnГуппа = base.Columns["Гуппа"];
  2264. this.columnОписание_специальности = base.Columns["Описание специальности"];
  2265. this.columnНаименование_специальности = base.Columns["Наименование специальности"];
  2266. }
  2267. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2268. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2269. private void InitClass() {
  2270. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  2271. base.Columns.Add(this.columnОчная_форма_обучения);
  2272. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  2273. base.Columns.Add(this.columnКурс);
  2274. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2275. base.Columns.Add(this.columnДата_поступления);
  2276. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  2277. base.Columns.Add(this.columnНомер_зачетки);
  2278. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  2279. base.Columns.Add(this.columnПаспортные_данные);
  2280. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  2281. base.Columns.Add(this.columnТелефон);
  2282. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  2283. base.Columns.Add(this.columnАдрес);
  2284. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  2285. base.Columns.Add(this.columnРодители);
  2286. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2287. base.Columns.Add(this.columnДата_рождения);
  2288. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  2289. base.Columns.Add(this.columnПол);
  2290. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  2291. base.Columns.Add(this.columnФИО);
  2292. this.columnГуппа = new global::System.Data.DataColumn("Гуппа", typeof(string), null, global::System.Data.MappingType.Element);
  2293. base.Columns.Add(this.columnГуппа);
  2294. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2295. base.Columns.Add(this.columnОписание_специальности);
  2296. this.columnНаименование_специальности = new global::System.Data.DataColumn("Наименование специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2297. base.Columns.Add(this.columnНаименование_специальности);
  2298. this.columnПаспортные_данные.MaxLength = 2147483647;
  2299. this.columnТелефон.MaxLength = 2147483647;
  2300. this.columnАдрес.MaxLength = 2147483647;
  2301. this.columnРодители.MaxLength = 2147483647;
  2302. this.columnПол.MaxLength = 2147483647;
  2303. this.columnФИО.MaxLength = 2147483647;
  2304. this.columnГуппа.MaxLength = 10;
  2305. this.columnОписание_специальности.MaxLength = 2147483647;
  2306. this.columnНаименование_специальности.MaxLength = 50;
  2307. this.ExtendedProperties.Add("Generator_TableVarName", "_tableзапрос_студенты_специальности");
  2308. this.ExtendedProperties.Add("Generator_UserTableName", "запрос студенты+специальности");
  2309. }
  2310. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2311. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2312. public _запрос_студенты_специальностиRow New_запрос_студенты_специальностиRow() {
  2313. return ((_запрос_студенты_специальностиRow)(this.NewRow()));
  2314. }
  2315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2317. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2318. return new _запрос_студенты_специальностиRow(builder);
  2319. }
  2320. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2321. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2322. protected override global::System.Type GetRowType() {
  2323. return typeof(_запрос_студенты_специальностиRow);
  2324. }
  2325. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2326. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2327. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2328. base.OnRowChanged(e);
  2329. if ((this._запрос_студенты_специальностиRowChanged != null)) {
  2330. this._запрос_студенты_специальностиRowChanged(this, new _запрос_студенты_специальностиRowChangeEvent(((_запрос_студенты_специальностиRow)(e.Row)), e.Action));
  2331. }
  2332. }
  2333. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2334. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2335. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2336. base.OnRowChanging(e);
  2337. if ((this._запрос_студенты_специальностиRowChanging != null)) {
  2338. this._запрос_студенты_специальностиRowChanging(this, new _запрос_студенты_специальностиRowChangeEvent(((_запрос_студенты_специальностиRow)(e.Row)), e.Action));
  2339. }
  2340. }
  2341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2343. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2344. base.OnRowDeleted(e);
  2345. if ((this._запрос_студенты_специальностиRowDeleted != null)) {
  2346. this._запрос_студенты_специальностиRowDeleted(this, new _запрос_студенты_специальностиRowChangeEvent(((_запрос_студенты_специальностиRow)(e.Row)), e.Action));
  2347. }
  2348. }
  2349. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2350. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2351. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2352. base.OnRowDeleting(e);
  2353. if ((this._запрос_студенты_специальностиRowDeleting != null)) {
  2354. this._запрос_студенты_специальностиRowDeleting(this, new _запрос_студенты_специальностиRowChangeEvent(((_запрос_студенты_специальностиRow)(e.Row)), e.Action));
  2355. }
  2356. }
  2357. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2358. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2359. public void Remove_запрос_студенты_специальностиRow(_запрос_студенты_специальностиRow row) {
  2360. this.Rows.Remove(row);
  2361. }
  2362. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2363. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2364. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2365. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2366. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2367. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  2368. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2369. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2370. any1.MinOccurs = new decimal(0);
  2371. any1.MaxOccurs = decimal.MaxValue;
  2372. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2373. sequence.Items.Add(any1);
  2374. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2375. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2376. any2.MinOccurs = new decimal(1);
  2377. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2378. sequence.Items.Add(any2);
  2379. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2380. attribute1.Name = "namespace";
  2381. attribute1.FixedValue = ds.Namespace;
  2382. type.Attributes.Add(attribute1);
  2383. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2384. attribute2.Name = "tableTypeName";
  2385. attribute2.FixedValue = "_запрос_студенты_специальностиDataTable";
  2386. type.Attributes.Add(attribute2);
  2387. type.Particle = sequence;
  2388. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2389. if (xs.Contains(dsSchema.TargetNamespace)) {
  2390. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2391. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2392. try {
  2393. global::System.Xml.Schema.XmlSchema schema = null;
  2394. dsSchema.Write(s1);
  2395. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2396. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2397. s2.SetLength(0);
  2398. schema.Write(s2);
  2399. if ((s1.Length == s2.Length)) {
  2400. s1.Position = 0;
  2401. s2.Position = 0;
  2402. for (; ((s1.Position != s1.Length)
  2403. && (s1.ReadByte() == s2.ReadByte())); ) {
  2404. ;
  2405. }
  2406. if ((s1.Position == s1.Length)) {
  2407. return type;
  2408. }
  2409. }
  2410. }
  2411. }
  2412. finally {
  2413. if ((s1 != null)) {
  2414. s1.Close();
  2415. }
  2416. if ((s2 != null)) {
  2417. s2.Close();
  2418. }
  2419. }
  2420. }
  2421. xs.Add(dsSchema);
  2422. return type;
  2423. }
  2424. }
  2425. /// <summary>
  2426. ///Represents the strongly named DataTable class.
  2427. ///</summary>
  2428. [global::System.Serializable()]
  2429. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2430. public partial class фильтр_ММDataTable : global::System.Data.TypedTableBase<фильтр_ММRow> {
  2431. private global::System.Data.DataColumn columnНаименование_специальности;
  2432. private global::System.Data.DataColumn columnОписание_специальности;
  2433. private global::System.Data.DataColumn columnГуппа;
  2434. private global::System.Data.DataColumn columnФИО;
  2435. private global::System.Data.DataColumn columnПол;
  2436. private global::System.Data.DataColumn columnАдрес;
  2437. private global::System.Data.DataColumn columnПаспортные_данные;
  2438. private global::System.Data.DataColumn columnКурс;
  2439. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2440. private global::System.Data.DataColumn columnДата_поступления;
  2441. private global::System.Data.DataColumn columnНомер_зачетки;
  2442. private global::System.Data.DataColumn columnТелефон;
  2443. private global::System.Data.DataColumn columnРодители;
  2444. private global::System.Data.DataColumn columnДата_рождения;
  2445. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2446. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2447. public фильтр_ММDataTable() {
  2448. this.TableName = "фильтр ММ";
  2449. this.BeginInit();
  2450. this.InitClass();
  2451. this.EndInit();
  2452. }
  2453. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2454. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2455. internal фильтр_ММDataTable(global::System.Data.DataTable table) {
  2456. this.TableName = table.TableName;
  2457. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2458. this.CaseSensitive = table.CaseSensitive;
  2459. }
  2460. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2461. this.Locale = table.Locale;
  2462. }
  2463. if ((table.Namespace != table.DataSet.Namespace)) {
  2464. this.Namespace = table.Namespace;
  2465. }
  2466. this.Prefix = table.Prefix;
  2467. this.MinimumCapacity = table.MinimumCapacity;
  2468. }
  2469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2471. protected фильтр_ММDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2472. base(info, context) {
  2473. this.InitVars();
  2474. }
  2475. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2476. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2477. public global::System.Data.DataColumn Наименование_специальностиColumn {
  2478. get {
  2479. return this.columnНаименование_специальности;
  2480. }
  2481. }
  2482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2484. public global::System.Data.DataColumn Описание_специальностиColumn {
  2485. get {
  2486. return this.columnОписание_специальности;
  2487. }
  2488. }
  2489. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2490. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2491. public global::System.Data.DataColumn ГуппаColumn {
  2492. get {
  2493. return this.columnГуппа;
  2494. }
  2495. }
  2496. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2497. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2498. public global::System.Data.DataColumn ФИОColumn {
  2499. get {
  2500. return this.columnФИО;
  2501. }
  2502. }
  2503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2505. public global::System.Data.DataColumn ПолColumn {
  2506. get {
  2507. return this.columnПол;
  2508. }
  2509. }
  2510. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2511. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2512. public global::System.Data.DataColumn АдресColumn {
  2513. get {
  2514. return this.columnАдрес;
  2515. }
  2516. }
  2517. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2518. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2519. public global::System.Data.DataColumn Паспортные_данныеColumn {
  2520. get {
  2521. return this.columnПаспортные_данные;
  2522. }
  2523. }
  2524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2526. public global::System.Data.DataColumn КурсColumn {
  2527. get {
  2528. return this.columnКурс;
  2529. }
  2530. }
  2531. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2532. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2533. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  2534. get {
  2535. return this.columnОчная_форма_обучения;
  2536. }
  2537. }
  2538. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2539. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2540. public global::System.Data.DataColumn Дата_поступленияColumn {
  2541. get {
  2542. return this.columnДата_поступления;
  2543. }
  2544. }
  2545. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2547. public global::System.Data.DataColumn Номер_зачеткиColumn {
  2548. get {
  2549. return this.columnНомер_зачетки;
  2550. }
  2551. }
  2552. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2554. public global::System.Data.DataColumn ТелефонColumn {
  2555. get {
  2556. return this.columnТелефон;
  2557. }
  2558. }
  2559. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2560. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2561. public global::System.Data.DataColumn РодителиColumn {
  2562. get {
  2563. return this.columnРодители;
  2564. }
  2565. }
  2566. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2567. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2568. public global::System.Data.DataColumn Дата_рожденияColumn {
  2569. get {
  2570. return this.columnДата_рождения;
  2571. }
  2572. }
  2573. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2575. [global::System.ComponentModel.Browsable(false)]
  2576. public int Count {
  2577. get {
  2578. return this.Rows.Count;
  2579. }
  2580. }
  2581. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2582. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2583. public фильтр_ММRow this[int index] {
  2584. get {
  2585. return ((фильтр_ММRow)(this.Rows[index]));
  2586. }
  2587. }
  2588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2589. public event фильтр_ММRowChangeEventHandler фильтр_ММRowChanging;
  2590. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2591. public event фильтр_ММRowChangeEventHandler фильтр_ММRowChanged;
  2592. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2593. public event фильтр_ММRowChangeEventHandler фильтр_ММRowDeleting;
  2594. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2595. public event фильтр_ММRowChangeEventHandler фильтр_ММRowDeleted;
  2596. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2597. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2598. public void Addфильтр_ММRow(фильтр_ММRow row) {
  2599. this.Rows.Add(row);
  2600. }
  2601. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2602. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2603. public фильтр_ММRow Addфильтр_ММRow(string Наименование_специальности, string Описание_специальности, string Гуппа, string ФИО, string Пол, string Адрес, string Паспортные_данные, byte Курс, bool Очная_форма_обучения, System.DateTime Дата_поступления, long Номер_зачетки, string Телефон, string Родители, System.DateTime Дата_рождения) {
  2604. фильтр_ММRow rowфильтр_ММRow = ((фильтр_ММRow)(this.NewRow()));
  2605. object[] columnValuesArray = new object[] {
  2606. Наименование_специальности,
  2607. Описание_специальности,
  2608. Гуппа,
  2609. ФИО,
  2610. Пол,
  2611. Адрес,
  2612. Паспортные_данные,
  2613. Курс,
  2614. Очная_форма_обучения,
  2615. Дата_поступления,
  2616. Номер_зачетки,
  2617. Телефон,
  2618. Родители,
  2619. Дата_рождения};
  2620. rowфильтр_ММRow.ItemArray = columnValuesArray;
  2621. this.Rows.Add(rowфильтр_ММRow);
  2622. return rowфильтр_ММRow;
  2623. }
  2624. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2626. public override global::System.Data.DataTable Clone() {
  2627. фильтр_ММDataTable cln = ((фильтр_ММDataTable)(base.Clone()));
  2628. cln.InitVars();
  2629. return cln;
  2630. }
  2631. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2632. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2633. protected override global::System.Data.DataTable CreateInstance() {
  2634. return new фильтр_ММDataTable();
  2635. }
  2636. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2637. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2638. internal void InitVars() {
  2639. this.columnНаименование_специальности = base.Columns["Наименование специальности"];
  2640. this.columnОписание_специальности = base.Columns["Описание специальности"];
  2641. this.columnГуппа = base.Columns["Гуппа"];
  2642. this.columnФИО = base.Columns["ФИО"];
  2643. this.columnПол = base.Columns["Пол"];
  2644. this.columnАдрес = base.Columns["Адрес"];
  2645. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  2646. this.columnКурс = base.Columns["Курс"];
  2647. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  2648. this.columnДата_поступления = base.Columns["Дата поступления"];
  2649. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  2650. this.columnТелефон = base.Columns["Телефон"];
  2651. this.columnРодители = base.Columns["Родители"];
  2652. this.columnДата_рождения = base.Columns["Дата рождения"];
  2653. }
  2654. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2655. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2656. private void InitClass() {
  2657. this.columnНаименование_специальности = new global::System.Data.DataColumn("Наименование специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2658. base.Columns.Add(this.columnНаименование_специальности);
  2659. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2660. base.Columns.Add(this.columnОписание_специальности);
  2661. this.columnГуппа = new global::System.Data.DataColumn("Гуппа", typeof(string), null, global::System.Data.MappingType.Element);
  2662. base.Columns.Add(this.columnГуппа);
  2663. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  2664. base.Columns.Add(this.columnФИО);
  2665. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  2666. base.Columns.Add(this.columnПол);
  2667. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  2668. base.Columns.Add(this.columnАдрес);
  2669. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  2670. base.Columns.Add(this.columnПаспортные_данные);
  2671. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  2672. base.Columns.Add(this.columnКурс);
  2673. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  2674. base.Columns.Add(this.columnОчная_форма_обучения);
  2675. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2676. base.Columns.Add(this.columnДата_поступления);
  2677. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  2678. base.Columns.Add(this.columnНомер_зачетки);
  2679. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  2680. base.Columns.Add(this.columnТелефон);
  2681. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  2682. base.Columns.Add(this.columnРодители);
  2683. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2684. base.Columns.Add(this.columnДата_рождения);
  2685. this.columnНаименование_специальности.MaxLength = 50;
  2686. this.columnОписание_специальности.MaxLength = 2147483647;
  2687. this.columnГуппа.MaxLength = 10;
  2688. this.columnФИО.MaxLength = 2147483647;
  2689. this.columnПол.MaxLength = 2147483647;
  2690. this.columnАдрес.MaxLength = 2147483647;
  2691. this.columnПаспортные_данные.MaxLength = 2147483647;
  2692. this.columnТелефон.MaxLength = 2147483647;
  2693. this.columnРодители.MaxLength = 2147483647;
  2694. }
  2695. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2696. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2697. public фильтр_ММRow Newфильтр_ММRow() {
  2698. return ((фильтр_ММRow)(this.NewRow()));
  2699. }
  2700. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2701. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2702. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2703. return new фильтр_ММRow(builder);
  2704. }
  2705. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2706. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2707. protected override global::System.Type GetRowType() {
  2708. return typeof(фильтр_ММRow);
  2709. }
  2710. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2711. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2712. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2713. base.OnRowChanged(e);
  2714. if ((this.фильтр_ММRowChanged != null)) {
  2715. this.фильтр_ММRowChanged(this, new фильтр_ММRowChangeEvent(((фильтр_ММRow)(e.Row)), e.Action));
  2716. }
  2717. }
  2718. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2719. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2720. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2721. base.OnRowChanging(e);
  2722. if ((this.фильтр_ММRowChanging != null)) {
  2723. this.фильтр_ММRowChanging(this, new фильтр_ММRowChangeEvent(((фильтр_ММRow)(e.Row)), e.Action));
  2724. }
  2725. }
  2726. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2727. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2728. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2729. base.OnRowDeleted(e);
  2730. if ((this.фильтр_ММRowDeleted != null)) {
  2731. this.фильтр_ММRowDeleted(this, new фильтр_ММRowChangeEvent(((фильтр_ММRow)(e.Row)), e.Action));
  2732. }
  2733. }
  2734. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2735. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2736. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2737. base.OnRowDeleting(e);
  2738. if ((this.фильтр_ММRowDeleting != null)) {
  2739. this.фильтр_ММRowDeleting(this, new фильтр_ММRowChangeEvent(((фильтр_ММRow)(e.Row)), e.Action));
  2740. }
  2741. }
  2742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2744. public void Removeфильтр_ММRow(фильтр_ММRow row) {
  2745. this.Rows.Remove(row);
  2746. }
  2747. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2748. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2749. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2750. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2751. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2752. _Is_32_podrezovDataSet ds = new _Is_32_podrezovDataSet();
  2753. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2754. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2755. any1.MinOccurs = new decimal(0);
  2756. any1.MaxOccurs = decimal.MaxValue;
  2757. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2758. sequence.Items.Add(any1);
  2759. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2760. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2761. any2.MinOccurs = new decimal(1);
  2762. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2763. sequence.Items.Add(any2);
  2764. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2765. attribute1.Name = "namespace";
  2766. attribute1.FixedValue = ds.Namespace;
  2767. type.Attributes.Add(attribute1);
  2768. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2769. attribute2.Name = "tableTypeName";
  2770. attribute2.FixedValue = "фильтр_ММDataTable";
  2771. type.Attributes.Add(attribute2);
  2772. type.Particle = sequence;
  2773. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2774. if (xs.Contains(dsSchema.TargetNamespace)) {
  2775. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2776. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2777. try {
  2778. global::System.Xml.Schema.XmlSchema schema = null;
  2779. dsSchema.Write(s1);
  2780. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2781. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2782. s2.SetLength(0);
  2783. schema.Write(s2);
  2784. if ((s1.Length == s2.Length)) {
  2785. s1.Position = 0;
  2786. s2.Position = 0;
  2787. for (; ((s1.Position != s1.Length)
  2788. && (s1.ReadByte() == s2.ReadByte())); ) {
  2789. ;
  2790. }
  2791. if ((s1.Position == s1.Length)) {
  2792. return type;
  2793. }
  2794. }
  2795. }
  2796. }
  2797. finally {
  2798. if ((s1 != null)) {
  2799. s1.Close();
  2800. }
  2801. if ((s2 != null)) {
  2802. s2.Close();
  2803. }
  2804. }
  2805. }
  2806. xs.Add(dsSchema);
  2807. return type;
  2808. }
  2809. }
  2810. /// <summary>
  2811. ///Represents strongly named DataRow class.
  2812. ///</summary>
  2813. public partial class оценкиRow : global::System.Data.DataRow {
  2814. private оценкиDataTable tableоценки;
  2815. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2816. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2817. internal оценкиRow(global::System.Data.DataRowBuilder rb) :
  2818. base(rb) {
  2819. this.tableоценки = ((оценкиDataTable)(this.Table));
  2820. }
  2821. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2822. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2823. public long код_студента {
  2824. get {
  2825. try {
  2826. return ((long)(this[this.tableоценки.код_студентаColumn]));
  2827. }
  2828. catch (global::System.InvalidCastException e) {
  2829. throw new global::System.Data.StrongTypingException("Значение для столбца \'код студента\' в таблице \'оценки\' равно DBNull.", e);
  2830. }
  2831. }
  2832. set {
  2833. this[this.tableоценки.код_студентаColumn] = value;
  2834. }
  2835. }
  2836. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2837. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2838. public System.DateTime дата_экзамена_1 {
  2839. get {
  2840. try {
  2841. return ((global::System.DateTime)(this[this.tableоценки.дата_экзамена_1Column]));
  2842. }
  2843. catch (global::System.InvalidCastException e) {
  2844. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата экзамена 1\' в таблице \'оценки\' равно DBNull.", e);
  2845. }
  2846. }
  2847. set {
  2848. this[this.tableоценки.дата_экзамена_1Column] = value;
  2849. }
  2850. }
  2851. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2852. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2853. public long код_предмета_1 {
  2854. get {
  2855. try {
  2856. return ((long)(this[this.tableоценки.код_предмета_1Column]));
  2857. }
  2858. catch (global::System.InvalidCastException e) {
  2859. throw new global::System.Data.StrongTypingException("Значение для столбца \'код предмета 1\' в таблице \'оценки\' равно DBNull.", e);
  2860. }
  2861. }
  2862. set {
  2863. this[this.tableоценки.код_предмета_1Column] = value;
  2864. }
  2865. }
  2866. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2867. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2868. public byte оценка_1 {
  2869. get {
  2870. try {
  2871. return ((byte)(this[this.tableоценки.оценка_1Column]));
  2872. }
  2873. catch (global::System.InvalidCastException e) {
  2874. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка 1\' в таблице \'оценки\' равно DBNull.", e);
  2875. }
  2876. }
  2877. set {
  2878. this[this.tableоценки.оценка_1Column] = value;
  2879. }
  2880. }
  2881. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2882. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2883. public System.DateTime дата_экзамена_2 {
  2884. get {
  2885. try {
  2886. return ((global::System.DateTime)(this[this.tableоценки.дата_экзамена_2Column]));
  2887. }
  2888. catch (global::System.InvalidCastException e) {
  2889. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата экзамена 2\' в таблице \'оценки\' равно DBNull.", e);
  2890. }
  2891. }
  2892. set {
  2893. this[this.tableоценки.дата_экзамена_2Column] = value;
  2894. }
  2895. }
  2896. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2897. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2898. public long код_предмета_2 {
  2899. get {
  2900. try {
  2901. return ((long)(this[this.tableоценки.код_предмета_2Column]));
  2902. }
  2903. catch (global::System.InvalidCastException e) {
  2904. throw new global::System.Data.StrongTypingException("Значение для столбца \'код предмета 2\' в таблице \'оценки\' равно DBNull.", e);
  2905. }
  2906. }
  2907. set {
  2908. this[this.tableоценки.код_предмета_2Column] = value;
  2909. }
  2910. }
  2911. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2912. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2913. public byte оценка_2 {
  2914. get {
  2915. try {
  2916. return ((byte)(this[this.tableоценки.оценка_2Column]));
  2917. }
  2918. catch (global::System.InvalidCastException e) {
  2919. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка 2\' в таблице \'оценки\' равно DBNull.", e);
  2920. }
  2921. }
  2922. set {
  2923. this[this.tableоценки.оценка_2Column] = value;
  2924. }
  2925. }
  2926. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2927. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2928. public System.DateTime дата_экзамена_3 {
  2929. get {
  2930. try {
  2931. return ((global::System.DateTime)(this[this.tableоценки.дата_экзамена_3Column]));
  2932. }
  2933. catch (global::System.InvalidCastException e) {
  2934. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата экзамена 3\' в таблице \'оценки\' равно DBNull.", e);
  2935. }
  2936. }
  2937. set {
  2938. this[this.tableоценки.дата_экзамена_3Column] = value;
  2939. }
  2940. }
  2941. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2942. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2943. public long код_предмета_3 {
  2944. get {
  2945. try {
  2946. return ((long)(this[this.tableоценки.код_предмета_3Column]));
  2947. }
  2948. catch (global::System.InvalidCastException e) {
  2949. throw new global::System.Data.StrongTypingException("Значение для столбца \'код предмета 3\' в таблице \'оценки\' равно DBNull.", e);
  2950. }
  2951. }
  2952. set {
  2953. this[this.tableоценки.код_предмета_3Column] = value;
  2954. }
  2955. }
  2956. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2957. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2958. public byte оценка_3 {
  2959. get {
  2960. try {
  2961. return ((byte)(this[this.tableоценки.оценка_3Column]));
  2962. }
  2963. catch (global::System.InvalidCastException e) {
  2964. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка 3\' в таблице \'оценки\' равно DBNull.", e);
  2965. }
  2966. }
  2967. set {
  2968. this[this.tableоценки.оценка_3Column] = value;
  2969. }
  2970. }
  2971. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2972. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2973. public float средний_балл {
  2974. get {
  2975. try {
  2976. return ((float)(this[this.tableоценки.средний_баллColumn]));
  2977. }
  2978. catch (global::System.InvalidCastException e) {
  2979. throw new global::System.Data.StrongTypingException("Значение для столбца \'средний балл\' в таблице \'оценки\' равно DBNull.", e);
  2980. }
  2981. }
  2982. set {
  2983. this[this.tableоценки.средний_баллColumn] = value;
  2984. }
  2985. }
  2986. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2987. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2988. public bool Isкод_студентаNull() {
  2989. return this.IsNull(this.tableоценки.код_студентаColumn);
  2990. }
  2991. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2992. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2993. public void Setкод_студентаNull() {
  2994. this[this.tableоценки.код_студентаColumn] = global::System.Convert.DBNull;
  2995. }
  2996. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2997. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2998. public bool Isдата_экзамена_1Null() {
  2999. return this.IsNull(this.tableоценки.дата_экзамена_1Column);
  3000. }
  3001. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3002. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3003. public void Setдата_экзамена_1Null() {
  3004. this[this.tableоценки.дата_экзамена_1Column] = global::System.Convert.DBNull;
  3005. }
  3006. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3008. public bool Isкод_предмета_1Null() {
  3009. return this.IsNull(this.tableоценки.код_предмета_1Column);
  3010. }
  3011. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3012. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3013. public void Setкод_предмета_1Null() {
  3014. this[this.tableоценки.код_предмета_1Column] = global::System.Convert.DBNull;
  3015. }
  3016. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3017. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3018. public bool Isоценка_1Null() {
  3019. return this.IsNull(this.tableоценки.оценка_1Column);
  3020. }
  3021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3022. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3023. public void Setоценка_1Null() {
  3024. this[this.tableоценки.оценка_1Column] = global::System.Convert.DBNull;
  3025. }
  3026. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3027. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3028. public bool Isдата_экзамена_2Null() {
  3029. return this.IsNull(this.tableоценки.дата_экзамена_2Column);
  3030. }
  3031. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3032. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3033. public void Setдата_экзамена_2Null() {
  3034. this[this.tableоценки.дата_экзамена_2Column] = global::System.Convert.DBNull;
  3035. }
  3036. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3037. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3038. public bool Isкод_предмета_2Null() {
  3039. return this.IsNull(this.tableоценки.код_предмета_2Column);
  3040. }
  3041. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3042. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3043. public void Setкод_предмета_2Null() {
  3044. this[this.tableоценки.код_предмета_2Column] = global::System.Convert.DBNull;
  3045. }
  3046. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3048. public bool Isоценка_2Null() {
  3049. return this.IsNull(this.tableоценки.оценка_2Column);
  3050. }
  3051. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3052. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3053. public void Setоценка_2Null() {
  3054. this[this.tableоценки.оценка_2Column] = global::System.Convert.DBNull;
  3055. }
  3056. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3057. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3058. public bool Isдата_экзамена_3Null() {
  3059. return this.IsNull(this.tableоценки.дата_экзамена_3Column);
  3060. }
  3061. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3062. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3063. public void Setдата_экзамена_3Null() {
  3064. this[this.tableоценки.дата_экзамена_3Column] = global::System.Convert.DBNull;
  3065. }
  3066. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3067. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3068. public bool Isкод_предмета_3Null() {
  3069. return this.IsNull(this.tableоценки.код_предмета_3Column);
  3070. }
  3071. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3072. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3073. public void Setкод_предмета_3Null() {
  3074. this[this.tableоценки.код_предмета_3Column] = global::System.Convert.DBNull;
  3075. }
  3076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3078. public bool Isоценка_3Null() {
  3079. return this.IsNull(this.tableоценки.оценка_3Column);
  3080. }
  3081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3082. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3083. public void Setоценка_3Null() {
  3084. this[this.tableоценки.оценка_3Column] = global::System.Convert.DBNull;
  3085. }
  3086. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3087. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3088. public bool Isсредний_баллNull() {
  3089. return this.IsNull(this.tableоценки.средний_баллColumn);
  3090. }
  3091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3092. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3093. public void Setсредний_баллNull() {
  3094. this[this.tableоценки.средний_баллColumn] = global::System.Convert.DBNull;
  3095. }
  3096. }
  3097. /// <summary>
  3098. ///Represents strongly named DataRow class.
  3099. ///</summary>
  3100. public partial class предметыRow : global::System.Data.DataRow {
  3101. private предметыDataTable tableпредметы;
  3102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3104. internal предметыRow(global::System.Data.DataRowBuilder rb) :
  3105. base(rb) {
  3106. this.tableпредметы = ((предметыDataTable)(this.Table));
  3107. }
  3108. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3109. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3110. public int код_предмета {
  3111. get {
  3112. return ((int)(this[this.tableпредметы.код_предметаColumn]));
  3113. }
  3114. set {
  3115. this[this.tableпредметы.код_предметаColumn] = value;
  3116. }
  3117. }
  3118. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3119. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3120. public string наименование_предмета {
  3121. get {
  3122. try {
  3123. return ((string)(this[this.tableпредметы.наименование_предметаColumn]));
  3124. }
  3125. catch (global::System.InvalidCastException e) {
  3126. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета\' в таблице \'предметы\' равно DBNull.", e);
  3127. }
  3128. }
  3129. set {
  3130. this[this.tableпредметы.наименование_предметаColumn] = value;
  3131. }
  3132. }
  3133. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3134. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3135. public string описание_предмета {
  3136. get {
  3137. try {
  3138. return ((string)(this[this.tableпредметы.описание_предметаColumn]));
  3139. }
  3140. catch (global::System.InvalidCastException e) {
  3141. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание предмета\' в таблице \'предметы\' равно DBNull.", e);
  3142. }
  3143. }
  3144. set {
  3145. this[this.tableпредметы.описание_предметаColumn] = value;
  3146. }
  3147. }
  3148. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3149. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3150. public bool Isнаименование_предметаNull() {
  3151. return this.IsNull(this.tableпредметы.наименование_предметаColumn);
  3152. }
  3153. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3154. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3155. public void Setнаименование_предметаNull() {
  3156. this[this.tableпредметы.наименование_предметаColumn] = global::System.Convert.DBNull;
  3157. }
  3158. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3159. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3160. public bool Isописание_предметаNull() {
  3161. return this.IsNull(this.tableпредметы.описание_предметаColumn);
  3162. }
  3163. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3164. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3165. public void Setописание_предметаNull() {
  3166. this[this.tableпредметы.описание_предметаColumn] = global::System.Convert.DBNull;
  3167. }
  3168. }
  3169. /// <summary>
  3170. ///Represents strongly named DataRow class.
  3171. ///</summary>
  3172. public partial class специальностиRow : global::System.Data.DataRow {
  3173. private специальностиDataTable tableспециальности;
  3174. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3175. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3176. internal специальностиRow(global::System.Data.DataRowBuilder rb) :
  3177. base(rb) {
  3178. this.tableспециальности = ((специальностиDataTable)(this.Table));
  3179. }
  3180. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3181. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3182. public int Код_специальности {
  3183. get {
  3184. return ((int)(this[this.tableспециальности.Код_специальностиColumn]));
  3185. }
  3186. set {
  3187. this[this.tableспециальности.Код_специальностиColumn] = value;
  3188. }
  3189. }
  3190. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3191. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3192. public string Наименование_специальности {
  3193. get {
  3194. try {
  3195. return ((string)(this[this.tableспециальности.Наименование_специальностиColumn]));
  3196. }
  3197. catch (global::System.InvalidCastException e) {
  3198. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование специальности\' в таблице \'специальности\' равно" +
  3199. " DBNull.", e);
  3200. }
  3201. }
  3202. set {
  3203. this[this.tableспециальности.Наименование_специальностиColumn] = value;
  3204. }
  3205. }
  3206. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3207. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3208. public string Описание_специальности {
  3209. get {
  3210. try {
  3211. return ((string)(this[this.tableспециальности.Описание_специальностиColumn]));
  3212. }
  3213. catch (global::System.InvalidCastException e) {
  3214. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'специальности\' равно DBN" +
  3215. "ull.", e);
  3216. }
  3217. }
  3218. set {
  3219. this[this.tableспециальности.Описание_специальностиColumn] = value;
  3220. }
  3221. }
  3222. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3223. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3224. public bool IsНаименование_специальностиNull() {
  3225. return this.IsNull(this.tableспециальности.Наименование_специальностиColumn);
  3226. }
  3227. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3228. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3229. public void SetНаименование_специальностиNull() {
  3230. this[this.tableспециальности.Наименование_специальностиColumn] = global::System.Convert.DBNull;
  3231. }
  3232. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3233. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3234. public bool IsОписание_специальностиNull() {
  3235. return this.IsNull(this.tableспециальности.Описание_специальностиColumn);
  3236. }
  3237. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3238. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3239. public void SetОписание_специальностиNull() {
  3240. this[this.tableспециальности.Описание_специальностиColumn] = global::System.Convert.DBNull;
  3241. }
  3242. }
  3243. /// <summary>
  3244. ///Represents strongly named DataRow class.
  3245. ///</summary>
  3246. public partial class студентыRow : global::System.Data.DataRow {
  3247. private студентыDataTable tableстуденты;
  3248. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3249. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3250. internal студентыRow(global::System.Data.DataRowBuilder rb) :
  3251. base(rb) {
  3252. this.tableстуденты = ((студентыDataTable)(this.Table));
  3253. }
  3254. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3255. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3256. public long код_студента {
  3257. get {
  3258. return ((long)(this[this.tableстуденты.код_студентаColumn]));
  3259. }
  3260. set {
  3261. this[this.tableстуденты.код_студентаColumn] = value;
  3262. }
  3263. }
  3264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3266. public string ФИО {
  3267. get {
  3268. try {
  3269. return ((string)(this[this.tableстуденты.ФИОColumn]));
  3270. }
  3271. catch (global::System.InvalidCastException e) {
  3272. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'студенты\' равно DBNull.", e);
  3273. }
  3274. }
  3275. set {
  3276. this[this.tableстуденты.ФИОColumn] = value;
  3277. }
  3278. }
  3279. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3280. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3281. public string Пол {
  3282. get {
  3283. try {
  3284. return ((string)(this[this.tableстуденты.ПолColumn]));
  3285. }
  3286. catch (global::System.InvalidCastException e) {
  3287. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'студенты\' равно DBNull.", e);
  3288. }
  3289. }
  3290. set {
  3291. this[this.tableстуденты.ПолColumn] = value;
  3292. }
  3293. }
  3294. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3295. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3296. public System.DateTime Дата_рождения {
  3297. get {
  3298. try {
  3299. return ((global::System.DateTime)(this[this.tableстуденты.Дата_рожденияColumn]));
  3300. }
  3301. catch (global::System.InvalidCastException e) {
  3302. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'студенты\' равно DBNull.", e);
  3303. }
  3304. }
  3305. set {
  3306. this[this.tableстуденты.Дата_рожденияColumn] = value;
  3307. }
  3308. }
  3309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3311. public string Родители {
  3312. get {
  3313. try {
  3314. return ((string)(this[this.tableстуденты.РодителиColumn]));
  3315. }
  3316. catch (global::System.InvalidCastException e) {
  3317. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'студенты\' равно DBNull.", e);
  3318. }
  3319. }
  3320. set {
  3321. this[this.tableстуденты.РодителиColumn] = value;
  3322. }
  3323. }
  3324. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3325. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3326. public string Адрес {
  3327. get {
  3328. try {
  3329. return ((string)(this[this.tableстуденты.АдресColumn]));
  3330. }
  3331. catch (global::System.InvalidCastException e) {
  3332. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'студенты\' равно DBNull.", e);
  3333. }
  3334. }
  3335. set {
  3336. this[this.tableстуденты.АдресColumn] = value;
  3337. }
  3338. }
  3339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3341. public string Телефон {
  3342. get {
  3343. try {
  3344. return ((string)(this[this.tableстуденты.ТелефонColumn]));
  3345. }
  3346. catch (global::System.InvalidCastException e) {
  3347. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'студенты\' равно DBNull.", e);
  3348. }
  3349. }
  3350. set {
  3351. this[this.tableстуденты.ТелефонColumn] = value;
  3352. }
  3353. }
  3354. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3355. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3356. public string Паспортные_данные {
  3357. get {
  3358. try {
  3359. return ((string)(this[this.tableстуденты.Паспортные_данныеColumn]));
  3360. }
  3361. catch (global::System.InvalidCastException e) {
  3362. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'студенты\' равно DBNull.", e);
  3363. }
  3364. }
  3365. set {
  3366. this[this.tableстуденты.Паспортные_данныеColumn] = value;
  3367. }
  3368. }
  3369. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3370. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3371. public long Номер_зачетки {
  3372. get {
  3373. try {
  3374. return ((long)(this[this.tableстуденты.Номер_зачеткиColumn]));
  3375. }
  3376. catch (global::System.InvalidCastException e) {
  3377. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'студенты\' равно DBNull.", e);
  3378. }
  3379. }
  3380. set {
  3381. this[this.tableстуденты.Номер_зачеткиColumn] = value;
  3382. }
  3383. }
  3384. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3385. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3386. public System.DateTime Дата_поступления {
  3387. get {
  3388. try {
  3389. return ((global::System.DateTime)(this[this.tableстуденты.Дата_поступленияColumn]));
  3390. }
  3391. catch (global::System.InvalidCastException e) {
  3392. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'студенты\' равно DBNull.", e);
  3393. }
  3394. }
  3395. set {
  3396. this[this.tableстуденты.Дата_поступленияColumn] = value;
  3397. }
  3398. }
  3399. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3400. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3401. public string Гуппа {
  3402. get {
  3403. try {
  3404. return ((string)(this[this.tableстуденты.ГуппаColumn]));
  3405. }
  3406. catch (global::System.InvalidCastException e) {
  3407. throw new global::System.Data.StrongTypingException("Значение для столбца \'Гуппа\' в таблице \'студенты\' равно DBNull.", e);
  3408. }
  3409. }
  3410. set {
  3411. this[this.tableстуденты.ГуппаColumn] = value;
  3412. }
  3413. }
  3414. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3415. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3416. public byte Курс {
  3417. get {
  3418. try {
  3419. return ((byte)(this[this.tableстуденты.КурсColumn]));
  3420. }
  3421. catch (global::System.InvalidCastException e) {
  3422. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'студенты\' равно DBNull.", e);
  3423. }
  3424. }
  3425. set {
  3426. this[this.tableстуденты.КурсColumn] = value;
  3427. }
  3428. }
  3429. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3430. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3431. public long Код_специальности {
  3432. get {
  3433. try {
  3434. return ((long)(this[this.tableстуденты.Код_специальностиColumn]));
  3435. }
  3436. catch (global::System.InvalidCastException e) {
  3437. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код специальности\' в таблице \'студенты\' равно DBNull.", e);
  3438. }
  3439. }
  3440. set {
  3441. this[this.tableстуденты.Код_специальностиColumn] = value;
  3442. }
  3443. }
  3444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3445. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3446. public bool Очная_форма_обучения {
  3447. get {
  3448. try {
  3449. return ((bool)(this[this.tableстуденты.Очная_форма_обученияColumn]));
  3450. }
  3451. catch (global::System.InvalidCastException e) {
  3452. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'студенты\' равно DBNull.", e);
  3453. }
  3454. }
  3455. set {
  3456. this[this.tableстуденты.Очная_форма_обученияColumn] = value;
  3457. }
  3458. }
  3459. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3460. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3461. public bool IsФИОNull() {
  3462. return this.IsNull(this.tableстуденты.ФИОColumn);
  3463. }
  3464. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3465. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3466. public void SetФИОNull() {
  3467. this[this.tableстуденты.ФИОColumn] = global::System.Convert.DBNull;
  3468. }
  3469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3471. public bool IsПолNull() {
  3472. return this.IsNull(this.tableстуденты.ПолColumn);
  3473. }
  3474. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3475. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3476. public void SetПолNull() {
  3477. this[this.tableстуденты.ПолColumn] = global::System.Convert.DBNull;
  3478. }
  3479. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3480. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3481. public bool IsДата_рожденияNull() {
  3482. return this.IsNull(this.tableстуденты.Дата_рожденияColumn);
  3483. }
  3484. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3485. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3486. public void SetДата_рожденияNull() {
  3487. this[this.tableстуденты.Дата_рожденияColumn] = global::System.Convert.DBNull;
  3488. }
  3489. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3490. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3491. public bool IsРодителиNull() {
  3492. return this.IsNull(this.tableстуденты.РодителиColumn);
  3493. }
  3494. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3495. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3496. public void SetРодителиNull() {
  3497. this[this.tableстуденты.РодителиColumn] = global::System.Convert.DBNull;
  3498. }
  3499. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3500. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3501. public bool IsАдресNull() {
  3502. return this.IsNull(this.tableстуденты.АдресColumn);
  3503. }
  3504. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3505. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3506. public void SetАдресNull() {
  3507. this[this.tableстуденты.АдресColumn] = global::System.Convert.DBNull;
  3508. }
  3509. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3510. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3511. public bool IsТелефонNull() {
  3512. return this.IsNull(this.tableстуденты.ТелефонColumn);
  3513. }
  3514. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3515. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3516. public void SetТелефонNull() {
  3517. this[this.tableстуденты.ТелефонColumn] = global::System.Convert.DBNull;
  3518. }
  3519. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3520. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3521. public bool IsПаспортные_данныеNull() {
  3522. return this.IsNull(this.tableстуденты.Паспортные_данныеColumn);
  3523. }
  3524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3526. public void SetПаспортные_данныеNull() {
  3527. this[this.tableстуденты.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  3528. }
  3529. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3530. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3531. public bool IsНомер_зачеткиNull() {
  3532. return this.IsNull(this.tableстуденты.Номер_зачеткиColumn);
  3533. }
  3534. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3535. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3536. public void SetНомер_зачеткиNull() {
  3537. this[this.tableстуденты.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  3538. }
  3539. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3540. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3541. public bool IsДата_поступленияNull() {
  3542. return this.IsNull(this.tableстуденты.Дата_поступленияColumn);
  3543. }
  3544. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3545. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3546. public void SetДата_поступленияNull() {
  3547. this[this.tableстуденты.Дата_поступленияColumn] = global::System.Convert.DBNull;
  3548. }
  3549. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3550. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3551. public bool IsГуппаNull() {
  3552. return this.IsNull(this.tableстуденты.ГуппаColumn);
  3553. }
  3554. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3555. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3556. public void SetГуппаNull() {
  3557. this[this.tableстуденты.ГуппаColumn] = global::System.Convert.DBNull;
  3558. }
  3559. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3560. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3561. public bool IsКурсNull() {
  3562. return this.IsNull(this.tableстуденты.КурсColumn);
  3563. }
  3564. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3565. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3566. public void SetКурсNull() {
  3567. this[this.tableстуденты.КурсColumn] = global::System.Convert.DBNull;
  3568. }
  3569. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3570. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3571. public bool IsКод_специальностиNull() {
  3572. return this.IsNull(this.tableстуденты.Код_специальностиColumn);
  3573. }
  3574. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3575. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3576. public void SetКод_специальностиNull() {
  3577. this[this.tableстуденты.Код_специальностиColumn] = global::System.Convert.DBNull;
  3578. }
  3579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3581. public bool IsОчная_форма_обученияNull() {
  3582. return this.IsNull(this.tableстуденты.Очная_форма_обученияColumn);
  3583. }
  3584. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3585. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3586. public void SetОчная_форма_обученияNull() {
  3587. this[this.tableстуденты.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  3588. }
  3589. }
  3590. /// <summary>
  3591. ///Represents strongly named DataRow class.
  3592. ///</summary>
  3593. public partial class _Запрос_Студенты_ОценкиRow : global::System.Data.DataRow {
  3594. private _Запрос_Студенты_ОценкиDataTable _tableЗапрос_Студенты_Оценки;
  3595. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3596. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3597. internal _Запрос_Студенты_ОценкиRow(global::System.Data.DataRowBuilder rb) :
  3598. base(rb) {
  3599. this._tableЗапрос_Студенты_Оценки = ((_Запрос_Студенты_ОценкиDataTable)(this.Table));
  3600. }
  3601. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3602. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3603. public string ФИО_студента {
  3604. get {
  3605. try {
  3606. return ((string)(this[this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn]));
  3607. }
  3608. catch (global::System.InvalidCastException e) {
  3609. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО студента\' в таблице \'Запрос Студенты+Оценки\' равно DBNu" +
  3610. "ll.", e);
  3611. }
  3612. }
  3613. set {
  3614. this[this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn] = value;
  3615. }
  3616. }
  3617. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3618. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3619. public System.DateTime дата_предмета_первого_экзамена {
  3620. get {
  3621. try {
  3622. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Оценки.дата_предмета_первого_экзаменаColumn]));
  3623. }
  3624. catch (global::System.InvalidCastException e) {
  3625. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата предмета первого экзамена\' в таблице \'Запрос Студенты+" +
  3626. "Оценки\' равно DBNull.", e);
  3627. }
  3628. }
  3629. set {
  3630. this[this._tableЗапрос_Студенты_Оценки.дата_предмета_первого_экзаменаColumn] = value;
  3631. }
  3632. }
  3633. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3634. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3635. public string наименование_предмета_первого_экзамена {
  3636. get {
  3637. try {
  3638. return ((string)(this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_первого_экзаменаColumn]));
  3639. }
  3640. catch (global::System.InvalidCastException e) {
  3641. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета первого экзамена\' в таблице \'Запрос С" +
  3642. "туденты+Оценки\' равно DBNull.", e);
  3643. }
  3644. }
  3645. set {
  3646. this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_первого_экзаменаColumn] = value;
  3647. }
  3648. }
  3649. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3650. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3651. public byte оценка_первого_экзамена {
  3652. get {
  3653. try {
  3654. return ((byte)(this[this._tableЗапрос_Студенты_Оценки.оценка_первого_экзаменаColumn]));
  3655. }
  3656. catch (global::System.InvalidCastException e) {
  3657. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка первого экзамена\' в таблице \'Запрос Студенты+Оценки\'" +
  3658. " равно DBNull.", e);
  3659. }
  3660. }
  3661. set {
  3662. this[this._tableЗапрос_Студенты_Оценки.оценка_первого_экзаменаColumn] = value;
  3663. }
  3664. }
  3665. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3666. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3667. public System.DateTime дата_второго_экзамена {
  3668. get {
  3669. try {
  3670. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Оценки.дата_второго_экзаменаColumn]));
  3671. }
  3672. catch (global::System.InvalidCastException e) {
  3673. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата второго экзамена\' в таблице \'Запрос Студенты+Оценки\' р" +
  3674. "авно DBNull.", e);
  3675. }
  3676. }
  3677. set {
  3678. this[this._tableЗапрос_Студенты_Оценки.дата_второго_экзаменаColumn] = value;
  3679. }
  3680. }
  3681. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3682. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3683. public string наименование_предмета_второго_экзамена {
  3684. get {
  3685. try {
  3686. return ((string)(this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_второго_экзаменаColumn]));
  3687. }
  3688. catch (global::System.InvalidCastException e) {
  3689. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета второго экзамена\' в таблице \'Запрос С" +
  3690. "туденты+Оценки\' равно DBNull.", e);
  3691. }
  3692. }
  3693. set {
  3694. this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_второго_экзаменаColumn] = value;
  3695. }
  3696. }
  3697. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3698. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3699. public byte оценка_второго_экзамена {
  3700. get {
  3701. try {
  3702. return ((byte)(this[this._tableЗапрос_Студенты_Оценки.оценка_второго_экзаменаColumn]));
  3703. }
  3704. catch (global::System.InvalidCastException e) {
  3705. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка второго экзамена\' в таблице \'Запрос Студенты+Оценки\'" +
  3706. " равно DBNull.", e);
  3707. }
  3708. }
  3709. set {
  3710. this[this._tableЗапрос_Студенты_Оценки.оценка_второго_экзаменаColumn] = value;
  3711. }
  3712. }
  3713. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3714. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3715. public System.DateTime дата_третьего_экзамена {
  3716. get {
  3717. try {
  3718. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Оценки.дата_третьего_экзаменаColumn]));
  3719. }
  3720. catch (global::System.InvalidCastException e) {
  3721. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата третьего экзамена\' в таблице \'Запрос Студенты+Оценки\' " +
  3722. "равно DBNull.", e);
  3723. }
  3724. }
  3725. set {
  3726. this[this._tableЗапрос_Студенты_Оценки.дата_третьего_экзаменаColumn] = value;
  3727. }
  3728. }
  3729. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3730. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3731. public string наименование_предмета_третьего_экзамена {
  3732. get {
  3733. try {
  3734. return ((string)(this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_третьего_экзаменаColumn]));
  3735. }
  3736. catch (global::System.InvalidCastException e) {
  3737. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета третьего экзамена\' в таблице \'Запрос " +
  3738. "Студенты+Оценки\' равно DBNull.", e);
  3739. }
  3740. }
  3741. set {
  3742. this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_третьего_экзаменаColumn] = value;
  3743. }
  3744. }
  3745. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3746. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3747. public byte оценка_третьего_экзамена {
  3748. get {
  3749. try {
  3750. return ((byte)(this[this._tableЗапрос_Студенты_Оценки.оценка_третьего_экзаменаColumn]));
  3751. }
  3752. catch (global::System.InvalidCastException e) {
  3753. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка третьего экзамена\' в таблице \'Запрос Студенты+Оценки" +
  3754. "\' равно DBNull.", e);
  3755. }
  3756. }
  3757. set {
  3758. this[this._tableЗапрос_Студенты_Оценки.оценка_третьего_экзаменаColumn] = value;
  3759. }
  3760. }
  3761. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3762. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3763. public float средний_балл_студента_за_сессию {
  3764. get {
  3765. try {
  3766. return ((float)(this[this._tableЗапрос_Студенты_Оценки.средний_балл_студента_за_сессиюColumn]));
  3767. }
  3768. catch (global::System.InvalidCastException e) {
  3769. throw new global::System.Data.StrongTypingException("Значение для столбца \'средний балл студента за сессию\' в таблице \'Запрос Студенты" +
  3770. "+Оценки\' равно DBNull.", e);
  3771. }
  3772. }
  3773. set {
  3774. this[this._tableЗапрос_Студенты_Оценки.средний_балл_студента_за_сессиюColumn] = value;
  3775. }
  3776. }
  3777. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3778. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3779. public bool IsФИО_студентаNull() {
  3780. return this.IsNull(this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn);
  3781. }
  3782. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3783. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3784. public void SetФИО_студентаNull() {
  3785. this[this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn] = global::System.Convert.DBNull;
  3786. }
  3787. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3788. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3789. public bool Isдата_предмета_первого_экзаменаNull() {
  3790. return this.IsNull(this._tableЗапрос_Студенты_Оценки.дата_предмета_первого_экзаменаColumn);
  3791. }
  3792. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3793. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3794. public void Setдата_предмета_первого_экзаменаNull() {
  3795. this[this._tableЗапрос_Студенты_Оценки.дата_предмета_первого_экзаменаColumn] = global::System.Convert.DBNull;
  3796. }
  3797. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3798. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3799. public bool Isнаименование_предмета_первого_экзаменаNull() {
  3800. return this.IsNull(this._tableЗапрос_Студенты_Оценки.наименование_предмета_первого_экзаменаColumn);
  3801. }
  3802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3803. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3804. public void Setнаименование_предмета_первого_экзаменаNull() {
  3805. this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_первого_экзаменаColumn] = global::System.Convert.DBNull;
  3806. }
  3807. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3808. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3809. public bool Isоценка_первого_экзаменаNull() {
  3810. return this.IsNull(this._tableЗапрос_Студенты_Оценки.оценка_первого_экзаменаColumn);
  3811. }
  3812. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3813. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3814. public void Setоценка_первого_экзаменаNull() {
  3815. this[this._tableЗапрос_Студенты_Оценки.оценка_первого_экзаменаColumn] = global::System.Convert.DBNull;
  3816. }
  3817. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3818. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3819. public bool Isдата_второго_экзаменаNull() {
  3820. return this.IsNull(this._tableЗапрос_Студенты_Оценки.дата_второго_экзаменаColumn);
  3821. }
  3822. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3823. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3824. public void Setдата_второго_экзаменаNull() {
  3825. this[this._tableЗапрос_Студенты_Оценки.дата_второго_экзаменаColumn] = global::System.Convert.DBNull;
  3826. }
  3827. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3828. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3829. public bool Isнаименование_предмета_второго_экзаменаNull() {
  3830. return this.IsNull(this._tableЗапрос_Студенты_Оценки.наименование_предмета_второго_экзаменаColumn);
  3831. }
  3832. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3833. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3834. public void Setнаименование_предмета_второго_экзаменаNull() {
  3835. this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_второго_экзаменаColumn] = global::System.Convert.DBNull;
  3836. }
  3837. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3838. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3839. public bool Isоценка_второго_экзаменаNull() {
  3840. return this.IsNull(this._tableЗапрос_Студенты_Оценки.оценка_второго_экзаменаColumn);
  3841. }
  3842. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3843. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3844. public void Setоценка_второго_экзаменаNull() {
  3845. this[this._tableЗапрос_Студенты_Оценки.оценка_второго_экзаменаColumn] = global::System.Convert.DBNull;
  3846. }
  3847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3849. public bool Isдата_третьего_экзаменаNull() {
  3850. return this.IsNull(this._tableЗапрос_Студенты_Оценки.дата_третьего_экзаменаColumn);
  3851. }
  3852. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3853. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3854. public void Setдата_третьего_экзаменаNull() {
  3855. this[this._tableЗапрос_Студенты_Оценки.дата_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  3856. }
  3857. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3858. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3859. public bool Isнаименование_предмета_третьего_экзаменаNull() {
  3860. return this.IsNull(this._tableЗапрос_Студенты_Оценки.наименование_предмета_третьего_экзаменаColumn);
  3861. }
  3862. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3863. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3864. public void Setнаименование_предмета_третьего_экзаменаNull() {
  3865. this[this._tableЗапрос_Студенты_Оценки.наименование_предмета_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  3866. }
  3867. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3868. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3869. public bool Isоценка_третьего_экзаменаNull() {
  3870. return this.IsNull(this._tableЗапрос_Студенты_Оценки.оценка_третьего_экзаменаColumn);
  3871. }
  3872. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3873. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3874. public void Setоценка_третьего_экзаменаNull() {
  3875. this[this._tableЗапрос_Студенты_Оценки.оценка_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  3876. }
  3877. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3878. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3879. public bool Isсредний_балл_студента_за_сессиюNull() {
  3880. return this.IsNull(this._tableЗапрос_Студенты_Оценки.средний_балл_студента_за_сессиюColumn);
  3881. }
  3882. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3883. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3884. public void Setсредний_балл_студента_за_сессиюNull() {
  3885. this[this._tableЗапрос_Студенты_Оценки.средний_балл_студента_за_сессиюColumn] = global::System.Convert.DBNull;
  3886. }
  3887. }
  3888. /// <summary>
  3889. ///Represents strongly named DataRow class.
  3890. ///</summary>
  3891. public partial class _запрос_студенты_специальностиRow : global::System.Data.DataRow {
  3892. private _запрос_студенты_специальностиDataTable _tableзапрос_студенты_специальности;
  3893. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3894. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3895. internal _запрос_студенты_специальностиRow(global::System.Data.DataRowBuilder rb) :
  3896. base(rb) {
  3897. this._tableзапрос_студенты_специальности = ((_запрос_студенты_специальностиDataTable)(this.Table));
  3898. }
  3899. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3900. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3901. public bool Очная_форма_обучения {
  3902. get {
  3903. try {
  3904. return ((bool)(this[this._tableзапрос_студенты_специальности.Очная_форма_обученияColumn]));
  3905. }
  3906. catch (global::System.InvalidCastException e) {
  3907. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'запрос студенты+специально" +
  3908. "сти\' равно DBNull.", e);
  3909. }
  3910. }
  3911. set {
  3912. this[this._tableзапрос_студенты_специальности.Очная_форма_обученияColumn] = value;
  3913. }
  3914. }
  3915. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3916. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3917. public byte Курс {
  3918. get {
  3919. try {
  3920. return ((byte)(this[this._tableзапрос_студенты_специальности.КурсColumn]));
  3921. }
  3922. catch (global::System.InvalidCastException e) {
  3923. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'запрос студенты+специальности\' равно DBNul" +
  3924. "l.", e);
  3925. }
  3926. }
  3927. set {
  3928. this[this._tableзапрос_студенты_специальности.КурсColumn] = value;
  3929. }
  3930. }
  3931. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3932. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3933. public System.DateTime Дата_поступления {
  3934. get {
  3935. try {
  3936. return ((global::System.DateTime)(this[this._tableзапрос_студенты_специальности.Дата_поступленияColumn]));
  3937. }
  3938. catch (global::System.InvalidCastException e) {
  3939. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'запрос студенты+специальности\'" +
  3940. " равно DBNull.", e);
  3941. }
  3942. }
  3943. set {
  3944. this[this._tableзапрос_студенты_специальности.Дата_поступленияColumn] = value;
  3945. }
  3946. }
  3947. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3948. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3949. public long Номер_зачетки {
  3950. get {
  3951. try {
  3952. return ((long)(this[this._tableзапрос_студенты_специальности.Номер_зачеткиColumn]));
  3953. }
  3954. catch (global::System.InvalidCastException e) {
  3955. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'запрос студенты+специальности\' ра" +
  3956. "вно DBNull.", e);
  3957. }
  3958. }
  3959. set {
  3960. this[this._tableзапрос_студенты_специальности.Номер_зачеткиColumn] = value;
  3961. }
  3962. }
  3963. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3964. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3965. public string Паспортные_данные {
  3966. get {
  3967. try {
  3968. return ((string)(this[this._tableзапрос_студенты_специальности.Паспортные_данныеColumn]));
  3969. }
  3970. catch (global::System.InvalidCastException e) {
  3971. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'запрос студенты+специальности" +
  3972. "\' равно DBNull.", e);
  3973. }
  3974. }
  3975. set {
  3976. this[this._tableзапрос_студенты_специальности.Паспортные_данныеColumn] = value;
  3977. }
  3978. }
  3979. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3980. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3981. public string Телефон {
  3982. get {
  3983. try {
  3984. return ((string)(this[this._tableзапрос_студенты_специальности.ТелефонColumn]));
  3985. }
  3986. catch (global::System.InvalidCastException e) {
  3987. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'запрос студенты+специальности\' равно DB" +
  3988. "Null.", e);
  3989. }
  3990. }
  3991. set {
  3992. this[this._tableзапрос_студенты_специальности.ТелефонColumn] = value;
  3993. }
  3994. }
  3995. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3996. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3997. public string Адрес {
  3998. get {
  3999. try {
  4000. return ((string)(this[this._tableзапрос_студенты_специальности.АдресColumn]));
  4001. }
  4002. catch (global::System.InvalidCastException e) {
  4003. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'запрос студенты+специальности\' равно DBNu" +
  4004. "ll.", e);
  4005. }
  4006. }
  4007. set {
  4008. this[this._tableзапрос_студенты_специальности.АдресColumn] = value;
  4009. }
  4010. }
  4011. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4012. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4013. public string Родители {
  4014. get {
  4015. try {
  4016. return ((string)(this[this._tableзапрос_студенты_специальности.РодителиColumn]));
  4017. }
  4018. catch (global::System.InvalidCastException e) {
  4019. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'запрос студенты+специальности\' равно D" +
  4020. "BNull.", e);
  4021. }
  4022. }
  4023. set {
  4024. this[this._tableзапрос_студенты_специальности.РодителиColumn] = value;
  4025. }
  4026. }
  4027. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4028. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4029. public System.DateTime Дата_рождения {
  4030. get {
  4031. try {
  4032. return ((global::System.DateTime)(this[this._tableзапрос_студенты_специальности.Дата_рожденияColumn]));
  4033. }
  4034. catch (global::System.InvalidCastException e) {
  4035. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'запрос студенты+специальности\' ра" +
  4036. "вно DBNull.", e);
  4037. }
  4038. }
  4039. set {
  4040. this[this._tableзапрос_студенты_специальности.Дата_рожденияColumn] = value;
  4041. }
  4042. }
  4043. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4044. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4045. public string Пол {
  4046. get {
  4047. try {
  4048. return ((string)(this[this._tableзапрос_студенты_специальности.ПолColumn]));
  4049. }
  4050. catch (global::System.InvalidCastException e) {
  4051. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'запрос студенты+специальности\' равно DBNull" +
  4052. ".", e);
  4053. }
  4054. }
  4055. set {
  4056. this[this._tableзапрос_студенты_специальности.ПолColumn] = value;
  4057. }
  4058. }
  4059. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4060. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4061. public string ФИО {
  4062. get {
  4063. try {
  4064. return ((string)(this[this._tableзапрос_студенты_специальности.ФИОColumn]));
  4065. }
  4066. catch (global::System.InvalidCastException e) {
  4067. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'запрос студенты+специальности\' равно DBNull" +
  4068. ".", e);
  4069. }
  4070. }
  4071. set {
  4072. this[this._tableзапрос_студенты_специальности.ФИОColumn] = value;
  4073. }
  4074. }
  4075. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4076. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4077. public string Гуппа {
  4078. get {
  4079. try {
  4080. return ((string)(this[this._tableзапрос_студенты_специальности.ГуппаColumn]));
  4081. }
  4082. catch (global::System.InvalidCastException e) {
  4083. throw new global::System.Data.StrongTypingException("Значение для столбца \'Гуппа\' в таблице \'запрос студенты+специальности\' равно DBNu" +
  4084. "ll.", e);
  4085. }
  4086. }
  4087. set {
  4088. this[this._tableзапрос_студенты_специальности.ГуппаColumn] = value;
  4089. }
  4090. }
  4091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4092. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4093. public string Описание_специальности {
  4094. get {
  4095. try {
  4096. return ((string)(this[this._tableзапрос_студенты_специальности.Описание_специальностиColumn]));
  4097. }
  4098. catch (global::System.InvalidCastException e) {
  4099. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'запрос студенты+специаль" +
  4100. "ности\' равно DBNull.", e);
  4101. }
  4102. }
  4103. set {
  4104. this[this._tableзапрос_студенты_специальности.Описание_специальностиColumn] = value;
  4105. }
  4106. }
  4107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4108. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4109. public string Наименование_специальности {
  4110. get {
  4111. try {
  4112. return ((string)(this[this._tableзапрос_студенты_специальности.Наименование_специальностиColumn]));
  4113. }
  4114. catch (global::System.InvalidCastException e) {
  4115. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование специальности\' в таблице \'запрос студенты+спец" +
  4116. "иальности\' равно DBNull.", e);
  4117. }
  4118. }
  4119. set {
  4120. this[this._tableзапрос_студенты_специальности.Наименование_специальностиColumn] = value;
  4121. }
  4122. }
  4123. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4124. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4125. public bool IsОчная_форма_обученияNull() {
  4126. return this.IsNull(this._tableзапрос_студенты_специальности.Очная_форма_обученияColumn);
  4127. }
  4128. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4129. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4130. public void SetОчная_форма_обученияNull() {
  4131. this[this._tableзапрос_студенты_специальности.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  4132. }
  4133. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4134. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4135. public bool IsКурсNull() {
  4136. return this.IsNull(this._tableзапрос_студенты_специальности.КурсColumn);
  4137. }
  4138. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4139. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4140. public void SetКурсNull() {
  4141. this[this._tableзапрос_студенты_специальности.КурсColumn] = global::System.Convert.DBNull;
  4142. }
  4143. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4144. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4145. public bool IsДата_поступленияNull() {
  4146. return this.IsNull(this._tableзапрос_студенты_специальности.Дата_поступленияColumn);
  4147. }
  4148. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4149. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4150. public void SetДата_поступленияNull() {
  4151. this[this._tableзапрос_студенты_специальности.Дата_поступленияColumn] = global::System.Convert.DBNull;
  4152. }
  4153. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4154. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4155. public bool IsНомер_зачеткиNull() {
  4156. return this.IsNull(this._tableзапрос_студенты_специальности.Номер_зачеткиColumn);
  4157. }
  4158. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4159. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4160. public void SetНомер_зачеткиNull() {
  4161. this[this._tableзапрос_студенты_специальности.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  4162. }
  4163. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4164. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4165. public bool IsПаспортные_данныеNull() {
  4166. return this.IsNull(this._tableзапрос_студенты_специальности.Паспортные_данныеColumn);
  4167. }
  4168. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4169. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4170. public void SetПаспортные_данныеNull() {
  4171. this[this._tableзапрос_студенты_специальности.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  4172. }
  4173. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4174. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4175. public bool IsТелефонNull() {
  4176. return this.IsNull(this._tableзапрос_студенты_специальности.ТелефонColumn);
  4177. }
  4178. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4179. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4180. public void SetТелефонNull() {
  4181. this[this._tableзапрос_студенты_специальности.ТелефонColumn] = global::System.Convert.DBNull;
  4182. }
  4183. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4184. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4185. public bool IsАдресNull() {
  4186. return this.IsNull(this._tableзапрос_студенты_специальности.АдресColumn);
  4187. }
  4188. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4189. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4190. public void SetАдресNull() {
  4191. this[this._tableзапрос_студенты_специальности.АдресColumn] = global::System.Convert.DBNull;
  4192. }
  4193. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4194. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4195. public bool IsРодителиNull() {
  4196. return this.IsNull(this._tableзапрос_студенты_специальности.РодителиColumn);
  4197. }
  4198. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4199. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4200. public void SetРодителиNull() {
  4201. this[this._tableзапрос_студенты_специальности.РодителиColumn] = global::System.Convert.DBNull;
  4202. }
  4203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4204. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4205. public bool IsДата_рожденияNull() {
  4206. return this.IsNull(this._tableзапрос_студенты_специальности.Дата_рожденияColumn);
  4207. }
  4208. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4209. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4210. public void SetДата_рожденияNull() {
  4211. this[this._tableзапрос_студенты_специальности.Дата_рожденияColumn] = global::System.Convert.DBNull;
  4212. }
  4213. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4214. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4215. public bool IsПолNull() {
  4216. return this.IsNull(this._tableзапрос_студенты_специальности.ПолColumn);
  4217. }
  4218. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4219. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4220. public void SetПолNull() {
  4221. this[this._tableзапрос_студенты_специальности.ПолColumn] = global::System.Convert.DBNull;
  4222. }
  4223. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4224. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4225. public bool IsФИОNull() {
  4226. return this.IsNull(this._tableзапрос_студенты_специальности.ФИОColumn);
  4227. }
  4228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4230. public void SetФИОNull() {
  4231. this[this._tableзапрос_студенты_специальности.ФИОColumn] = global::System.Convert.DBNull;
  4232. }
  4233. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4234. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4235. public bool IsГуппаNull() {
  4236. return this.IsNull(this._tableзапрос_студенты_специальности.ГуппаColumn);
  4237. }
  4238. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4239. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4240. public void SetГуппаNull() {
  4241. this[this._tableзапрос_студенты_специальности.ГуппаColumn] = global::System.Convert.DBNull;
  4242. }
  4243. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4244. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4245. public bool IsОписание_специальностиNull() {
  4246. return this.IsNull(this._tableзапрос_студенты_специальности.Описание_специальностиColumn);
  4247. }
  4248. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4249. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4250. public void SetОписание_специальностиNull() {
  4251. this[this._tableзапрос_студенты_специальности.Описание_специальностиColumn] = global::System.Convert.DBNull;
  4252. }
  4253. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4254. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4255. public bool IsНаименование_специальностиNull() {
  4256. return this.IsNull(this._tableзапрос_студенты_специальности.Наименование_специальностиColumn);
  4257. }
  4258. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4259. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4260. public void SetНаименование_специальностиNull() {
  4261. this[this._tableзапрос_студенты_специальности.Наименование_специальностиColumn] = global::System.Convert.DBNull;
  4262. }
  4263. }
  4264. /// <summary>
  4265. ///Represents strongly named DataRow class.
  4266. ///</summary>
  4267. public partial class фильтр_ММRow : global::System.Data.DataRow {
  4268. private фильтр_ММDataTable tableфильтр_ММ;
  4269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4271. internal фильтр_ММRow(global::System.Data.DataRowBuilder rb) :
  4272. base(rb) {
  4273. this.tableфильтр_ММ = ((фильтр_ММDataTable)(this.Table));
  4274. }
  4275. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4276. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4277. public string Наименование_специальности {
  4278. get {
  4279. try {
  4280. return ((string)(this[this.tableфильтр_ММ.Наименование_специальностиColumn]));
  4281. }
  4282. catch (global::System.InvalidCastException e) {
  4283. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование специальности\' в таблице \'фильтр ММ\' равно DBN" +
  4284. "ull.", e);
  4285. }
  4286. }
  4287. set {
  4288. this[this.tableфильтр_ММ.Наименование_специальностиColumn] = value;
  4289. }
  4290. }
  4291. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4292. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4293. public string Описание_специальности {
  4294. get {
  4295. try {
  4296. return ((string)(this[this.tableфильтр_ММ.Описание_специальностиColumn]));
  4297. }
  4298. catch (global::System.InvalidCastException e) {
  4299. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'фильтр ММ\' равно DBNull." +
  4300. "", e);
  4301. }
  4302. }
  4303. set {
  4304. this[this.tableфильтр_ММ.Описание_специальностиColumn] = value;
  4305. }
  4306. }
  4307. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4308. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4309. public string Гуппа {
  4310. get {
  4311. try {
  4312. return ((string)(this[this.tableфильтр_ММ.ГуппаColumn]));
  4313. }
  4314. catch (global::System.InvalidCastException e) {
  4315. throw new global::System.Data.StrongTypingException("Значение для столбца \'Гуппа\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4316. }
  4317. }
  4318. set {
  4319. this[this.tableфильтр_ММ.ГуппаColumn] = value;
  4320. }
  4321. }
  4322. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4323. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4324. public string ФИО {
  4325. get {
  4326. try {
  4327. return ((string)(this[this.tableфильтр_ММ.ФИОColumn]));
  4328. }
  4329. catch (global::System.InvalidCastException e) {
  4330. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4331. }
  4332. }
  4333. set {
  4334. this[this.tableфильтр_ММ.ФИОColumn] = value;
  4335. }
  4336. }
  4337. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4338. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4339. public string Пол {
  4340. get {
  4341. try {
  4342. return ((string)(this[this.tableфильтр_ММ.ПолColumn]));
  4343. }
  4344. catch (global::System.InvalidCastException e) {
  4345. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4346. }
  4347. }
  4348. set {
  4349. this[this.tableфильтр_ММ.ПолColumn] = value;
  4350. }
  4351. }
  4352. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4353. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4354. public string Адрес {
  4355. get {
  4356. try {
  4357. return ((string)(this[this.tableфильтр_ММ.АдресColumn]));
  4358. }
  4359. catch (global::System.InvalidCastException e) {
  4360. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4361. }
  4362. }
  4363. set {
  4364. this[this.tableфильтр_ММ.АдресColumn] = value;
  4365. }
  4366. }
  4367. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4368. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4369. public string Паспортные_данные {
  4370. get {
  4371. try {
  4372. return ((string)(this[this.tableфильтр_ММ.Паспортные_данныеColumn]));
  4373. }
  4374. catch (global::System.InvalidCastException e) {
  4375. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4376. }
  4377. }
  4378. set {
  4379. this[this.tableфильтр_ММ.Паспортные_данныеColumn] = value;
  4380. }
  4381. }
  4382. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4383. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4384. public byte Курс {
  4385. get {
  4386. try {
  4387. return ((byte)(this[this.tableфильтр_ММ.КурсColumn]));
  4388. }
  4389. catch (global::System.InvalidCastException e) {
  4390. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4391. }
  4392. }
  4393. set {
  4394. this[this.tableфильтр_ММ.КурсColumn] = value;
  4395. }
  4396. }
  4397. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4398. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4399. public bool Очная_форма_обучения {
  4400. get {
  4401. try {
  4402. return ((bool)(this[this.tableфильтр_ММ.Очная_форма_обученияColumn]));
  4403. }
  4404. catch (global::System.InvalidCastException e) {
  4405. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4406. }
  4407. }
  4408. set {
  4409. this[this.tableфильтр_ММ.Очная_форма_обученияColumn] = value;
  4410. }
  4411. }
  4412. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4413. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4414. public System.DateTime Дата_поступления {
  4415. get {
  4416. try {
  4417. return ((global::System.DateTime)(this[this.tableфильтр_ММ.Дата_поступленияColumn]));
  4418. }
  4419. catch (global::System.InvalidCastException e) {
  4420. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4421. }
  4422. }
  4423. set {
  4424. this[this.tableфильтр_ММ.Дата_поступленияColumn] = value;
  4425. }
  4426. }
  4427. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4428. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4429. public long Номер_зачетки {
  4430. get {
  4431. try {
  4432. return ((long)(this[this.tableфильтр_ММ.Номер_зачеткиColumn]));
  4433. }
  4434. catch (global::System.InvalidCastException e) {
  4435. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4436. }
  4437. }
  4438. set {
  4439. this[this.tableфильтр_ММ.Номер_зачеткиColumn] = value;
  4440. }
  4441. }
  4442. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4443. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4444. public string Телефон {
  4445. get {
  4446. try {
  4447. return ((string)(this[this.tableфильтр_ММ.ТелефонColumn]));
  4448. }
  4449. catch (global::System.InvalidCastException e) {
  4450. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4451. }
  4452. }
  4453. set {
  4454. this[this.tableфильтр_ММ.ТелефонColumn] = value;
  4455. }
  4456. }
  4457. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4458. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4459. public string Родители {
  4460. get {
  4461. try {
  4462. return ((string)(this[this.tableфильтр_ММ.РодителиColumn]));
  4463. }
  4464. catch (global::System.InvalidCastException e) {
  4465. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'фильтр ММ\' равно DBNull.", e);
  4466. }
  4467. }
  4468. set {
  4469. this[this.tableфильтр_ММ.РодителиColumn] = value;
  4470. }
  4471. }
  4472. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4473. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4474. public System.DateTime Дата_рождения {
  4475. get {
  4476. try {
  4477. return ((global::System.DateTime)(this[this.tableфильтр_ММ.Дата_рожденияColumn]));
  4478. }
  4479. catch (global::System.InvalidCastException e) {
  4480. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'фильтр ММ\' равно 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 bool IsНаименование_специальностиNull() {
  4490. return this.IsNull(this.tableфильтр_ММ.Наименование_специальностиColumn);
  4491. }
  4492. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4493. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4494. public void SetНаименование_специальностиNull() {
  4495. this[this.tableфильтр_ММ.Наименование_специальностиColumn] = global::System.Convert.DBNull;
  4496. }
  4497. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4498. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4499. public bool IsОписание_специальностиNull() {
  4500. return this.IsNull(this.tableфильтр_ММ.Описание_специальностиColumn);
  4501. }
  4502. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4503. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4504. public void SetОписание_специальностиNull() {
  4505. this[this.tableфильтр_ММ.Описание_специальностиColumn] = global::System.Convert.DBNull;
  4506. }
  4507. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4508. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4509. public bool IsГуппаNull() {
  4510. return this.IsNull(this.tableфильтр_ММ.ГуппаColumn);
  4511. }
  4512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4513. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4514. public void SetГуппаNull() {
  4515. this[this.tableфильтр_ММ.ГуппаColumn] = global::System.Convert.DBNull;
  4516. }
  4517. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4518. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4519. public bool IsФИОNull() {
  4520. return this.IsNull(this.tableфильтр_ММ.ФИОColumn);
  4521. }
  4522. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4523. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4524. public void SetФИОNull() {
  4525. this[this.tableфильтр_ММ.ФИОColumn] = global::System.Convert.DBNull;
  4526. }
  4527. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4528. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4529. public bool IsПолNull() {
  4530. return this.IsNull(this.tableфильтр_ММ.ПолColumn);
  4531. }
  4532. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4533. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4534. public void SetПолNull() {
  4535. this[this.tableфильтр_ММ.ПолColumn] = global::System.Convert.DBNull;
  4536. }
  4537. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4538. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4539. public bool IsАдресNull() {
  4540. return this.IsNull(this.tableфильтр_ММ.АдресColumn);
  4541. }
  4542. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4543. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4544. public void SetАдресNull() {
  4545. this[this.tableфильтр_ММ.АдресColumn] = global::System.Convert.DBNull;
  4546. }
  4547. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4548. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4549. public bool IsПаспортные_данныеNull() {
  4550. return this.IsNull(this.tableфильтр_ММ.Паспортные_данныеColumn);
  4551. }
  4552. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4554. public void SetПаспортные_данныеNull() {
  4555. this[this.tableфильтр_ММ.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  4556. }
  4557. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4558. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4559. public bool IsКурсNull() {
  4560. return this.IsNull(this.tableфильтр_ММ.КурсColumn);
  4561. }
  4562. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4563. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4564. public void SetКурсNull() {
  4565. this[this.tableфильтр_ММ.КурсColumn] = global::System.Convert.DBNull;
  4566. }
  4567. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4568. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4569. public bool IsОчная_форма_обученияNull() {
  4570. return this.IsNull(this.tableфильтр_ММ.Очная_форма_обученияColumn);
  4571. }
  4572. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4573. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4574. public void SetОчная_форма_обученияNull() {
  4575. this[this.tableфильтр_ММ.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  4576. }
  4577. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4578. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4579. public bool IsДата_поступленияNull() {
  4580. return this.IsNull(this.tableфильтр_ММ.Дата_поступленияColumn);
  4581. }
  4582. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4583. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4584. public void SetДата_поступленияNull() {
  4585. this[this.tableфильтр_ММ.Дата_поступленияColumn] = global::System.Convert.DBNull;
  4586. }
  4587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4589. public bool IsНомер_зачеткиNull() {
  4590. return this.IsNull(this.tableфильтр_ММ.Номер_зачеткиColumn);
  4591. }
  4592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4593. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4594. public void SetНомер_зачеткиNull() {
  4595. this[this.tableфильтр_ММ.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  4596. }
  4597. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4598. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4599. public bool IsТелефонNull() {
  4600. return this.IsNull(this.tableфильтр_ММ.ТелефонColumn);
  4601. }
  4602. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4603. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4604. public void SetТелефонNull() {
  4605. this[this.tableфильтр_ММ.ТелефонColumn] = global::System.Convert.DBNull;
  4606. }
  4607. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4608. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4609. public bool IsРодителиNull() {
  4610. return this.IsNull(this.tableфильтр_ММ.РодителиColumn);
  4611. }
  4612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4614. public void SetРодителиNull() {
  4615. this[this.tableфильтр_ММ.РодителиColumn] = global::System.Convert.DBNull;
  4616. }
  4617. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4618. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4619. public bool IsДата_рожденияNull() {
  4620. return this.IsNull(this.tableфильтр_ММ.Дата_рожденияColumn);
  4621. }
  4622. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4623. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4624. public void SetДата_рожденияNull() {
  4625. this[this.tableфильтр_ММ.Дата_рожденияColumn] = global::System.Convert.DBNull;
  4626. }
  4627. }
  4628. /// <summary>
  4629. ///Row event argument class
  4630. ///</summary>
  4631. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4632. public class оценкиRowChangeEvent : global::System.EventArgs {
  4633. private оценкиRow eventRow;
  4634. private global::System.Data.DataRowAction eventAction;
  4635. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4636. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4637. public оценкиRowChangeEvent(оценкиRow row, global::System.Data.DataRowAction action) {
  4638. this.eventRow = row;
  4639. this.eventAction = action;
  4640. }
  4641. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4642. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4643. public оценкиRow Row {
  4644. get {
  4645. return this.eventRow;
  4646. }
  4647. }
  4648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4650. public global::System.Data.DataRowAction Action {
  4651. get {
  4652. return this.eventAction;
  4653. }
  4654. }
  4655. }
  4656. /// <summary>
  4657. ///Row event argument class
  4658. ///</summary>
  4659. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4660. public class предметыRowChangeEvent : global::System.EventArgs {
  4661. private предметыRow eventRow;
  4662. private global::System.Data.DataRowAction eventAction;
  4663. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4664. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4665. public предметыRowChangeEvent(предметыRow row, global::System.Data.DataRowAction action) {
  4666. this.eventRow = row;
  4667. this.eventAction = action;
  4668. }
  4669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4671. public предметыRow Row {
  4672. get {
  4673. return this.eventRow;
  4674. }
  4675. }
  4676. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4677. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4678. public global::System.Data.DataRowAction Action {
  4679. get {
  4680. return this.eventAction;
  4681. }
  4682. }
  4683. }
  4684. /// <summary>
  4685. ///Row event argument class
  4686. ///</summary>
  4687. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4688. public class специальностиRowChangeEvent : global::System.EventArgs {
  4689. private специальностиRow eventRow;
  4690. private global::System.Data.DataRowAction eventAction;
  4691. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4692. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4693. public специальностиRowChangeEvent(специальностиRow row, global::System.Data.DataRowAction action) {
  4694. this.eventRow = row;
  4695. this.eventAction = action;
  4696. }
  4697. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4698. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4699. public специальностиRow Row {
  4700. get {
  4701. return this.eventRow;
  4702. }
  4703. }
  4704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4706. public global::System.Data.DataRowAction Action {
  4707. get {
  4708. return this.eventAction;
  4709. }
  4710. }
  4711. }
  4712. /// <summary>
  4713. ///Row event argument class
  4714. ///</summary>
  4715. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4716. public class студентыRowChangeEvent : global::System.EventArgs {
  4717. private студентыRow eventRow;
  4718. private global::System.Data.DataRowAction eventAction;
  4719. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4720. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4721. public студентыRowChangeEvent(студентыRow row, global::System.Data.DataRowAction action) {
  4722. this.eventRow = row;
  4723. this.eventAction = action;
  4724. }
  4725. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4726. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4727. public студентыRow Row {
  4728. get {
  4729. return this.eventRow;
  4730. }
  4731. }
  4732. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4733. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4734. public global::System.Data.DataRowAction Action {
  4735. get {
  4736. return this.eventAction;
  4737. }
  4738. }
  4739. }
  4740. /// <summary>
  4741. ///Row event argument class
  4742. ///</summary>
  4743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4744. public class _Запрос_Студенты_ОценкиRowChangeEvent : global::System.EventArgs {
  4745. private _Запрос_Студенты_ОценкиRow eventRow;
  4746. private global::System.Data.DataRowAction eventAction;
  4747. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4748. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4749. public _Запрос_Студенты_ОценкиRowChangeEvent(_Запрос_Студенты_ОценкиRow row, global::System.Data.DataRowAction action) {
  4750. this.eventRow = row;
  4751. this.eventAction = action;
  4752. }
  4753. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4754. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4755. public _Запрос_Студенты_ОценкиRow Row {
  4756. get {
  4757. return this.eventRow;
  4758. }
  4759. }
  4760. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4761. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4762. public global::System.Data.DataRowAction Action {
  4763. get {
  4764. return this.eventAction;
  4765. }
  4766. }
  4767. }
  4768. /// <summary>
  4769. ///Row event argument class
  4770. ///</summary>
  4771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4772. public class _запрос_студенты_специальностиRowChangeEvent : global::System.EventArgs {
  4773. private _запрос_студенты_специальностиRow eventRow;
  4774. private global::System.Data.DataRowAction eventAction;
  4775. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4776. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4777. public _запрос_студенты_специальностиRowChangeEvent(_запрос_студенты_специальностиRow row, global::System.Data.DataRowAction action) {
  4778. this.eventRow = row;
  4779. this.eventAction = action;
  4780. }
  4781. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4782. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4783. public _запрос_студенты_специальностиRow Row {
  4784. get {
  4785. return this.eventRow;
  4786. }
  4787. }
  4788. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4790. public global::System.Data.DataRowAction Action {
  4791. get {
  4792. return this.eventAction;
  4793. }
  4794. }
  4795. }
  4796. /// <summary>
  4797. ///Row event argument class
  4798. ///</summary>
  4799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4800. public class фильтр_ММRowChangeEvent : global::System.EventArgs {
  4801. private фильтр_ММRow eventRow;
  4802. private global::System.Data.DataRowAction eventAction;
  4803. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4804. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4805. public фильтр_ММRowChangeEvent(фильтр_ММRow row, global::System.Data.DataRowAction action) {
  4806. this.eventRow = row;
  4807. this.eventAction = action;
  4808. }
  4809. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4810. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4811. public фильтр_ММRow Row {
  4812. get {
  4813. return this.eventRow;
  4814. }
  4815. }
  4816. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4817. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4818. public global::System.Data.DataRowAction Action {
  4819. get {
  4820. return this.eventAction;
  4821. }
  4822. }
  4823. }
  4824. }
  4825. }
  4826. namespace IS31GrankinStudents._Is_32_podrezovDataSetTableAdapters {
  4827. /// <summary>
  4828. ///Represents the connection and commands used to retrieve and save data.
  4829. ///</summary>
  4830. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  4831. [global::System.ComponentModel.ToolboxItem(true)]
  4832. [global::System.ComponentModel.DataObjectAttribute(true)]
  4833. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  4834. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  4835. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  4836. public partial class оценкиTableAdapter : global::System.ComponentModel.Component {
  4837. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  4838. private global::System.Data.SqlClient.SqlConnection _connection;
  4839. private global::System.Data.SqlClient.SqlTransaction _transaction;
  4840. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  4841. private bool _clearBeforeFill;
  4842. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4843. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4844. public оценкиTableAdapter() {
  4845. this.ClearBeforeFill = true;
  4846. }
  4847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4849. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  4850. get {
  4851. if ((this._adapter == null)) {
  4852. this.InitAdapter();
  4853. }
  4854. return this._adapter;
  4855. }
  4856. }
  4857. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4858. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4859. internal global::System.Data.SqlClient.SqlConnection Connection {
  4860. get {
  4861. if ((this._connection == null)) {
  4862. this.InitConnection();
  4863. }
  4864. return this._connection;
  4865. }
  4866. set {
  4867. this._connection = value;
  4868. if ((this.Adapter.InsertCommand != null)) {
  4869. this.Adapter.InsertCommand.Connection = value;
  4870. }
  4871. if ((this.Adapter.DeleteCommand != null)) {
  4872. this.Adapter.DeleteCommand.Connection = value;
  4873. }
  4874. if ((this.Adapter.UpdateCommand != null)) {
  4875. this.Adapter.UpdateCommand.Connection = value;
  4876. }
  4877. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  4878. if ((this.CommandCollection[i] != null)) {
  4879. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  4880. }
  4881. }
  4882. }
  4883. }
  4884. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4885. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4886. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  4887. get {
  4888. return this._transaction;
  4889. }
  4890. set {
  4891. this._transaction = value;
  4892. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  4893. this.CommandCollection[i].Transaction = this._transaction;
  4894. }
  4895. if (((this.Adapter != null)
  4896. && (this.Adapter.DeleteCommand != null))) {
  4897. this.Adapter.DeleteCommand.Transaction = this._transaction;
  4898. }
  4899. if (((this.Adapter != null)
  4900. && (this.Adapter.InsertCommand != null))) {
  4901. this.Adapter.InsertCommand.Transaction = this._transaction;
  4902. }
  4903. if (((this.Adapter != null)
  4904. && (this.Adapter.UpdateCommand != null))) {
  4905. this.Adapter.UpdateCommand.Transaction = this._transaction;
  4906. }
  4907. }
  4908. }
  4909. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4910. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4911. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  4912. get {
  4913. if ((this._commandCollection == null)) {
  4914. this.InitCommandCollection();
  4915. }
  4916. return this._commandCollection;
  4917. }
  4918. }
  4919. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4920. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4921. public bool ClearBeforeFill {
  4922. get {
  4923. return this._clearBeforeFill;
  4924. }
  4925. set {
  4926. this._clearBeforeFill = value;
  4927. }
  4928. }
  4929. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4930. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4931. private void InitAdapter() {
  4932. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  4933. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  4934. tableMapping.SourceTable = "Table";
  4935. tableMapping.DataSetTable = "оценки";
  4936. tableMapping.ColumnMappings.Add("код студента", "код студента");
  4937. tableMapping.ColumnMappings.Add("дата экзамена 1", "дата экзамена 1");
  4938. tableMapping.ColumnMappings.Add("код предмета 1", "код предмета 1");
  4939. tableMapping.ColumnMappings.Add("оценка 1", "оценка 1");
  4940. tableMapping.ColumnMappings.Add("дата экзамена 2", "дата экзамена 2");
  4941. tableMapping.ColumnMappings.Add("код предмета 2", "код предмета 2");
  4942. tableMapping.ColumnMappings.Add("оценка 2", "оценка 2");
  4943. tableMapping.ColumnMappings.Add("дата экзамена 3", "дата экзамена 3");
  4944. tableMapping.ColumnMappings.Add("код предмета 3", "код предмета 3");
  4945. tableMapping.ColumnMappings.Add("оценка 3", "оценка 3");
  4946. tableMapping.ColumnMappings.Add("средний балл", "средний балл");
  4947. this._adapter.TableMappings.Add(tableMapping);
  4948. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  4949. this._adapter.InsertCommand.Connection = this.Connection;
  4950. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[оценки] ([код студента], [дата экзамена 1], [код предмета 1], [оценка 1], [дата экзамена 2], [код предмета 2], [оценка 2], [дата экзамена 3], [код предмета 3], [оценка 3], [средний балл]) VALUES (@код_студента, @дата_экзамена_1, @код_предмета_1, @оценка_1, @дата_экзамена_2, @код_предмета_2, @оценка_2, @дата_экзамена_3, @код_предмета_3, @оценка_3, @средний_балл)";
  4951. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  4952. 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, "", "", ""));
  4953. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@дата_экзамена_1", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "дата экзамена 1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4954. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@код_предмета_1", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код предмета 1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4955. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@оценка_1", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "оценка 1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4956. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@дата_экзамена_2", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "дата экзамена 2", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4957. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@код_предмета_2", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код предмета 2", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4958. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@оценка_2", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "оценка 2", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4959. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@дата_экзамена_3", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "дата экзамена 3", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4960. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@код_предмета_3", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код предмета 3", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4961. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@оценка_3", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "оценка 3", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4962. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@средний_балл", global::System.Data.SqlDbType.Real, 0, global::System.Data.ParameterDirection.Input, 0, 0, "средний балл", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  4963. }
  4964. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4965. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4966. private void InitConnection() {
  4967. this._connection = new global::System.Data.SqlClient.SqlConnection();
  4968. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  4969. }
  4970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4972. private void InitCommandCollection() {
  4973. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  4974. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  4975. this._commandCollection[0].Connection = this.Connection;
  4976. this._commandCollection[0].CommandText = "SELECT [код студента], [дата экзамена 1], [код предмета 1], [оценка 1], [дата экз" +
  4977. "амена 2], [код предмета 2], [оценка 2], [дата экзамена 3], [код предмета 3], [оц" +
  4978. "енка 3], [средний балл] FROM dbo.оценки";
  4979. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  4980. }
  4981. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4982. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4983. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  4984. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  4985. public virtual int Fill(_Is_32_podrezovDataSet.оценкиDataTable dataTable) {
  4986. this.Adapter.SelectCommand = this.CommandCollection[0];
  4987. if ((this.ClearBeforeFill == true)) {
  4988. dataTable.Clear();
  4989. }
  4990. int returnValue = this.Adapter.Fill(dataTable);
  4991. return returnValue;
  4992. }
  4993. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4994. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4995. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  4996. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  4997. public virtual _Is_32_podrezovDataSet.оценкиDataTable GetData() {
  4998. this.Adapter.SelectCommand = this.CommandCollection[0];
  4999. _Is_32_podrezovDataSet.оценкиDataTable dataTable = new _Is_32_podrezovDataSet.оценкиDataTable();
  5000. this.Adapter.Fill(dataTable);
  5001. return dataTable;
  5002. }
  5003. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5004. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5005. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5006. public virtual int Update(_Is_32_podrezovDataSet.оценкиDataTable dataTable) {
  5007. return this.Adapter.Update(dataTable);
  5008. }
  5009. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5010. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5011. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5012. public virtual int Update(_Is_32_podrezovDataSet dataSet) {
  5013. return this.Adapter.Update(dataSet, "оценки");
  5014. }
  5015. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5016. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5017. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5018. public virtual int Update(global::System.Data.DataRow dataRow) {
  5019. return this.Adapter.Update(new global::System.Data.DataRow[] {
  5020. dataRow});
  5021. }
  5022. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5024. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5025. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  5026. return this.Adapter.Update(dataRows);
  5027. }
  5028. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5029. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5030. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5031. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  5032. public virtual int Insert(global::System.Nullable<long> код_студента, global::System.Nullable<global::System.DateTime> дата_экзамена_1, global::System.Nullable<long> код_предмета_1, global::System.Nullable<byte> оценка_1, global::System.Nullable<global::System.DateTime> дата_экзамена_2, global::System.Nullable<long> код_предмета_2, global::System.Nullable<byte> оценка_2, global::System.Nullable<global::System.DateTime> дата_экзамена_3, global::System.Nullable<long> код_предмета_3, global::System.Nullable<byte> оценка_3, global::System.Nullable<float> средний_балл) {
  5033. if ((код_студента.HasValue == true)) {
  5034. this.Adapter.InsertCommand.Parameters[0].Value = ((long)(код_студента.Value));
  5035. }
  5036. else {
  5037. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  5038. }
  5039. if ((дата_экзамена_1.HasValue == true)) {
  5040. this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(дата_экзамена_1.Value));
  5041. }
  5042. else {
  5043. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  5044. }
  5045. if ((код_предмета_1.HasValue == true)) {
  5046. this.Adapter.InsertCommand.Parameters[2].Value = ((long)(код_предмета_1.Value));
  5047. }
  5048. else {
  5049. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  5050. }
  5051. if ((оценка_1.HasValue == true)) {
  5052. this.Adapter.InsertCommand.Parameters[3].Value = ((byte)(оценка_1.Value));
  5053. }
  5054. else {
  5055. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  5056. }
  5057. if ((дата_экзамена_2.HasValue == true)) {
  5058. this.Adapter.InsertCommand.Parameters[4].Value = ((System.DateTime)(дата_экзамена_2.Value));
  5059. }
  5060. else {
  5061. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  5062. }
  5063. if ((код_предмета_2.HasValue == true)) {
  5064. this.Adapter.InsertCommand.Parameters[5].Value = ((long)(код_предмета_2.Value));
  5065. }
  5066. else {
  5067. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  5068. }
  5069. if ((оценка_2.HasValue == true)) {
  5070. this.Adapter.InsertCommand.Parameters[6].Value = ((byte)(оценка_2.Value));
  5071. }
  5072. else {
  5073. this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
  5074. }
  5075. if ((дата_экзамена_3.HasValue == true)) {
  5076. this.Adapter.InsertCommand.Parameters[7].Value = ((System.DateTime)(дата_экзамена_3.Value));
  5077. }
  5078. else {
  5079. this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
  5080. }
  5081. if ((код_предмета_3.HasValue == true)) {
  5082. this.Adapter.InsertCommand.Parameters[8].Value = ((long)(код_предмета_3.Value));
  5083. }
  5084. else {
  5085. this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
  5086. }
  5087. if ((оценка_3.HasValue == true)) {
  5088. this.Adapter.InsertCommand.Parameters[9].Value = ((byte)(оценка_3.Value));
  5089. }
  5090. else {
  5091. this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
  5092. }
  5093. if ((средний_балл.HasValue == true)) {
  5094. this.Adapter.InsertCommand.Parameters[10].Value = ((float)(средний_балл.Value));
  5095. }
  5096. else {
  5097. this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
  5098. }
  5099. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  5100. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5101. != global::System.Data.ConnectionState.Open)) {
  5102. this.Adapter.InsertCommand.Connection.Open();
  5103. }
  5104. try {
  5105. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  5106. return returnValue;
  5107. }
  5108. finally {
  5109. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5110. this.Adapter.InsertCommand.Connection.Close();
  5111. }
  5112. }
  5113. }
  5114. }
  5115. /// <summary>
  5116. ///Represents the connection and commands used to retrieve and save data.
  5117. ///</summary>
  5118. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  5119. [global::System.ComponentModel.ToolboxItem(true)]
  5120. [global::System.ComponentModel.DataObjectAttribute(true)]
  5121. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  5122. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  5123. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5124. public partial class предметыTableAdapter : global::System.ComponentModel.Component {
  5125. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  5126. private global::System.Data.SqlClient.SqlConnection _connection;
  5127. private global::System.Data.SqlClient.SqlTransaction _transaction;
  5128. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  5129. private bool _clearBeforeFill;
  5130. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5131. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5132. public предметыTableAdapter() {
  5133. this.ClearBeforeFill = true;
  5134. }
  5135. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5136. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5137. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  5138. get {
  5139. if ((this._adapter == null)) {
  5140. this.InitAdapter();
  5141. }
  5142. return this._adapter;
  5143. }
  5144. }
  5145. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5146. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5147. internal global::System.Data.SqlClient.SqlConnection Connection {
  5148. get {
  5149. if ((this._connection == null)) {
  5150. this.InitConnection();
  5151. }
  5152. return this._connection;
  5153. }
  5154. set {
  5155. this._connection = value;
  5156. if ((this.Adapter.InsertCommand != null)) {
  5157. this.Adapter.InsertCommand.Connection = value;
  5158. }
  5159. if ((this.Adapter.DeleteCommand != null)) {
  5160. this.Adapter.DeleteCommand.Connection = value;
  5161. }
  5162. if ((this.Adapter.UpdateCommand != null)) {
  5163. this.Adapter.UpdateCommand.Connection = value;
  5164. }
  5165. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  5166. if ((this.CommandCollection[i] != null)) {
  5167. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  5168. }
  5169. }
  5170. }
  5171. }
  5172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5173. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5174. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  5175. get {
  5176. return this._transaction;
  5177. }
  5178. set {
  5179. this._transaction = value;
  5180. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  5181. this.CommandCollection[i].Transaction = this._transaction;
  5182. }
  5183. if (((this.Adapter != null)
  5184. && (this.Adapter.DeleteCommand != null))) {
  5185. this.Adapter.DeleteCommand.Transaction = this._transaction;
  5186. }
  5187. if (((this.Adapter != null)
  5188. && (this.Adapter.InsertCommand != null))) {
  5189. this.Adapter.InsertCommand.Transaction = this._transaction;
  5190. }
  5191. if (((this.Adapter != null)
  5192. && (this.Adapter.UpdateCommand != null))) {
  5193. this.Adapter.UpdateCommand.Transaction = this._transaction;
  5194. }
  5195. }
  5196. }
  5197. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5198. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5199. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  5200. get {
  5201. if ((this._commandCollection == null)) {
  5202. this.InitCommandCollection();
  5203. }
  5204. return this._commandCollection;
  5205. }
  5206. }
  5207. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5208. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5209. public bool ClearBeforeFill {
  5210. get {
  5211. return this._clearBeforeFill;
  5212. }
  5213. set {
  5214. this._clearBeforeFill = value;
  5215. }
  5216. }
  5217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5218. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5219. private void InitAdapter() {
  5220. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  5221. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  5222. tableMapping.SourceTable = "Table";
  5223. tableMapping.DataSetTable = "предметы";
  5224. tableMapping.ColumnMappings.Add("код предмета", "код предмета");
  5225. tableMapping.ColumnMappings.Add("наименование предмета", "наименование предмета");
  5226. tableMapping.ColumnMappings.Add("описание предмета", "описание предмета");
  5227. this._adapter.TableMappings.Add(tableMapping);
  5228. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  5229. this._adapter.DeleteCommand.Connection = this.Connection;
  5230. this._adapter.DeleteCommand.CommandText = "DELETE FROM [dbo].[предметы] WHERE (([код предмета] = @Original_код_предмета) AND" +
  5231. " ((@IsNull_наименование_предмета = 1 AND [наименование предмета] IS NULL) OR ([н" +
  5232. "аименование предмета] = @Original_наименование_предмета)))";
  5233. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  5234. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_код_предмета", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код предмета", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5235. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_наименование_предмета", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "наименование предмета", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5236. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_наименование_предмета", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "наименование предмета", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5237. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  5238. this._adapter.InsertCommand.Connection = this.Connection;
  5239. this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[предметы] ([наименование предмета], [описание предмета]) VALUE" +
  5240. "S (@наименование_предмета, @описание_предмета);\r\nSELECT [код предмета], [наимено" +
  5241. "вание предмета], [описание предмета] FROM предметы WHERE ([код предмета] = SCOPE" +
  5242. "_IDENTITY())";
  5243. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  5244. 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, "", "", ""));
  5245. 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, "", "", ""));
  5246. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  5247. this._adapter.UpdateCommand.Connection = this.Connection;
  5248. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[предметы] SET [наименование предмета] = @наименование_предмета, [описание предмета] = @описание_предмета WHERE (([код предмета] = @Original_код_предмета) AND ((@IsNull_наименование_предмета = 1 AND [наименование предмета] IS NULL) OR ([наименование предмета] = @Original_наименование_предмета)));
  5249. SELECT [код предмета], [наименование предмета], [описание предмета] FROM предметы WHERE ([код предмета] = @код_предмета)";
  5250. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  5251. this._adapter.UpdateCommand.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, "", "", ""));
  5252. this._adapter.UpdateCommand.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, "", "", ""));
  5253. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_код_предмета", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код предмета", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5254. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_наименование_предмета", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "наименование предмета", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5255. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_наименование_предмета", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "наименование предмета", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5256. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@код_предмета", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "код предмета", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5257. }
  5258. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5259. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5260. private void InitConnection() {
  5261. this._connection = new global::System.Data.SqlClient.SqlConnection();
  5262. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  5263. }
  5264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5266. private void InitCommandCollection() {
  5267. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  5268. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  5269. this._commandCollection[0].Connection = this.Connection;
  5270. this._commandCollection[0].CommandText = "SELECT [код предмета], [наименование предмета], [описание предмета] FROM dbo.пред" +
  5271. "меты";
  5272. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  5273. }
  5274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5276. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5277. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  5278. public virtual int Fill(_Is_32_podrezovDataSet.предметыDataTable dataTable) {
  5279. this.Adapter.SelectCommand = this.CommandCollection[0];
  5280. if ((this.ClearBeforeFill == true)) {
  5281. dataTable.Clear();
  5282. }
  5283. int returnValue = this.Adapter.Fill(dataTable);
  5284. return returnValue;
  5285. }
  5286. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5287. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5288. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5289. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  5290. public virtual _Is_32_podrezovDataSet.предметыDataTable GetData() {
  5291. this.Adapter.SelectCommand = this.CommandCollection[0];
  5292. _Is_32_podrezovDataSet.предметыDataTable dataTable = new _Is_32_podrezovDataSet.предметыDataTable();
  5293. this.Adapter.Fill(dataTable);
  5294. return dataTable;
  5295. }
  5296. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5297. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5298. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5299. public virtual int Update(_Is_32_podrezovDataSet.предметыDataTable dataTable) {
  5300. return this.Adapter.Update(dataTable);
  5301. }
  5302. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5303. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5304. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5305. public virtual int Update(_Is_32_podrezovDataSet dataSet) {
  5306. return this.Adapter.Update(dataSet, "предметы");
  5307. }
  5308. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5309. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5310. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5311. public virtual int Update(global::System.Data.DataRow dataRow) {
  5312. return this.Adapter.Update(new global::System.Data.DataRow[] {
  5313. dataRow});
  5314. }
  5315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5317. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5318. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  5319. return this.Adapter.Update(dataRows);
  5320. }
  5321. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5322. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5323. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5324. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  5325. public virtual int Delete(int Original_код_предмета, string Original_наименование_предмета) {
  5326. this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_код_предмета));
  5327. if ((Original_наименование_предмета == null)) {
  5328. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
  5329. this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
  5330. }
  5331. else {
  5332. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
  5333. this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_наименование_предмета));
  5334. }
  5335. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  5336. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5337. != global::System.Data.ConnectionState.Open)) {
  5338. this.Adapter.DeleteCommand.Connection.Open();
  5339. }
  5340. try {
  5341. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  5342. return returnValue;
  5343. }
  5344. finally {
  5345. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5346. this.Adapter.DeleteCommand.Connection.Close();
  5347. }
  5348. }
  5349. }
  5350. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5351. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5352. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5353. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  5354. public virtual int Insert(string наименование_предмета, string описание_предмета) {
  5355. if ((наименование_предмета == null)) {
  5356. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  5357. }
  5358. else {
  5359. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(наименование_предмета));
  5360. }
  5361. if ((описание_предмета == null)) {
  5362. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  5363. }
  5364. else {
  5365. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(описание_предмета));
  5366. }
  5367. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  5368. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5369. != global::System.Data.ConnectionState.Open)) {
  5370. this.Adapter.InsertCommand.Connection.Open();
  5371. }
  5372. try {
  5373. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  5374. return returnValue;
  5375. }
  5376. finally {
  5377. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5378. this.Adapter.InsertCommand.Connection.Close();
  5379. }
  5380. }
  5381. }
  5382. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5383. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5384. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5385. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  5386. public virtual int Update(string наименование_предмета, string описание_предмета, int Original_код_предмета, string Original_наименование_предмета, int код_предмета) {
  5387. if ((наименование_предмета == null)) {
  5388. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  5389. }
  5390. else {
  5391. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(наименование_предмета));
  5392. }
  5393. if ((описание_предмета == null)) {
  5394. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  5395. }
  5396. else {
  5397. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(описание_предмета));
  5398. }
  5399. this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(Original_код_предмета));
  5400. if ((Original_наименование_предмета == null)) {
  5401. this.Adapter.UpdateCommand.Parameters[3].Value = ((object)(1));
  5402. this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
  5403. }
  5404. else {
  5405. this.Adapter.UpdateCommand.Parameters[3].Value = ((object)(0));
  5406. this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Original_наименование_предмета));
  5407. }
  5408. this.Adapter.UpdateCommand.Parameters[5].Value = ((int)(код_предмета));
  5409. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  5410. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5411. != global::System.Data.ConnectionState.Open)) {
  5412. this.Adapter.UpdateCommand.Connection.Open();
  5413. }
  5414. try {
  5415. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  5416. return returnValue;
  5417. }
  5418. finally {
  5419. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5420. this.Adapter.UpdateCommand.Connection.Close();
  5421. }
  5422. }
  5423. }
  5424. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5425. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5426. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5427. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  5428. public virtual int Update(string наименование_предмета, string описание_предмета, int Original_код_предмета, string Original_наименование_предмета) {
  5429. return this.Update(наименование_предмета, описание_предмета, Original_код_предмета, Original_наименование_предмета, Original_код_предмета);
  5430. }
  5431. }
  5432. /// <summary>
  5433. ///Represents the connection and commands used to retrieve and save data.
  5434. ///</summary>
  5435. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  5436. [global::System.ComponentModel.ToolboxItem(true)]
  5437. [global::System.ComponentModel.DataObjectAttribute(true)]
  5438. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  5439. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  5440. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5441. public partial class специальностиTableAdapter : global::System.ComponentModel.Component {
  5442. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  5443. private global::System.Data.SqlClient.SqlConnection _connection;
  5444. private global::System.Data.SqlClient.SqlTransaction _transaction;
  5445. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  5446. private bool _clearBeforeFill;
  5447. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5448. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5449. public специальностиTableAdapter() {
  5450. this.ClearBeforeFill = true;
  5451. }
  5452. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5453. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5454. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  5455. get {
  5456. if ((this._adapter == null)) {
  5457. this.InitAdapter();
  5458. }
  5459. return this._adapter;
  5460. }
  5461. }
  5462. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5463. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5464. internal global::System.Data.SqlClient.SqlConnection Connection {
  5465. get {
  5466. if ((this._connection == null)) {
  5467. this.InitConnection();
  5468. }
  5469. return this._connection;
  5470. }
  5471. set {
  5472. this._connection = value;
  5473. if ((this.Adapter.InsertCommand != null)) {
  5474. this.Adapter.InsertCommand.Connection = value;
  5475. }
  5476. if ((this.Adapter.DeleteCommand != null)) {
  5477. this.Adapter.DeleteCommand.Connection = value;
  5478. }
  5479. if ((this.Adapter.UpdateCommand != null)) {
  5480. this.Adapter.UpdateCommand.Connection = value;
  5481. }
  5482. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  5483. if ((this.CommandCollection[i] != null)) {
  5484. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  5485. }
  5486. }
  5487. }
  5488. }
  5489. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5490. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5491. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  5492. get {
  5493. return this._transaction;
  5494. }
  5495. set {
  5496. this._transaction = value;
  5497. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  5498. this.CommandCollection[i].Transaction = this._transaction;
  5499. }
  5500. if (((this.Adapter != null)
  5501. && (this.Adapter.DeleteCommand != null))) {
  5502. this.Adapter.DeleteCommand.Transaction = this._transaction;
  5503. }
  5504. if (((this.Adapter != null)
  5505. && (this.Adapter.InsertCommand != null))) {
  5506. this.Adapter.InsertCommand.Transaction = this._transaction;
  5507. }
  5508. if (((this.Adapter != null)
  5509. && (this.Adapter.UpdateCommand != null))) {
  5510. this.Adapter.UpdateCommand.Transaction = this._transaction;
  5511. }
  5512. }
  5513. }
  5514. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5515. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5516. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  5517. get {
  5518. if ((this._commandCollection == null)) {
  5519. this.InitCommandCollection();
  5520. }
  5521. return this._commandCollection;
  5522. }
  5523. }
  5524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5526. public bool ClearBeforeFill {
  5527. get {
  5528. return this._clearBeforeFill;
  5529. }
  5530. set {
  5531. this._clearBeforeFill = value;
  5532. }
  5533. }
  5534. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5535. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5536. private void InitAdapter() {
  5537. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  5538. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  5539. tableMapping.SourceTable = "Table";
  5540. tableMapping.DataSetTable = "специальности";
  5541. tableMapping.ColumnMappings.Add("Код специальности", "Код специальности");
  5542. tableMapping.ColumnMappings.Add("Наименование специальности", "Наименование специальности");
  5543. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  5544. this._adapter.TableMappings.Add(tableMapping);
  5545. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  5546. this._adapter.DeleteCommand.Connection = this.Connection;
  5547. this._adapter.DeleteCommand.CommandText = "DELETE FROM [dbo].[специальности] WHERE (([Код специальности] = @Original_Код_спе" +
  5548. "циальности) AND ((@IsNull_Наименование_специальности = 1 AND [Наименование специ" +
  5549. "альности] IS NULL) OR ([Наименование специальности] = @Original_Наименование_спе" +
  5550. "циальности)))";
  5551. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  5552. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Код_специальности", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5553. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Наименование_специальности", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Наименование специальности", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5554. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Наименование_специальности", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Наименование специальности", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5555. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  5556. this._adapter.InsertCommand.Connection = this.Connection;
  5557. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[специальности] ([Наименование специальности], [Описание специальности]) VALUES (@Наименование_специальности, @Описание_специальности);
  5558. SELECT [Код специальности], [Наименование специальности], [Описание специальности] FROM специальности WHERE ([Код специальности] = SCOPE_IDENTITY())";
  5559. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  5560. 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, "", "", ""));
  5561. 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, "", "", ""));
  5562. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  5563. this._adapter.UpdateCommand.Connection = this.Connection;
  5564. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[специальности] SET [Наименование специальности] = @Наименование_специальности, [Описание специальности] = @Описание_специальности WHERE (([Код специальности] = @Original_Код_специальности) AND ((@IsNull_Наименование_специальности = 1 AND [Наименование специальности] IS NULL) OR ([Наименование специальности] = @Original_Наименование_специальности)));
  5565. SELECT [Код специальности], [Наименование специальности], [Описание специальности] FROM специальности WHERE ([Код специальности] = @Код_специальности)";
  5566. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  5567. this._adapter.UpdateCommand.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, "", "", ""));
  5568. this._adapter.UpdateCommand.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, "", "", ""));
  5569. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Код_специальности", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5570. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Наименование_специальности", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Наименование специальности", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5571. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Наименование_специальности", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Наименование специальности", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5572. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Код_специальности", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5573. }
  5574. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5575. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5576. private void InitConnection() {
  5577. this._connection = new global::System.Data.SqlClient.SqlConnection();
  5578. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  5579. }
  5580. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5581. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5582. private void InitCommandCollection() {
  5583. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  5584. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  5585. this._commandCollection[0].Connection = this.Connection;
  5586. this._commandCollection[0].CommandText = "SELECT [Код специальности], [Наименование специальности], [Описание специальности" +
  5587. "] FROM dbo.специальности";
  5588. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  5589. }
  5590. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5591. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5592. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5593. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  5594. public virtual int Fill(_Is_32_podrezovDataSet.специальностиDataTable dataTable) {
  5595. this.Adapter.SelectCommand = this.CommandCollection[0];
  5596. if ((this.ClearBeforeFill == true)) {
  5597. dataTable.Clear();
  5598. }
  5599. int returnValue = this.Adapter.Fill(dataTable);
  5600. return returnValue;
  5601. }
  5602. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5603. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5604. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5605. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  5606. public virtual _Is_32_podrezovDataSet.специальностиDataTable GetData() {
  5607. this.Adapter.SelectCommand = this.CommandCollection[0];
  5608. _Is_32_podrezovDataSet.специальностиDataTable dataTable = new _Is_32_podrezovDataSet.специальностиDataTable();
  5609. this.Adapter.Fill(dataTable);
  5610. return dataTable;
  5611. }
  5612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5614. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5615. public virtual int Update(_Is_32_podrezovDataSet.специальностиDataTable dataTable) {
  5616. return this.Adapter.Update(dataTable);
  5617. }
  5618. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5619. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5620. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5621. public virtual int Update(_Is_32_podrezovDataSet dataSet) {
  5622. return this.Adapter.Update(dataSet, "специальности");
  5623. }
  5624. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5626. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5627. public virtual int Update(global::System.Data.DataRow dataRow) {
  5628. return this.Adapter.Update(new global::System.Data.DataRow[] {
  5629. dataRow});
  5630. }
  5631. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5632. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5633. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5634. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  5635. return this.Adapter.Update(dataRows);
  5636. }
  5637. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5638. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5639. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5640. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  5641. public virtual int Delete(int Original_Код_специальности, string Original_Наименование_специальности) {
  5642. this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_Код_специальности));
  5643. if ((Original_Наименование_специальности == null)) {
  5644. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
  5645. this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
  5646. }
  5647. else {
  5648. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
  5649. this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_Наименование_специальности));
  5650. }
  5651. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  5652. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5653. != global::System.Data.ConnectionState.Open)) {
  5654. this.Adapter.DeleteCommand.Connection.Open();
  5655. }
  5656. try {
  5657. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  5658. return returnValue;
  5659. }
  5660. finally {
  5661. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5662. this.Adapter.DeleteCommand.Connection.Close();
  5663. }
  5664. }
  5665. }
  5666. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5667. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5668. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5669. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  5670. public virtual int Insert(string Наименование_специальности, string Описание_специальности) {
  5671. if ((Наименование_специальности == null)) {
  5672. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  5673. }
  5674. else {
  5675. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(Наименование_специальности));
  5676. }
  5677. if ((Описание_специальности == null)) {
  5678. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  5679. }
  5680. else {
  5681. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Описание_специальности));
  5682. }
  5683. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  5684. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5685. != global::System.Data.ConnectionState.Open)) {
  5686. this.Adapter.InsertCommand.Connection.Open();
  5687. }
  5688. try {
  5689. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  5690. return returnValue;
  5691. }
  5692. finally {
  5693. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5694. this.Adapter.InsertCommand.Connection.Close();
  5695. }
  5696. }
  5697. }
  5698. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5699. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5700. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5701. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  5702. public virtual int Update(string Наименование_специальности, string Описание_специальности, int Original_Код_специальности, string Original_Наименование_специальности, int Код_специальности) {
  5703. if ((Наименование_специальности == null)) {
  5704. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  5705. }
  5706. else {
  5707. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(Наименование_специальности));
  5708. }
  5709. if ((Описание_специальности == null)) {
  5710. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  5711. }
  5712. else {
  5713. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Описание_специальности));
  5714. }
  5715. this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(Original_Код_специальности));
  5716. if ((Original_Наименование_специальности == null)) {
  5717. this.Adapter.UpdateCommand.Parameters[3].Value = ((object)(1));
  5718. this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
  5719. }
  5720. else {
  5721. this.Adapter.UpdateCommand.Parameters[3].Value = ((object)(0));
  5722. this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Original_Наименование_специальности));
  5723. }
  5724. this.Adapter.UpdateCommand.Parameters[5].Value = ((int)(Код_специальности));
  5725. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  5726. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  5727. != global::System.Data.ConnectionState.Open)) {
  5728. this.Adapter.UpdateCommand.Connection.Open();
  5729. }
  5730. try {
  5731. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  5732. return returnValue;
  5733. }
  5734. finally {
  5735. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  5736. this.Adapter.UpdateCommand.Connection.Close();
  5737. }
  5738. }
  5739. }
  5740. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5741. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5742. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5743. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  5744. public virtual int Update(string Наименование_специальности, string Описание_специальности, int Original_Код_специальности, string Original_Наименование_специальности) {
  5745. return this.Update(Наименование_специальности, Описание_специальности, Original_Код_специальности, Original_Наименование_специальности, Original_Код_специальности);
  5746. }
  5747. }
  5748. /// <summary>
  5749. ///Represents the connection and commands used to retrieve and save data.
  5750. ///</summary>
  5751. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  5752. [global::System.ComponentModel.ToolboxItem(true)]
  5753. [global::System.ComponentModel.DataObjectAttribute(true)]
  5754. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  5755. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  5756. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5757. public partial class студентыTableAdapter : global::System.ComponentModel.Component {
  5758. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  5759. private global::System.Data.SqlClient.SqlConnection _connection;
  5760. private global::System.Data.SqlClient.SqlTransaction _transaction;
  5761. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  5762. private bool _clearBeforeFill;
  5763. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5764. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5765. public студентыTableAdapter() {
  5766. this.ClearBeforeFill = true;
  5767. }
  5768. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5769. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5770. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  5771. get {
  5772. if ((this._adapter == null)) {
  5773. this.InitAdapter();
  5774. }
  5775. return this._adapter;
  5776. }
  5777. }
  5778. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5779. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5780. internal global::System.Data.SqlClient.SqlConnection Connection {
  5781. get {
  5782. if ((this._connection == null)) {
  5783. this.InitConnection();
  5784. }
  5785. return this._connection;
  5786. }
  5787. set {
  5788. this._connection = value;
  5789. if ((this.Adapter.InsertCommand != null)) {
  5790. this.Adapter.InsertCommand.Connection = value;
  5791. }
  5792. if ((this.Adapter.DeleteCommand != null)) {
  5793. this.Adapter.DeleteCommand.Connection = value;
  5794. }
  5795. if ((this.Adapter.UpdateCommand != null)) {
  5796. this.Adapter.UpdateCommand.Connection = value;
  5797. }
  5798. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  5799. if ((this.CommandCollection[i] != null)) {
  5800. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  5801. }
  5802. }
  5803. }
  5804. }
  5805. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5806. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5807. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  5808. get {
  5809. return this._transaction;
  5810. }
  5811. set {
  5812. this._transaction = value;
  5813. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  5814. this.CommandCollection[i].Transaction = this._transaction;
  5815. }
  5816. if (((this.Adapter != null)
  5817. && (this.Adapter.DeleteCommand != null))) {
  5818. this.Adapter.DeleteCommand.Transaction = this._transaction;
  5819. }
  5820. if (((this.Adapter != null)
  5821. && (this.Adapter.InsertCommand != null))) {
  5822. this.Adapter.InsertCommand.Transaction = this._transaction;
  5823. }
  5824. if (((this.Adapter != null)
  5825. && (this.Adapter.UpdateCommand != null))) {
  5826. this.Adapter.UpdateCommand.Transaction = this._transaction;
  5827. }
  5828. }
  5829. }
  5830. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5831. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5832. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  5833. get {
  5834. if ((this._commandCollection == null)) {
  5835. this.InitCommandCollection();
  5836. }
  5837. return this._commandCollection;
  5838. }
  5839. }
  5840. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5841. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5842. public bool ClearBeforeFill {
  5843. get {
  5844. return this._clearBeforeFill;
  5845. }
  5846. set {
  5847. this._clearBeforeFill = value;
  5848. }
  5849. }
  5850. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5851. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5852. private void InitAdapter() {
  5853. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  5854. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  5855. tableMapping.SourceTable = "Table";
  5856. tableMapping.DataSetTable = "студенты";
  5857. tableMapping.ColumnMappings.Add("код студента", "код студента");
  5858. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  5859. tableMapping.ColumnMappings.Add("Пол", "Пол");
  5860. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  5861. tableMapping.ColumnMappings.Add("Родители", "Родители");
  5862. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  5863. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  5864. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  5865. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  5866. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  5867. tableMapping.ColumnMappings.Add("Гуппа", "Гуппа");
  5868. tableMapping.ColumnMappings.Add("Курс", "Курс");
  5869. tableMapping.ColumnMappings.Add("Код специальности", "Код специальности");
  5870. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  5871. this._adapter.TableMappings.Add(tableMapping);
  5872. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  5873. this._adapter.DeleteCommand.Connection = this.Connection;
  5874. this._adapter.DeleteCommand.CommandText = @"DELETE FROM [dbo].[студенты] WHERE (([код студента] = @Original_код_студента) AND ((@IsNull_Дата_рождения = 1 AND [Дата рождения] IS NULL) OR ([Дата рождения] = @Original_Дата_рождения)) AND ((@IsNull_Номер_зачетки = 1 AND [Номер зачетки] IS NULL) OR ([Номер зачетки] = @Original_Номер_зачетки)) AND ((@IsNull_Дата_поступления = 1 AND [Дата поступления] IS NULL) OR ([Дата поступления] = @Original_Дата_поступления)) AND ((@IsNull_Гуппа = 1 AND [Гуппа] IS NULL) OR ([Гуппа] = @Original_Гуппа)) AND ((@IsNull_Курс = 1 AND [Курс] IS NULL) OR ([Курс] = @Original_Курс)) AND ((@IsNull_Код_специальности = 1 AND [Код специальности] IS NULL) OR ([Код специальности] = @Original_Код_специальности)) AND ((@IsNull_Очная_форма_обучения = 1 AND [Очная форма обучения] IS NULL) OR ([Очная форма обучения] = @Original_Очная_форма_обучения)))";
  5875. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  5876. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_код_студента", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код студента", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5877. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Дата_рождения", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата рождения", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5878. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Дата_рождения", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата рождения", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5879. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Номер_зачетки", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Номер зачетки", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5880. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Номер_зачетки", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Номер зачетки", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5881. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Дата_поступления", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата поступления", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5882. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Дата_поступления", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата поступления", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5883. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Гуппа", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Гуппа", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5884. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Гуппа", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Гуппа", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5885. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Курс", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Курс", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5886. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Курс", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Курс", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5887. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Код_специальности", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5888. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Код_специальности", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5889. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Очная_форма_обучения", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Очная форма обучения", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5890. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Очная_форма_обучения", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Очная форма обучения", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5891. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  5892. this._adapter.InsertCommand.Connection = this.Connection;
  5893. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[студенты] ([ФИО], [Пол], [Дата рождения], [Родители], [Адрес], [Телефон], [Паспортные данные], [Номер зачетки], [Дата поступления], [Гуппа], [Курс], [Код специальности], [Очная форма обучения]) VALUES (@ФИО, @Пол, @Дата_рождения, @Родители, @Адрес, @Телефон, @Паспортные_данные, @Номер_зачетки, @Дата_поступления, @Гуппа, @Курс, @Код_специальности, @Очная_форма_обучения);
  5894. SELECT [код студента], ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Паспортные данные], [Номер зачетки], [Дата поступления], Гуппа, Курс, [Код специальности], [Очная форма обучения] FROM студенты WHERE ([код студента] = SCOPE_IDENTITY())";
  5895. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  5896. 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, "", "", ""));
  5897. 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, "", "", ""));
  5898. 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, "", "", ""));
  5899. 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, "", "", ""));
  5900. 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, "", "", ""));
  5901. 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, "", "", ""));
  5902. 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, "", "", ""));
  5903. 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, "", "", ""));
  5904. 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, "", "", ""));
  5905. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Гуппа", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Гуппа", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5906. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Курс", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Курс", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5907. 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, "", "", ""));
  5908. this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Очная_форма_обучения", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Очная форма обучения", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5909. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  5910. this._adapter.UpdateCommand.Connection = this.Connection;
  5911. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[студенты] SET [ФИО] = @ФИО, [Пол] = @Пол, [Дата рождения] = @Дата_рождения, [Родители] = @Родители, [Адрес] = @Адрес, [Телефон] = @Телефон, [Паспортные данные] = @Паспортные_данные, [Номер зачетки] = @Номер_зачетки, [Дата поступления] = @Дата_поступления, [Гуппа] = @Гуппа, [Курс] = @Курс, [Код специальности] = @Код_специальности, [Очная форма обучения] = @Очная_форма_обучения WHERE (([код студента] = @Original_код_студента) AND ((@IsNull_Дата_рождения = 1 AND [Дата рождения] IS NULL) OR ([Дата рождения] = @Original_Дата_рождения)) AND ((@IsNull_Номер_зачетки = 1 AND [Номер зачетки] IS NULL) OR ([Номер зачетки] = @Original_Номер_зачетки)) AND ((@IsNull_Дата_поступления = 1 AND [Дата поступления] IS NULL) OR ([Дата поступления] = @Original_Дата_поступления)) AND ((@IsNull_Гуппа = 1 AND [Гуппа] IS NULL) OR ([Гуппа] = @Original_Гуппа)) AND ((@IsNull_Курс = 1 AND [Курс] IS NULL) OR ([Курс] = @Original_Курс)) AND ((@IsNull_Код_специальности = 1 AND [Код специальности] IS NULL) OR ([Код специальности] = @Original_Код_специальности)) AND ((@IsNull_Очная_форма_обучения = 1 AND [Очная форма обучения] IS NULL) OR ([Очная форма обучения] = @Original_Очная_форма_обучения)));
  5912. SELECT [код студента], ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Паспортные данные], [Номер зачетки], [Дата поступления], Гуппа, Курс, [Код специальности], [Очная форма обучения] FROM студенты WHERE ([код студента] = @код_студента)";
  5913. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  5914. this._adapter.UpdateCommand.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, "", "", ""));
  5915. this._adapter.UpdateCommand.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, "", "", ""));
  5916. this._adapter.UpdateCommand.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, "", "", ""));
  5917. this._adapter.UpdateCommand.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, "", "", ""));
  5918. this._adapter.UpdateCommand.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, "", "", ""));
  5919. this._adapter.UpdateCommand.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, "", "", ""));
  5920. this._adapter.UpdateCommand.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, "", "", ""));
  5921. this._adapter.UpdateCommand.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, "", "", ""));
  5922. this._adapter.UpdateCommand.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, "", "", ""));
  5923. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Гуппа", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Гуппа", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5924. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Курс", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Курс", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5925. this._adapter.UpdateCommand.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, "", "", ""));
  5926. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Очная_форма_обучения", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Очная форма обучения", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5927. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_код_студента", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "код студента", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5928. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Дата_рождения", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата рождения", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5929. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Дата_рождения", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата рождения", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5930. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Номер_зачетки", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Номер зачетки", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5931. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Номер_зачетки", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Номер зачетки", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5932. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Дата_поступления", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата поступления", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5933. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Дата_поступления", global::System.Data.SqlDbType.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата поступления", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5934. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Гуппа", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Гуппа", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5935. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Гуппа", global::System.Data.SqlDbType.NChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Гуппа", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5936. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Курс", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Курс", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5937. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Курс", global::System.Data.SqlDbType.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Курс", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5938. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Код_специальности", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5939. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Код_специальности", global::System.Data.SqlDbType.BigInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Код специальности", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5940. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Очная_форма_обучения", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Очная форма обучения", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
  5941. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Очная_форма_обучения", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Очная форма обучения", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  5942. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@код_студента", global::System.Data.SqlDbType.BigInt, 8, global::System.Data.ParameterDirection.Input, 0, 0, "код студента", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  5943. }
  5944. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5945. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5946. private void InitConnection() {
  5947. this._connection = new global::System.Data.SqlClient.SqlConnection();
  5948. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  5949. }
  5950. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5951. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5952. private void InitCommandCollection() {
  5953. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  5954. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  5955. this._commandCollection[0].Connection = this.Connection;
  5956. this._commandCollection[0].CommandText = "SELECT [код студента], ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Пасп" +
  5957. "ортные данные], [Номер зачетки], [Дата поступления], Гуппа, Курс, [Код специальн" +
  5958. "ости], [Очная форма обучения] FROM dbo.студенты";
  5959. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  5960. }
  5961. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5962. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5963. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5964. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  5965. public virtual int Fill(_Is_32_podrezovDataSet.студентыDataTable dataTable) {
  5966. this.Adapter.SelectCommand = this.CommandCollection[0];
  5967. if ((this.ClearBeforeFill == true)) {
  5968. dataTable.Clear();
  5969. }
  5970. int returnValue = this.Adapter.Fill(dataTable);
  5971. return returnValue;
  5972. }
  5973. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5974. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5975. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5976. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  5977. public virtual _Is_32_podrezovDataSet.студентыDataTable GetData() {
  5978. this.Adapter.SelectCommand = this.CommandCollection[0];
  5979. _Is_32_podrezovDataSet.студентыDataTable dataTable = new _Is_32_podrezovDataSet.студентыDataTable();
  5980. this.Adapter.Fill(dataTable);
  5981. return dataTable;
  5982. }
  5983. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5984. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5985. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5986. public virtual int Update(_Is_32_podrezovDataSet.студентыDataTable dataTable) {
  5987. return this.Adapter.Update(dataTable);
  5988. }
  5989. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5990. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5991. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5992. public virtual int Update(_Is_32_podrezovDataSet dataSet) {
  5993. return this.Adapter.Update(dataSet, "студенты");
  5994. }
  5995. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5996. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5997. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  5998. public virtual int Update(global::System.Data.DataRow dataRow) {
  5999. return this.Adapter.Update(new global::System.Data.DataRow[] {
  6000. dataRow});
  6001. }
  6002. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6003. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6004. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6005. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  6006. return this.Adapter.Update(dataRows);
  6007. }
  6008. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6009. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6010. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6011. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  6012. public virtual int Delete(long Original_код_студента, global::System.Nullable<global::System.DateTime> Original_Дата_рождения, global::System.Nullable<long> Original_Номер_зачетки, global::System.Nullable<global::System.DateTime> Original_Дата_поступления, string Original_Гуппа, global::System.Nullable<byte> Original_Курс, global::System.Nullable<long> Original_Код_специальности, global::System.Nullable<bool> Original_Очная_форма_обучения) {
  6013. this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_код_студента));
  6014. if ((Original_Дата_рождения.HasValue == true)) {
  6015. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
  6016. this.Adapter.DeleteCommand.Parameters[2].Value = ((System.DateTime)(Original_Дата_рождения.Value));
  6017. }
  6018. else {
  6019. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
  6020. this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
  6021. }
  6022. if ((Original_Номер_зачетки.HasValue == true)) {
  6023. this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(0));
  6024. this.Adapter.DeleteCommand.Parameters[4].Value = ((long)(Original_Номер_зачетки.Value));
  6025. }
  6026. else {
  6027. this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(1));
  6028. this.Adapter.DeleteCommand.Parameters[4].Value = global::System.DBNull.Value;
  6029. }
  6030. if ((Original_Дата_поступления.HasValue == true)) {
  6031. this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0));
  6032. this.Adapter.DeleteCommand.Parameters[6].Value = ((System.DateTime)(Original_Дата_поступления.Value));
  6033. }
  6034. else {
  6035. this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1));
  6036. this.Adapter.DeleteCommand.Parameters[6].Value = global::System.DBNull.Value;
  6037. }
  6038. if ((Original_Гуппа == null)) {
  6039. this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1));
  6040. this.Adapter.DeleteCommand.Parameters[8].Value = global::System.DBNull.Value;
  6041. }
  6042. else {
  6043. this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0));
  6044. this.Adapter.DeleteCommand.Parameters[8].Value = ((string)(Original_Гуппа));
  6045. }
  6046. if ((Original_Курс.HasValue == true)) {
  6047. this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(0));
  6048. this.Adapter.DeleteCommand.Parameters[10].Value = ((byte)(Original_Курс.Value));
  6049. }
  6050. else {
  6051. this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(1));
  6052. this.Adapter.DeleteCommand.Parameters[10].Value = global::System.DBNull.Value;
  6053. }
  6054. if ((Original_Код_специальности.HasValue == true)) {
  6055. this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(0));
  6056. this.Adapter.DeleteCommand.Parameters[12].Value = ((long)(Original_Код_специальности.Value));
  6057. }
  6058. else {
  6059. this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(1));
  6060. this.Adapter.DeleteCommand.Parameters[12].Value = global::System.DBNull.Value;
  6061. }
  6062. if ((Original_Очная_форма_обучения.HasValue == true)) {
  6063. this.Adapter.DeleteCommand.Parameters[13].Value = ((object)(0));
  6064. this.Adapter.DeleteCommand.Parameters[14].Value = ((bool)(Original_Очная_форма_обучения.Value));
  6065. }
  6066. else {
  6067. this.Adapter.DeleteCommand.Parameters[13].Value = ((object)(1));
  6068. this.Adapter.DeleteCommand.Parameters[14].Value = global::System.DBNull.Value;
  6069. }
  6070. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  6071. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  6072. != global::System.Data.ConnectionState.Open)) {
  6073. this.Adapter.DeleteCommand.Connection.Open();
  6074. }
  6075. try {
  6076. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  6077. return returnValue;
  6078. }
  6079. finally {
  6080. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  6081. this.Adapter.DeleteCommand.Connection.Close();
  6082. }
  6083. }
  6084. }
  6085. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6086. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6087. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6088. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  6089. public virtual int Insert(string ФИО, string Пол, global::System.Nullable<global::System.DateTime> Дата_рождения, string Родители, string Адрес, string Телефон, string Паспортные_данные, global::System.Nullable<long> Номер_зачетки, global::System.Nullable<global::System.DateTime> Дата_поступления, string Гуппа, global::System.Nullable<byte> Курс, global::System.Nullable<long> Код_специальности, global::System.Nullable<bool> Очная_форма_обучения) {
  6090. if ((ФИО == null)) {
  6091. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  6092. }
  6093. else {
  6094. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(ФИО));
  6095. }
  6096. if ((Пол == null)) {
  6097. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  6098. }
  6099. else {
  6100. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Пол));
  6101. }
  6102. if ((Дата_рождения.HasValue == true)) {
  6103. this.Adapter.InsertCommand.Parameters[2].Value = ((System.DateTime)(Дата_рождения.Value));
  6104. }
  6105. else {
  6106. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  6107. }
  6108. if ((Родители == null)) {
  6109. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  6110. }
  6111. else {
  6112. this.Adapter.InsertCommand.Parameters[3].Value = ((string)(Родители));
  6113. }
  6114. if ((Адрес == null)) {
  6115. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  6116. }
  6117. else {
  6118. this.Adapter.InsertCommand.Parameters[4].Value = ((string)(Адрес));
  6119. }
  6120. if ((Телефон == null)) {
  6121. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  6122. }
  6123. else {
  6124. this.Adapter.InsertCommand.Parameters[5].Value = ((string)(Телефон));
  6125. }
  6126. if ((Паспортные_данные == null)) {
  6127. this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
  6128. }
  6129. else {
  6130. this.Adapter.InsertCommand.Parameters[6].Value = ((string)(Паспортные_данные));
  6131. }
  6132. if ((Номер_зачетки.HasValue == true)) {
  6133. this.Adapter.InsertCommand.Parameters[7].Value = ((long)(Номер_зачетки.Value));
  6134. }
  6135. else {
  6136. this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
  6137. }
  6138. if ((Дата_поступления.HasValue == true)) {
  6139. this.Adapter.InsertCommand.Parameters[8].Value = ((System.DateTime)(Дата_поступления.Value));
  6140. }
  6141. else {
  6142. this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
  6143. }
  6144. if ((Гуппа == null)) {
  6145. this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
  6146. }
  6147. else {
  6148. this.Adapter.InsertCommand.Parameters[9].Value = ((string)(Гуппа));
  6149. }
  6150. if ((Курс.HasValue == true)) {
  6151. this.Adapter.InsertCommand.Parameters[10].Value = ((byte)(Курс.Value));
  6152. }
  6153. else {
  6154. this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
  6155. }
  6156. if ((Код_специальности.HasValue == true)) {
  6157. this.Adapter.InsertCommand.Parameters[11].Value = ((long)(Код_специальности.Value));
  6158. }
  6159. else {
  6160. this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value;
  6161. }
  6162. if ((Очная_форма_обучения.HasValue == true)) {
  6163. this.Adapter.InsertCommand.Parameters[12].Value = ((bool)(Очная_форма_обучения.Value));
  6164. }
  6165. else {
  6166. this.Adapter.InsertCommand.Parameters[12].Value = global::System.DBNull.Value;
  6167. }
  6168. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  6169. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  6170. != global::System.Data.ConnectionState.Open)) {
  6171. this.Adapter.InsertCommand.Connection.Open();
  6172. }
  6173. try {
  6174. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  6175. return returnValue;
  6176. }
  6177. finally {
  6178. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  6179. this.Adapter.InsertCommand.Connection.Close();
  6180. }
  6181. }
  6182. }
  6183. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6184. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6185. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6186. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  6187. public virtual int Update(
  6188. string ФИО,
  6189. string Пол,
  6190. global::System.Nullable<global::System.DateTime> Дата_рождения,
  6191. string Родители,
  6192. string Адрес,
  6193. string Телефон,
  6194. string Паспортные_данные,
  6195. global::System.Nullable<long> Номер_зачетки,
  6196. global::System.Nullable<global::System.DateTime> Дата_поступления,
  6197. string Гуппа,
  6198. global::System.Nullable<byte> Курс,
  6199. global::System.Nullable<long> Код_специальности,
  6200. global::System.Nullable<bool> Очная_форма_обучения,
  6201. long Original_код_студента,
  6202. global::System.Nullable<global::System.DateTime> Original_Дата_рождения,
  6203. global::System.Nullable<long> Original_Номер_зачетки,
  6204. global::System.Nullable<global::System.DateTime> Original_Дата_поступления,
  6205. string Original_Гуппа,
  6206. global::System.Nullable<byte> Original_Курс,
  6207. global::System.Nullable<long> Original_Код_специальности,
  6208. global::System.Nullable<bool> Original_Очная_форма_обучения,
  6209. long код_студента) {
  6210. if ((ФИО == null)) {
  6211. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  6212. }
  6213. else {
  6214. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(ФИО));
  6215. }
  6216. if ((Пол == null)) {
  6217. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  6218. }
  6219. else {
  6220. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Пол));
  6221. }
  6222. if ((Дата_рождения.HasValue == true)) {
  6223. this.Adapter.UpdateCommand.Parameters[2].Value = ((System.DateTime)(Дата_рождения.Value));
  6224. }
  6225. else {
  6226. this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value;
  6227. }
  6228. if ((Родители == null)) {
  6229. this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
  6230. }
  6231. else {
  6232. this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(Родители));
  6233. }
  6234. if ((Адрес == null)) {
  6235. this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
  6236. }
  6237. else {
  6238. this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Адрес));
  6239. }
  6240. if ((Телефон == null)) {
  6241. this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value;
  6242. }
  6243. else {
  6244. this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Телефон));
  6245. }
  6246. if ((Паспортные_данные == null)) {
  6247. this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
  6248. }
  6249. else {
  6250. this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Паспортные_данные));
  6251. }
  6252. if ((Номер_зачетки.HasValue == true)) {
  6253. this.Adapter.UpdateCommand.Parameters[7].Value = ((long)(Номер_зачетки.Value));
  6254. }
  6255. else {
  6256. this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
  6257. }
  6258. if ((Дата_поступления.HasValue == true)) {
  6259. this.Adapter.UpdateCommand.Parameters[8].Value = ((System.DateTime)(Дата_поступления.Value));
  6260. }
  6261. else {
  6262. this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
  6263. }
  6264. if ((Гуппа == null)) {
  6265. this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
  6266. }
  6267. else {
  6268. this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(Гуппа));
  6269. }
  6270. if ((Курс.HasValue == true)) {
  6271. this.Adapter.UpdateCommand.Parameters[10].Value = ((byte)(Курс.Value));
  6272. }
  6273. else {
  6274. this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
  6275. }
  6276. if ((Код_специальности.HasValue == true)) {
  6277. this.Adapter.UpdateCommand.Parameters[11].Value = ((long)(Код_специальности.Value));
  6278. }
  6279. else {
  6280. this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value;
  6281. }
  6282. if ((Очная_форма_обучения.HasValue == true)) {
  6283. this.Adapter.UpdateCommand.Parameters[12].Value = ((bool)(Очная_форма_обучения.Value));
  6284. }
  6285. else {
  6286. this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value;
  6287. }
  6288. this.Adapter.UpdateCommand.Parameters[13].Value = ((long)(Original_код_студента));
  6289. if ((Original_Дата_рождения.HasValue == true)) {
  6290. this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(0));
  6291. this.Adapter.UpdateCommand.Parameters[15].Value = ((System.DateTime)(Original_Дата_рождения.Value));
  6292. }
  6293. else {
  6294. this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(1));
  6295. this.Adapter.UpdateCommand.Parameters[15].Value = global::System.DBNull.Value;
  6296. }
  6297. if ((Original_Номер_зачетки.HasValue == true)) {
  6298. this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(0));
  6299. this.Adapter.UpdateCommand.Parameters[17].Value = ((long)(Original_Номер_зачетки.Value));
  6300. }
  6301. else {
  6302. this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(1));
  6303. this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value;
  6304. }
  6305. if ((Original_Дата_поступления.HasValue == true)) {
  6306. this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(0));
  6307. this.Adapter.UpdateCommand.Parameters[19].Value = ((System.DateTime)(Original_Дата_поступления.Value));
  6308. }
  6309. else {
  6310. this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(1));
  6311. this.Adapter.UpdateCommand.Parameters[19].Value = global::System.DBNull.Value;
  6312. }
  6313. if ((Original_Гуппа == null)) {
  6314. this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
  6315. this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
  6316. }
  6317. else {
  6318. this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
  6319. this.Adapter.UpdateCommand.Parameters[21].Value = ((string)(Original_Гуппа));
  6320. }
  6321. if ((Original_Курс.HasValue == true)) {
  6322. this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(0));
  6323. this.Adapter.UpdateCommand.Parameters[23].Value = ((byte)(Original_Курс.Value));
  6324. }
  6325. else {
  6326. this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(1));
  6327. this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value;
  6328. }
  6329. if ((Original_Код_специальности.HasValue == true)) {
  6330. this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
  6331. this.Adapter.UpdateCommand.Parameters[25].Value = ((long)(Original_Код_специальности.Value));
  6332. }
  6333. else {
  6334. this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
  6335. this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
  6336. }
  6337. if ((Original_Очная_форма_обучения.HasValue == true)) {
  6338. this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(0));
  6339. this.Adapter.UpdateCommand.Parameters[27].Value = ((bool)(Original_Очная_форма_обучения.Value));
  6340. }
  6341. else {
  6342. this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(1));
  6343. this.Adapter.UpdateCommand.Parameters[27].Value = global::System.DBNull.Value;
  6344. }
  6345. this.Adapter.UpdateCommand.Parameters[28].Value = ((long)(код_студента));
  6346. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  6347. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  6348. != global::System.Data.ConnectionState.Open)) {
  6349. this.Adapter.UpdateCommand.Connection.Open();
  6350. }
  6351. try {
  6352. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  6353. return returnValue;
  6354. }
  6355. finally {
  6356. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  6357. this.Adapter.UpdateCommand.Connection.Close();
  6358. }
  6359. }
  6360. }
  6361. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6362. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6363. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6364. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  6365. public virtual int Update(
  6366. string ФИО,
  6367. string Пол,
  6368. global::System.Nullable<global::System.DateTime> Дата_рождения,
  6369. string Родители,
  6370. string Адрес,
  6371. string Телефон,
  6372. string Паспортные_данные,
  6373. global::System.Nullable<long> Номер_зачетки,
  6374. global::System.Nullable<global::System.DateTime> Дата_поступления,
  6375. string Гуппа,
  6376. global::System.Nullable<byte> Курс,
  6377. global::System.Nullable<long> Код_специальности,
  6378. global::System.Nullable<bool> Очная_форма_обучения,
  6379. long Original_код_студента,
  6380. global::System.Nullable<global::System.DateTime> Original_Дата_рождения,
  6381. global::System.Nullable<long> Original_Номер_зачетки,
  6382. global::System.Nullable<global::System.DateTime> Original_Дата_поступления,
  6383. string Original_Гуппа,
  6384. global::System.Nullable<byte> Original_Курс,
  6385. global::System.Nullable<long> Original_Код_специальности,
  6386. global::System.Nullable<bool> Original_Очная_форма_обучения) {
  6387. return this.Update(ФИО, Пол, Дата_рождения, Родители, Адрес, Телефон, Паспортные_данные, Номер_зачетки, Дата_поступления, Гуппа, Курс, Код_специальности, Очная_форма_обучения, Original_код_студента, Original_Дата_рождения, Original_Номер_зачетки, Original_Дата_поступления, Original_Гуппа, Original_Курс, Original_Код_специальности, Original_Очная_форма_обучения, Original_код_студента);
  6388. }
  6389. }
  6390. /// <summary>
  6391. ///Represents the connection and commands used to retrieve and save data.
  6392. ///</summary>
  6393. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6394. [global::System.ComponentModel.ToolboxItem(true)]
  6395. [global::System.ComponentModel.DataObjectAttribute(true)]
  6396. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6397. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6398. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6399. public partial class Запрос_Студенты_ОценкиTableAdapter : global::System.ComponentModel.Component {
  6400. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6401. private global::System.Data.SqlClient.SqlConnection _connection;
  6402. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6403. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6404. private bool _clearBeforeFill;
  6405. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6406. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6407. public Запрос_Студенты_ОценкиTableAdapter() {
  6408. this.ClearBeforeFill = true;
  6409. }
  6410. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6411. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6412. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6413. get {
  6414. if ((this._adapter == null)) {
  6415. this.InitAdapter();
  6416. }
  6417. return this._adapter;
  6418. }
  6419. }
  6420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6422. internal global::System.Data.SqlClient.SqlConnection Connection {
  6423. get {
  6424. if ((this._connection == null)) {
  6425. this.InitConnection();
  6426. }
  6427. return this._connection;
  6428. }
  6429. set {
  6430. this._connection = value;
  6431. if ((this.Adapter.InsertCommand != null)) {
  6432. this.Adapter.InsertCommand.Connection = value;
  6433. }
  6434. if ((this.Adapter.DeleteCommand != null)) {
  6435. this.Adapter.DeleteCommand.Connection = value;
  6436. }
  6437. if ((this.Adapter.UpdateCommand != null)) {
  6438. this.Adapter.UpdateCommand.Connection = value;
  6439. }
  6440. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6441. if ((this.CommandCollection[i] != null)) {
  6442. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6443. }
  6444. }
  6445. }
  6446. }
  6447. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6448. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6449. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6450. get {
  6451. return this._transaction;
  6452. }
  6453. set {
  6454. this._transaction = value;
  6455. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6456. this.CommandCollection[i].Transaction = this._transaction;
  6457. }
  6458. if (((this.Adapter != null)
  6459. && (this.Adapter.DeleteCommand != null))) {
  6460. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6461. }
  6462. if (((this.Adapter != null)
  6463. && (this.Adapter.InsertCommand != null))) {
  6464. this.Adapter.InsertCommand.Transaction = this._transaction;
  6465. }
  6466. if (((this.Adapter != null)
  6467. && (this.Adapter.UpdateCommand != null))) {
  6468. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6469. }
  6470. }
  6471. }
  6472. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6473. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6474. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6475. get {
  6476. if ((this._commandCollection == null)) {
  6477. this.InitCommandCollection();
  6478. }
  6479. return this._commandCollection;
  6480. }
  6481. }
  6482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6484. public bool ClearBeforeFill {
  6485. get {
  6486. return this._clearBeforeFill;
  6487. }
  6488. set {
  6489. this._clearBeforeFill = value;
  6490. }
  6491. }
  6492. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6493. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6494. private void InitAdapter() {
  6495. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6496. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6497. tableMapping.SourceTable = "Table";
  6498. tableMapping.DataSetTable = "Запрос Студенты+Оценки";
  6499. tableMapping.ColumnMappings.Add("ФИО студента", "ФИО студента");
  6500. tableMapping.ColumnMappings.Add("дата предмета первого экзамена", "дата предмета первого экзамена");
  6501. tableMapping.ColumnMappings.Add("наименование предмета первого экзамена", "наименование предмета первого экзамена");
  6502. tableMapping.ColumnMappings.Add("оценка первого экзамена", "оценка первого экзамена");
  6503. tableMapping.ColumnMappings.Add("дата второго экзамена", "дата второго экзамена");
  6504. tableMapping.ColumnMappings.Add("наименование предмета второго экзамена", "наименование предмета второго экзамена");
  6505. tableMapping.ColumnMappings.Add("оценка второго экзамена", "оценка второго экзамена");
  6506. tableMapping.ColumnMappings.Add("дата третьего экзамена", "дата третьего экзамена");
  6507. tableMapping.ColumnMappings.Add("наименование предмета третьего экзамена", "наименование предмета третьего экзамена");
  6508. tableMapping.ColumnMappings.Add("оценка третьего экзамена", "оценка третьего экзамена");
  6509. tableMapping.ColumnMappings.Add("средний балл студента за сессию", "средний балл студента за сессию");
  6510. this._adapter.TableMappings.Add(tableMapping);
  6511. }
  6512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6513. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6514. private void InitConnection() {
  6515. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6516. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  6517. }
  6518. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6519. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6520. private void InitCommandCollection() {
  6521. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6522. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6523. this._commandCollection[0].Connection = this.Connection;
  6524. this._commandCollection[0].CommandText = @"SELECT [ФИО студента], [дата предмета первого экзамена], [наименование предмета первого экзамена], [оценка первого экзамена], [дата второго экзамена], [наименование предмета второго экзамена], [оценка второго экзамена], [дата третьего экзамена], [наименование предмета третьего экзамена], [оценка третьего экзамена], [средний балл студента за сессию] FROM dbo.[Запрос Студенты+Оценки]";
  6525. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6526. }
  6527. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6528. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6529. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6530. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6531. public virtual int Fill(_Is_32_podrezovDataSet._Запрос_Студенты_ОценкиDataTable dataTable) {
  6532. this.Adapter.SelectCommand = this.CommandCollection[0];
  6533. if ((this.ClearBeforeFill == true)) {
  6534. dataTable.Clear();
  6535. }
  6536. int returnValue = this.Adapter.Fill(dataTable);
  6537. return returnValue;
  6538. }
  6539. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6540. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6541. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6542. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6543. public virtual _Is_32_podrezovDataSet._Запрос_Студенты_ОценкиDataTable GetData() {
  6544. this.Adapter.SelectCommand = this.CommandCollection[0];
  6545. _Is_32_podrezovDataSet._Запрос_Студенты_ОценкиDataTable dataTable = new _Is_32_podrezovDataSet._Запрос_Студенты_ОценкиDataTable();
  6546. this.Adapter.Fill(dataTable);
  6547. return dataTable;
  6548. }
  6549. }
  6550. /// <summary>
  6551. ///Represents the connection and commands used to retrieve and save data.
  6552. ///</summary>
  6553. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6554. [global::System.ComponentModel.ToolboxItem(true)]
  6555. [global::System.ComponentModel.DataObjectAttribute(true)]
  6556. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6557. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6558. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6559. public partial class запрос_студенты_специальностиTableAdapter : global::System.ComponentModel.Component {
  6560. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6561. private global::System.Data.SqlClient.SqlConnection _connection;
  6562. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6563. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6564. private bool _clearBeforeFill;
  6565. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6566. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6567. public запрос_студенты_специальностиTableAdapter() {
  6568. this.ClearBeforeFill = true;
  6569. }
  6570. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6571. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6572. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6573. get {
  6574. if ((this._adapter == null)) {
  6575. this.InitAdapter();
  6576. }
  6577. return this._adapter;
  6578. }
  6579. }
  6580. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6581. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6582. internal global::System.Data.SqlClient.SqlConnection Connection {
  6583. get {
  6584. if ((this._connection == null)) {
  6585. this.InitConnection();
  6586. }
  6587. return this._connection;
  6588. }
  6589. set {
  6590. this._connection = value;
  6591. if ((this.Adapter.InsertCommand != null)) {
  6592. this.Adapter.InsertCommand.Connection = value;
  6593. }
  6594. if ((this.Adapter.DeleteCommand != null)) {
  6595. this.Adapter.DeleteCommand.Connection = value;
  6596. }
  6597. if ((this.Adapter.UpdateCommand != null)) {
  6598. this.Adapter.UpdateCommand.Connection = value;
  6599. }
  6600. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6601. if ((this.CommandCollection[i] != null)) {
  6602. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6603. }
  6604. }
  6605. }
  6606. }
  6607. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6608. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6609. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6610. get {
  6611. return this._transaction;
  6612. }
  6613. set {
  6614. this._transaction = value;
  6615. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6616. this.CommandCollection[i].Transaction = this._transaction;
  6617. }
  6618. if (((this.Adapter != null)
  6619. && (this.Adapter.DeleteCommand != null))) {
  6620. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6621. }
  6622. if (((this.Adapter != null)
  6623. && (this.Adapter.InsertCommand != null))) {
  6624. this.Adapter.InsertCommand.Transaction = this._transaction;
  6625. }
  6626. if (((this.Adapter != null)
  6627. && (this.Adapter.UpdateCommand != null))) {
  6628. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6629. }
  6630. }
  6631. }
  6632. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6633. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6634. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6635. get {
  6636. if ((this._commandCollection == null)) {
  6637. this.InitCommandCollection();
  6638. }
  6639. return this._commandCollection;
  6640. }
  6641. }
  6642. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6643. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6644. public bool ClearBeforeFill {
  6645. get {
  6646. return this._clearBeforeFill;
  6647. }
  6648. set {
  6649. this._clearBeforeFill = value;
  6650. }
  6651. }
  6652. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6653. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6654. private void InitAdapter() {
  6655. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6656. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6657. tableMapping.SourceTable = "Table";
  6658. tableMapping.DataSetTable = "запрос студенты+специальности";
  6659. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  6660. tableMapping.ColumnMappings.Add("Курс", "Курс");
  6661. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  6662. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  6663. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  6664. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  6665. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  6666. tableMapping.ColumnMappings.Add("Родители", "Родители");
  6667. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  6668. tableMapping.ColumnMappings.Add("Пол", "Пол");
  6669. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  6670. tableMapping.ColumnMappings.Add("Гуппа", "Гуппа");
  6671. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  6672. tableMapping.ColumnMappings.Add("Наименование специальности", "Наименование специальности");
  6673. this._adapter.TableMappings.Add(tableMapping);
  6674. }
  6675. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6676. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6677. private void InitConnection() {
  6678. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6679. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  6680. }
  6681. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6682. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6683. private void InitCommandCollection() {
  6684. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6685. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6686. this._commandCollection[0].Connection = this.Connection;
  6687. this._commandCollection[0].CommandText = "SELECT [Очная форма обучения], Курс, [Дата поступления], [Номер зачетки], [Паспор" +
  6688. "тные данные], Телефон, Адрес, Родители, [Дата рождения], Пол, ФИО, Гуппа, [Описа" +
  6689. "ние специальности], [Наименование специальности] FROM dbo.[запрос студенты+специ" +
  6690. "альности]";
  6691. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6692. }
  6693. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6694. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6695. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6696. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6697. public virtual int Fill(_Is_32_podrezovDataSet._запрос_студенты_специальностиDataTable dataTable) {
  6698. this.Adapter.SelectCommand = this.CommandCollection[0];
  6699. if ((this.ClearBeforeFill == true)) {
  6700. dataTable.Clear();
  6701. }
  6702. int returnValue = this.Adapter.Fill(dataTable);
  6703. return returnValue;
  6704. }
  6705. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6706. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6707. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6708. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6709. public virtual _Is_32_podrezovDataSet._запрос_студенты_специальностиDataTable GetData() {
  6710. this.Adapter.SelectCommand = this.CommandCollection[0];
  6711. _Is_32_podrezovDataSet._запрос_студенты_специальностиDataTable dataTable = new _Is_32_podrezovDataSet._запрос_студенты_специальностиDataTable();
  6712. this.Adapter.Fill(dataTable);
  6713. return dataTable;
  6714. }
  6715. }
  6716. /// <summary>
  6717. ///Represents the connection and commands used to retrieve and save data.
  6718. ///</summary>
  6719. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6720. [global::System.ComponentModel.ToolboxItem(true)]
  6721. [global::System.ComponentModel.DataObjectAttribute(true)]
  6722. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  6723. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6724. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6725. public partial class фильтр_ММTableAdapter : global::System.ComponentModel.Component {
  6726. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  6727. private global::System.Data.SqlClient.SqlConnection _connection;
  6728. private global::System.Data.SqlClient.SqlTransaction _transaction;
  6729. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  6730. private bool _clearBeforeFill;
  6731. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6732. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6733. public фильтр_ММTableAdapter() {
  6734. this.ClearBeforeFill = true;
  6735. }
  6736. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6737. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6738. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  6739. get {
  6740. if ((this._adapter == null)) {
  6741. this.InitAdapter();
  6742. }
  6743. return this._adapter;
  6744. }
  6745. }
  6746. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6747. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6748. internal global::System.Data.SqlClient.SqlConnection Connection {
  6749. get {
  6750. if ((this._connection == null)) {
  6751. this.InitConnection();
  6752. }
  6753. return this._connection;
  6754. }
  6755. set {
  6756. this._connection = value;
  6757. if ((this.Adapter.InsertCommand != null)) {
  6758. this.Adapter.InsertCommand.Connection = value;
  6759. }
  6760. if ((this.Adapter.DeleteCommand != null)) {
  6761. this.Adapter.DeleteCommand.Connection = value;
  6762. }
  6763. if ((this.Adapter.UpdateCommand != null)) {
  6764. this.Adapter.UpdateCommand.Connection = value;
  6765. }
  6766. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6767. if ((this.CommandCollection[i] != null)) {
  6768. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  6769. }
  6770. }
  6771. }
  6772. }
  6773. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6774. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6775. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  6776. get {
  6777. return this._transaction;
  6778. }
  6779. set {
  6780. this._transaction = value;
  6781. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  6782. this.CommandCollection[i].Transaction = this._transaction;
  6783. }
  6784. if (((this.Adapter != null)
  6785. && (this.Adapter.DeleteCommand != null))) {
  6786. this.Adapter.DeleteCommand.Transaction = this._transaction;
  6787. }
  6788. if (((this.Adapter != null)
  6789. && (this.Adapter.InsertCommand != null))) {
  6790. this.Adapter.InsertCommand.Transaction = this._transaction;
  6791. }
  6792. if (((this.Adapter != null)
  6793. && (this.Adapter.UpdateCommand != null))) {
  6794. this.Adapter.UpdateCommand.Transaction = this._transaction;
  6795. }
  6796. }
  6797. }
  6798. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6800. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  6801. get {
  6802. if ((this._commandCollection == null)) {
  6803. this.InitCommandCollection();
  6804. }
  6805. return this._commandCollection;
  6806. }
  6807. }
  6808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6810. public bool ClearBeforeFill {
  6811. get {
  6812. return this._clearBeforeFill;
  6813. }
  6814. set {
  6815. this._clearBeforeFill = value;
  6816. }
  6817. }
  6818. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6819. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6820. private void InitAdapter() {
  6821. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  6822. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  6823. tableMapping.SourceTable = "Table";
  6824. tableMapping.DataSetTable = "фильтр ММ";
  6825. tableMapping.ColumnMappings.Add("Наименование специальности", "Наименование специальности");
  6826. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  6827. tableMapping.ColumnMappings.Add("Гуппа", "Гуппа");
  6828. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  6829. tableMapping.ColumnMappings.Add("Пол", "Пол");
  6830. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  6831. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  6832. tableMapping.ColumnMappings.Add("Курс", "Курс");
  6833. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  6834. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  6835. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  6836. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  6837. tableMapping.ColumnMappings.Add("Родители", "Родители");
  6838. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  6839. this._adapter.TableMappings.Add(tableMapping);
  6840. }
  6841. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6842. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6843. private void InitConnection() {
  6844. this._connection = new global::System.Data.SqlClient.SqlConnection();
  6845. this._connection.ConnectionString = global::IS31GrankinStudents.Properties.Settings.Default.Is_32_podrezovConnectionString;
  6846. }
  6847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6849. private void InitCommandCollection() {
  6850. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  6851. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  6852. this._commandCollection[0].Connection = this.Connection;
  6853. this._commandCollection[0].CommandText = "SELECT [Наименование специальности], [Описание специальности], Гуппа, ФИО, Пол, А" +
  6854. "дрес, [Паспортные данные], Курс, [Очная форма обучения], [Дата поступления], [Но" +
  6855. "мер зачетки], Телефон, Родители, [Дата рождения] FROM dbo.[фильтр ММ]";
  6856. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  6857. }
  6858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6859. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6860. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6861. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  6862. public virtual int Fill(_Is_32_podrezovDataSet.фильтр_ММDataTable dataTable) {
  6863. this.Adapter.SelectCommand = this.CommandCollection[0];
  6864. if ((this.ClearBeforeFill == true)) {
  6865. dataTable.Clear();
  6866. }
  6867. int returnValue = this.Adapter.Fill(dataTable);
  6868. return returnValue;
  6869. }
  6870. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6871. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6872. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  6873. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  6874. public virtual _Is_32_podrezovDataSet.фильтр_ММDataTable GetData() {
  6875. this.Adapter.SelectCommand = this.CommandCollection[0];
  6876. _Is_32_podrezovDataSet.фильтр_ММDataTable dataTable = new _Is_32_podrezovDataSet.фильтр_ММDataTable();
  6877. this.Adapter.Fill(dataTable);
  6878. return dataTable;
  6879. }
  6880. }
  6881. /// <summary>
  6882. ///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
  6883. ///</summary>
  6884. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  6885. [global::System.ComponentModel.ToolboxItem(true)]
  6886. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerDesigner, Microsoft.VSD" +
  6887. "esigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  6888. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapterManager")]
  6889. public partial class TableAdapterManager : global::System.ComponentModel.Component {
  6890. private UpdateOrderOption _updateOrder;
  6891. private оценкиTableAdapter _оценкиTableAdapter;
  6892. private предметыTableAdapter _предметыTableAdapter;
  6893. private специальностиTableAdapter _специальностиTableAdapter;
  6894. private студентыTableAdapter _студентыTableAdapter;
  6895. private bool _backupDataSetBeforeUpdate;
  6896. private global::System.Data.IDbConnection _connection;
  6897. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6898. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6899. public UpdateOrderOption UpdateOrder {
  6900. get {
  6901. return this._updateOrder;
  6902. }
  6903. set {
  6904. this._updateOrder = value;
  6905. }
  6906. }
  6907. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6908. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6909. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  6910. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  6911. "a", "System.Drawing.Design.UITypeEditor")]
  6912. public оценкиTableAdapter оценкиTableAdapter {
  6913. get {
  6914. return this._оценкиTableAdapter;
  6915. }
  6916. set {
  6917. this._оценкиTableAdapter = value;
  6918. }
  6919. }
  6920. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6921. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6922. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  6923. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  6924. "a", "System.Drawing.Design.UITypeEditor")]
  6925. public предметыTableAdapter предметыTableAdapter {
  6926. get {
  6927. return this._предметыTableAdapter;
  6928. }
  6929. set {
  6930. this._предметыTableAdapter = value;
  6931. }
  6932. }
  6933. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6934. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6935. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  6936. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  6937. "a", "System.Drawing.Design.UITypeEditor")]
  6938. public специальностиTableAdapter специальностиTableAdapter {
  6939. get {
  6940. return this._специальностиTableAdapter;
  6941. }
  6942. set {
  6943. this._специальностиTableAdapter = value;
  6944. }
  6945. }
  6946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6948. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  6949. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  6950. "a", "System.Drawing.Design.UITypeEditor")]
  6951. public студентыTableAdapter студентыTableAdapter {
  6952. get {
  6953. return this._студентыTableAdapter;
  6954. }
  6955. set {
  6956. this._студентыTableAdapter = value;
  6957. }
  6958. }
  6959. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6960. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6961. public bool BackupDataSetBeforeUpdate {
  6962. get {
  6963. return this._backupDataSetBeforeUpdate;
  6964. }
  6965. set {
  6966. this._backupDataSetBeforeUpdate = value;
  6967. }
  6968. }
  6969. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6970. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6971. [global::System.ComponentModel.Browsable(false)]
  6972. public global::System.Data.IDbConnection Connection {
  6973. get {
  6974. if ((this._connection != null)) {
  6975. return this._connection;
  6976. }
  6977. if (((this._оценкиTableAdapter != null)
  6978. && (this._оценкиTableAdapter.Connection != null))) {
  6979. return this._оценкиTableAdapter.Connection;
  6980. }
  6981. if (((this._предметыTableAdapter != null)
  6982. && (this._предметыTableAdapter.Connection != null))) {
  6983. return this._предметыTableAdapter.Connection;
  6984. }
  6985. if (((this._специальностиTableAdapter != null)
  6986. && (this._специальностиTableAdapter.Connection != null))) {
  6987. return this._специальностиTableAdapter.Connection;
  6988. }
  6989. if (((this._студентыTableAdapter != null)
  6990. && (this._студентыTableAdapter.Connection != null))) {
  6991. return this._студентыTableAdapter.Connection;
  6992. }
  6993. return null;
  6994. }
  6995. set {
  6996. this._connection = value;
  6997. }
  6998. }
  6999. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7000. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7001. [global::System.ComponentModel.Browsable(false)]
  7002. public int TableAdapterInstanceCount {
  7003. get {
  7004. int count = 0;
  7005. if ((this._оценкиTableAdapter != null)) {
  7006. count = (count + 1);
  7007. }
  7008. if ((this._предметыTableAdapter != null)) {
  7009. count = (count + 1);
  7010. }
  7011. if ((this._специальностиTableAdapter != null)) {
  7012. count = (count + 1);
  7013. }
  7014. if ((this._студентыTableAdapter != null)) {
  7015. count = (count + 1);
  7016. }
  7017. return count;
  7018. }
  7019. }
  7020. /// <summary>
  7021. ///Update rows in top-down order.
  7022. ///</summary>
  7023. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7024. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7025. private int UpdateUpdatedRows(_Is_32_podrezovDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  7026. int result = 0;
  7027. if ((this._оценкиTableAdapter != null)) {
  7028. global::System.Data.DataRow[] updatedRows = dataSet.оценки.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  7029. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  7030. if (((updatedRows != null)
  7031. && (0 < updatedRows.Length))) {
  7032. result = (result + this._оценкиTableAdapter.Update(updatedRows));
  7033. allChangedRows.AddRange(updatedRows);
  7034. }
  7035. }
  7036. if ((this._предметыTableAdapter != null)) {
  7037. global::System.Data.DataRow[] updatedRows = dataSet.предметы.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  7038. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  7039. if (((updatedRows != null)
  7040. && (0 < updatedRows.Length))) {
  7041. result = (result + this._предметыTableAdapter.Update(updatedRows));
  7042. allChangedRows.AddRange(updatedRows);
  7043. }
  7044. }
  7045. if ((this._специальностиTableAdapter != null)) {
  7046. global::System.Data.DataRow[] updatedRows = dataSet.специальности.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  7047. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  7048. if (((updatedRows != null)
  7049. && (0 < updatedRows.Length))) {
  7050. result = (result + this._специальностиTableAdapter.Update(updatedRows));
  7051. allChangedRows.AddRange(updatedRows);
  7052. }
  7053. }
  7054. if ((this._студентыTableAdapter != null)) {
  7055. global::System.Data.DataRow[] updatedRows = dataSet.студенты.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  7056. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  7057. if (((updatedRows != null)
  7058. && (0 < updatedRows.Length))) {
  7059. result = (result + this._студентыTableAdapter.Update(updatedRows));
  7060. allChangedRows.AddRange(updatedRows);
  7061. }
  7062. }
  7063. return result;
  7064. }
  7065. /// <summary>
  7066. ///Insert rows in top-down order.
  7067. ///</summary>
  7068. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7069. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7070. private int UpdateInsertedRows(_Is_32_podrezovDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  7071. int result = 0;
  7072. if ((this._оценкиTableAdapter != null)) {
  7073. global::System.Data.DataRow[] addedRows = dataSet.оценки.Select(null, null, global::System.Data.DataViewRowState.Added);
  7074. if (((addedRows != null)
  7075. && (0 < addedRows.Length))) {
  7076. result = (result + this._оценкиTableAdapter.Update(addedRows));
  7077. allAddedRows.AddRange(addedRows);
  7078. }
  7079. }
  7080. if ((this._предметыTableAdapter != null)) {
  7081. global::System.Data.DataRow[] addedRows = dataSet.предметы.Select(null, null, global::System.Data.DataViewRowState.Added);
  7082. if (((addedRows != null)
  7083. && (0 < addedRows.Length))) {
  7084. result = (result + this._предметыTableAdapter.Update(addedRows));
  7085. allAddedRows.AddRange(addedRows);
  7086. }
  7087. }
  7088. if ((this._специальностиTableAdapter != null)) {
  7089. global::System.Data.DataRow[] addedRows = dataSet.специальности.Select(null, null, global::System.Data.DataViewRowState.Added);
  7090. if (((addedRows != null)
  7091. && (0 < addedRows.Length))) {
  7092. result = (result + this._специальностиTableAdapter.Update(addedRows));
  7093. allAddedRows.AddRange(addedRows);
  7094. }
  7095. }
  7096. if ((this._студентыTableAdapter != null)) {
  7097. global::System.Data.DataRow[] addedRows = dataSet.студенты.Select(null, null, global::System.Data.DataViewRowState.Added);
  7098. if (((addedRows != null)
  7099. && (0 < addedRows.Length))) {
  7100. result = (result + this._студентыTableAdapter.Update(addedRows));
  7101. allAddedRows.AddRange(addedRows);
  7102. }
  7103. }
  7104. return result;
  7105. }
  7106. /// <summary>
  7107. ///Delete rows in bottom-up order.
  7108. ///</summary>
  7109. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7110. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7111. private int UpdateDeletedRows(_Is_32_podrezovDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
  7112. int result = 0;
  7113. if ((this._студентыTableAdapter != null)) {
  7114. global::System.Data.DataRow[] deletedRows = dataSet.студенты.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  7115. if (((deletedRows != null)
  7116. && (0 < deletedRows.Length))) {
  7117. result = (result + this._студентыTableAdapter.Update(deletedRows));
  7118. allChangedRows.AddRange(deletedRows);
  7119. }
  7120. }
  7121. if ((this._специальностиTableAdapter != null)) {
  7122. global::System.Data.DataRow[] deletedRows = dataSet.специальности.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  7123. if (((deletedRows != null)
  7124. && (0 < deletedRows.Length))) {
  7125. result = (result + this._специальностиTableAdapter.Update(deletedRows));
  7126. allChangedRows.AddRange(deletedRows);
  7127. }
  7128. }
  7129. if ((this._предметыTableAdapter != null)) {
  7130. global::System.Data.DataRow[] deletedRows = dataSet.предметы.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  7131. if (((deletedRows != null)
  7132. && (0 < deletedRows.Length))) {
  7133. result = (result + this._предметыTableAdapter.Update(deletedRows));
  7134. allChangedRows.AddRange(deletedRows);
  7135. }
  7136. }
  7137. if ((this._оценкиTableAdapter != null)) {
  7138. global::System.Data.DataRow[] deletedRows = dataSet.оценки.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  7139. if (((deletedRows != null)
  7140. && (0 < deletedRows.Length))) {
  7141. result = (result + this._оценкиTableAdapter.Update(deletedRows));
  7142. allChangedRows.AddRange(deletedRows);
  7143. }
  7144. }
  7145. return result;
  7146. }
  7147. /// <summary>
  7148. ///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
  7149. ///</summary>
  7150. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7151. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7152. private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  7153. if (((updatedRows == null)
  7154. || (updatedRows.Length < 1))) {
  7155. return updatedRows;
  7156. }
  7157. if (((allAddedRows == null)
  7158. || (allAddedRows.Count < 1))) {
  7159. return updatedRows;
  7160. }
  7161. global::System.Collections.Generic.List<global::System.Data.DataRow> realUpdatedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  7162. for (int i = 0; (i < updatedRows.Length); i = (i + 1)) {
  7163. global::System.Data.DataRow row = updatedRows[i];
  7164. if ((allAddedRows.Contains(row) == false)) {
  7165. realUpdatedRows.Add(row);
  7166. }
  7167. }
  7168. return realUpdatedRows.ToArray();
  7169. }
  7170. /// <summary>
  7171. ///Update all changes to the dataset.
  7172. ///</summary>
  7173. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7174. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7175. public virtual int UpdateAll(_Is_32_podrezovDataSet dataSet) {
  7176. if ((dataSet == null)) {
  7177. throw new global::System.ArgumentNullException("dataSet");
  7178. }
  7179. if ((dataSet.HasChanges() == false)) {
  7180. return 0;
  7181. }
  7182. if (((this._оценкиTableAdapter != null)
  7183. && (this.MatchTableAdapterConnection(this._оценкиTableAdapter.Connection) == false))) {
  7184. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  7185. "r, должны использовать одинаковую строку подключения.");
  7186. }
  7187. if (((this._предметыTableAdapter != null)
  7188. && (this.MatchTableAdapterConnection(this._предметыTableAdapter.Connection) == false))) {
  7189. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  7190. "r, должны использовать одинаковую строку подключения.");
  7191. }
  7192. if (((this._специальностиTableAdapter != null)
  7193. && (this.MatchTableAdapterConnection(this._специальностиTableAdapter.Connection) == false))) {
  7194. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  7195. "r, должны использовать одинаковую строку подключения.");
  7196. }
  7197. if (((this._студентыTableAdapter != null)
  7198. && (this.MatchTableAdapterConnection(this._студентыTableAdapter.Connection) == false))) {
  7199. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  7200. "r, должны использовать одинаковую строку подключения.");
  7201. }
  7202. global::System.Data.IDbConnection workConnection = this.Connection;
  7203. if ((workConnection == null)) {
  7204. throw new global::System.ApplicationException("TableAdapterManager не содержит сведений о подключении. Укажите для каждого адапт" +
  7205. "ера таблицы TableAdapterManager допустимый экземпляр адаптера таблицы.");
  7206. }
  7207. bool workConnOpened = false;
  7208. if (((workConnection.State & global::System.Data.ConnectionState.Broken)
  7209. == global::System.Data.ConnectionState.Broken)) {
  7210. workConnection.Close();
  7211. }
  7212. if ((workConnection.State == global::System.Data.ConnectionState.Closed)) {
  7213. workConnection.Open();
  7214. workConnOpened = true;
  7215. }
  7216. global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
  7217. if ((workTransaction == null)) {
  7218. throw new global::System.ApplicationException("Не удается начать транзакцию. Текущее соединение данных не поддерживает транзакци" +
  7219. "и или текущее состояние не позволяет начать транзакцию.");
  7220. }
  7221. global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  7222. global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  7223. global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter> adaptersWithAcceptChangesDuringUpdate = new global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter>();
  7224. global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection> revertConnections = new global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection>();
  7225. int result = 0;
  7226. global::System.Data.DataSet backupDataSet = null;
  7227. if (this.BackupDataSetBeforeUpdate) {
  7228. backupDataSet = new global::System.Data.DataSet();
  7229. backupDataSet.Merge(dataSet);
  7230. }
  7231. try {
  7232. // ---- Prepare for update -----------
  7233. //
  7234. if ((this._оценкиTableAdapter != null)) {
  7235. revertConnections.Add(this._оценкиTableAdapter, this._оценкиTableAdapter.Connection);
  7236. this._оценкиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  7237. this._оценкиTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  7238. if (this._оценкиTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  7239. this._оценкиTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  7240. adaptersWithAcceptChangesDuringUpdate.Add(this._оценкиTableAdapter.Adapter);
  7241. }
  7242. }
  7243. if ((this._предметыTableAdapter != null)) {
  7244. revertConnections.Add(this._предметыTableAdapter, this._предметыTableAdapter.Connection);
  7245. this._предметыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  7246. this._предметыTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  7247. if (this._предметыTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  7248. this._предметыTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  7249. adaptersWithAcceptChangesDuringUpdate.Add(this._предметыTableAdapter.Adapter);
  7250. }
  7251. }
  7252. if ((this._специальностиTableAdapter != null)) {
  7253. revertConnections.Add(this._специальностиTableAdapter, this._специальностиTableAdapter.Connection);
  7254. this._специальностиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  7255. this._специальностиTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  7256. if (this._специальностиTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  7257. this._специальностиTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  7258. adaptersWithAcceptChangesDuringUpdate.Add(this._специальностиTableAdapter.Adapter);
  7259. }
  7260. }
  7261. if ((this._студентыTableAdapter != null)) {
  7262. revertConnections.Add(this._студентыTableAdapter, this._студентыTableAdapter.Connection);
  7263. this._студентыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  7264. this._студентыTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  7265. if (this._студентыTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  7266. this._студентыTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  7267. adaptersWithAcceptChangesDuringUpdate.Add(this._студентыTableAdapter.Adapter);
  7268. }
  7269. }
  7270. //
  7271. //---- Perform updates -----------
  7272. //
  7273. if ((this.UpdateOrder == UpdateOrderOption.UpdateInsertDelete)) {
  7274. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  7275. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  7276. }
  7277. else {
  7278. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  7279. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  7280. }
  7281. result = (result + this.UpdateDeletedRows(dataSet, allChangedRows));
  7282. //
  7283. //---- Commit updates -----------
  7284. //
  7285. workTransaction.Commit();
  7286. if ((0 < allAddedRows.Count)) {
  7287. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  7288. allAddedRows.CopyTo(rows);
  7289. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  7290. global::System.Data.DataRow row = rows[i];
  7291. row.AcceptChanges();
  7292. }
  7293. }
  7294. if ((0 < allChangedRows.Count)) {
  7295. global::System.Data.DataRow[] rows = new System.Data.DataRow[allChangedRows.Count];
  7296. allChangedRows.CopyTo(rows);
  7297. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  7298. global::System.Data.DataRow row = rows[i];
  7299. row.AcceptChanges();
  7300. }
  7301. }
  7302. }
  7303. catch (global::System.Exception ex) {
  7304. workTransaction.Rollback();
  7305. // ---- Restore the dataset -----------
  7306. if (this.BackupDataSetBeforeUpdate) {
  7307. global::System.Diagnostics.Debug.Assert((backupDataSet != null));
  7308. dataSet.Clear();
  7309. dataSet.Merge(backupDataSet);
  7310. }
  7311. else {
  7312. if ((0 < allAddedRows.Count)) {
  7313. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  7314. allAddedRows.CopyTo(rows);
  7315. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  7316. global::System.Data.DataRow row = rows[i];
  7317. row.AcceptChanges();
  7318. row.SetAdded();
  7319. }
  7320. }
  7321. }
  7322. throw ex;
  7323. }
  7324. finally {
  7325. if (workConnOpened) {
  7326. workConnection.Close();
  7327. }
  7328. if ((this._оценкиTableAdapter != null)) {
  7329. this._оценкиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._оценкиTableAdapter]));
  7330. this._оценкиTableAdapter.Transaction = null;
  7331. }
  7332. if ((this._предметыTableAdapter != null)) {
  7333. this._предметыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._предметыTableAdapter]));
  7334. this._предметыTableAdapter.Transaction = null;
  7335. }
  7336. if ((this._специальностиTableAdapter != null)) {
  7337. this._специальностиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._специальностиTableAdapter]));
  7338. this._специальностиTableAdapter.Transaction = null;
  7339. }
  7340. if ((this._студентыTableAdapter != null)) {
  7341. this._студентыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._студентыTableAdapter]));
  7342. this._студентыTableAdapter.Transaction = null;
  7343. }
  7344. if ((0 < adaptersWithAcceptChangesDuringUpdate.Count)) {
  7345. global::System.Data.Common.DataAdapter[] adapters = new System.Data.Common.DataAdapter[adaptersWithAcceptChangesDuringUpdate.Count];
  7346. adaptersWithAcceptChangesDuringUpdate.CopyTo(adapters);
  7347. for (int i = 0; (i < adapters.Length); i = (i + 1)) {
  7348. global::System.Data.Common.DataAdapter adapter = adapters[i];
  7349. adapter.AcceptChangesDuringUpdate = true;
  7350. }
  7351. }
  7352. }
  7353. return result;
  7354. }
  7355. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7356. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7357. protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
  7358. global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
  7359. }
  7360. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7361. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7362. protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) {
  7363. if ((this._connection != null)) {
  7364. return true;
  7365. }
  7366. if (((this.Connection == null)
  7367. || (inputConnection == null))) {
  7368. return true;
  7369. }
  7370. if (string.Equals(this.Connection.ConnectionString, inputConnection.ConnectionString, global::System.StringComparison.Ordinal)) {
  7371. return true;
  7372. }
  7373. return false;
  7374. }
  7375. /// <summary>
  7376. ///Update Order Option
  7377. ///</summary>
  7378. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7379. public enum UpdateOrderOption {
  7380. InsertUpdateDelete = 0,
  7381. UpdateInsertDelete = 1,
  7382. }
  7383. /// <summary>
  7384. ///Used to sort self-referenced table's rows
  7385. ///</summary>
  7386. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7387. private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
  7388. private global::System.Data.DataRelation _relation;
  7389. private int _childFirst;
  7390. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7391. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7392. internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) {
  7393. this._relation = relation;
  7394. if (childFirst) {
  7395. this._childFirst = -1;
  7396. }
  7397. else {
  7398. this._childFirst = 1;
  7399. }
  7400. }
  7401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7403. private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) {
  7404. global::System.Diagnostics.Debug.Assert((row != null));
  7405. global::System.Data.DataRow root = row;
  7406. distance = 0;
  7407. 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>();
  7408. traversedRows[row] = row;
  7409. global::System.Data.DataRow parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  7410. for (
  7411. ; ((parent != null)
  7412. && (traversedRows.ContainsKey(parent) == false));
  7413. ) {
  7414. distance = (distance + 1);
  7415. root = parent;
  7416. traversedRows[parent] = parent;
  7417. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  7418. }
  7419. if ((distance == 0)) {
  7420. traversedRows.Clear();
  7421. traversedRows[row] = row;
  7422. parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  7423. for (
  7424. ; ((parent != null)
  7425. && (traversedRows.ContainsKey(parent) == false));
  7426. ) {
  7427. distance = (distance + 1);
  7428. root = parent;
  7429. traversedRows[parent] = parent;
  7430. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  7431. }
  7432. }
  7433. return root;
  7434. }
  7435. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7436. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7437. public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) {
  7438. if (object.ReferenceEquals(row1, row2)) {
  7439. return 0;
  7440. }
  7441. if ((row1 == null)) {
  7442. return -1;
  7443. }
  7444. if ((row2 == null)) {
  7445. return 1;
  7446. }
  7447. int distance1 = 0;
  7448. global::System.Data.DataRow root1 = this.GetRoot(row1, out distance1);
  7449. int distance2 = 0;
  7450. global::System.Data.DataRow root2 = this.GetRoot(row2, out distance2);
  7451. if (object.ReferenceEquals(root1, root2)) {
  7452. return (this._childFirst * distance1.CompareTo(distance2));
  7453. }
  7454. else {
  7455. global::System.Diagnostics.Debug.Assert(((root1.Table != null)
  7456. && (root2.Table != null)));
  7457. if ((root1.Table.Rows.IndexOf(root1) < root2.Table.Rows.IndexOf(root2))) {
  7458. return -1;
  7459. }
  7460. else {
  7461. return 1;
  7462. }
  7463. }
  7464. }
  7465. }
  7466. }
  7467. }
  7468. #pragma warning restore 1591