РожковDataSet.Designer.cs 820 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан программой.
  4. // Исполняемая версия:4.0.30319.42000
  5. //
  6. // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
  7. // повторной генерации кода.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. #pragma warning disable 1591
  11. namespace WindowsFormsApp3 {
  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("РожковDataSet")]
  20. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
  21. public partial class РожковDataSet : global::System.Data.DataSet {
  22. private ОценкиDataTable tableОценки;
  23. private ПредметыDataTable tableПредметы;
  24. private СпециальностиDataTable tableСпециальности;
  25. private СтудентыDataTable tableСтуденты;
  26. private _Запрос_Студенты_ОценкиDataTable _tableЗапрос_Студенты_Оценки;
  27. private _Запрос_Студенты_СпециальностиDataTable _tableЗапрос_Студенты_Специальности;
  28. private Фильтр_ММDataTable tableФильтр_ММ;
  29. private Фильтр_ПИDataTable tableФильтр_ПИ;
  30. private Отображение_студентов_по_возрастуDataTable tableОтображение_студентов_по_возрасту;
  31. private Отображение_студентов_по_среднему_баллуDataTable tableОтображение_студентов_по_среднему_баллу;
  32. private Отображение_студентов_по_ФИОDataTable tableОтображение_студентов_по_ФИО;
  33. private Среднее_трёх_величинDataTable tableСреднее_трёх_величин;
  34. private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  35. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  36. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  37. public РожковDataSet() {
  38. this.BeginInit();
  39. this.InitClass();
  40. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  41. base.Tables.CollectionChanged += schemaChangedHandler;
  42. base.Relations.CollectionChanged += schemaChangedHandler;
  43. this.EndInit();
  44. }
  45. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  46. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  47. protected РожковDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  48. base(info, context, false) {
  49. if ((this.IsBinarySerialized(info, context) == true)) {
  50. this.InitVars(false);
  51. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  52. this.Tables.CollectionChanged += schemaChangedHandler1;
  53. this.Relations.CollectionChanged += schemaChangedHandler1;
  54. return;
  55. }
  56. string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
  57. if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  58. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  59. ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  60. if ((ds.Tables["Оценки"] != null)) {
  61. base.Tables.Add(new ОценкиDataTable(ds.Tables["Оценки"]));
  62. }
  63. if ((ds.Tables["Предметы"] != null)) {
  64. base.Tables.Add(new ПредметыDataTable(ds.Tables["Предметы"]));
  65. }
  66. if ((ds.Tables["Специальности"] != null)) {
  67. base.Tables.Add(new СпециальностиDataTable(ds.Tables["Специальности"]));
  68. }
  69. if ((ds.Tables["Студенты"] != null)) {
  70. base.Tables.Add(new СтудентыDataTable(ds.Tables["Студенты"]));
  71. }
  72. if ((ds.Tables["Запрос Студенты+Оценки"] != null)) {
  73. base.Tables.Add(new _Запрос_Студенты_ОценкиDataTable(ds.Tables["Запрос Студенты+Оценки"]));
  74. }
  75. if ((ds.Tables["Запрос Студенты+Специальности"] != null)) {
  76. base.Tables.Add(new _Запрос_Студенты_СпециальностиDataTable(ds.Tables["Запрос Студенты+Специальности"]));
  77. }
  78. if ((ds.Tables["Фильтр ММ"] != null)) {
  79. base.Tables.Add(new Фильтр_ММDataTable(ds.Tables["Фильтр ММ"]));
  80. }
  81. if ((ds.Tables["Фильтр ПИ"] != null)) {
  82. base.Tables.Add(new Фильтр_ПИDataTable(ds.Tables["Фильтр ПИ"]));
  83. }
  84. if ((ds.Tables["Отображение студентов по возрасту"] != null)) {
  85. base.Tables.Add(new Отображение_студентов_по_возрастуDataTable(ds.Tables["Отображение студентов по возрасту"]));
  86. }
  87. if ((ds.Tables["Отображение студентов по среднему баллу"] != null)) {
  88. base.Tables.Add(new Отображение_студентов_по_среднему_баллуDataTable(ds.Tables["Отображение студентов по среднему баллу"]));
  89. }
  90. if ((ds.Tables["Отображение студентов по ФИО"] != null)) {
  91. base.Tables.Add(new Отображение_студентов_по_ФИОDataTable(ds.Tables["Отображение студентов по ФИО"]));
  92. }
  93. if ((ds.Tables["Среднее трёх величин"] != null)) {
  94. base.Tables.Add(new Среднее_трёх_величинDataTable(ds.Tables["Среднее трёх величин"]));
  95. }
  96. this.DataSetName = ds.DataSetName;
  97. this.Prefix = ds.Prefix;
  98. this.Namespace = ds.Namespace;
  99. this.Locale = ds.Locale;
  100. this.CaseSensitive = ds.CaseSensitive;
  101. this.EnforceConstraints = ds.EnforceConstraints;
  102. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  103. this.InitVars();
  104. }
  105. else {
  106. this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  107. }
  108. this.GetSerializationData(info, context);
  109. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  110. base.Tables.CollectionChanged += schemaChangedHandler;
  111. this.Relations.CollectionChanged += schemaChangedHandler;
  112. }
  113. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  114. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  115. [global::System.ComponentModel.Browsable(false)]
  116. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  117. public ОценкиDataTable Оценки {
  118. get {
  119. return this.tableОценки;
  120. }
  121. }
  122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  123. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  124. [global::System.ComponentModel.Browsable(false)]
  125. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  126. public ПредметыDataTable Предметы {
  127. get {
  128. return this.tableПредметы;
  129. }
  130. }
  131. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  132. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  133. [global::System.ComponentModel.Browsable(false)]
  134. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  135. public СпециальностиDataTable Специальности {
  136. get {
  137. return this.tableСпециальности;
  138. }
  139. }
  140. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  141. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  142. [global::System.ComponentModel.Browsable(false)]
  143. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  144. public СтудентыDataTable Студенты {
  145. get {
  146. return this.tableСтуденты;
  147. }
  148. }
  149. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  150. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  151. [global::System.ComponentModel.Browsable(false)]
  152. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  153. public _Запрос_Студенты_ОценкиDataTable _Запрос_Студенты_Оценки {
  154. get {
  155. return this._tableЗапрос_Студенты_Оценки;
  156. }
  157. }
  158. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  159. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  160. [global::System.ComponentModel.Browsable(false)]
  161. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  162. public _Запрос_Студенты_СпециальностиDataTable _Запрос_Студенты_Специальности {
  163. get {
  164. return this._tableЗапрос_Студенты_Специальности;
  165. }
  166. }
  167. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  168. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  169. [global::System.ComponentModel.Browsable(false)]
  170. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  171. public Фильтр_ММDataTable Фильтр_ММ {
  172. get {
  173. return this.tableФильтр_ММ;
  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.Browsable(false)]
  179. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  180. public Фильтр_ПИDataTable Фильтр_ПИ {
  181. get {
  182. return this.tableФильтр_ПИ;
  183. }
  184. }
  185. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  186. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  187. [global::System.ComponentModel.Browsable(false)]
  188. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  189. public Отображение_студентов_по_возрастуDataTable Отображение_студентов_по_возрасту {
  190. get {
  191. return this.tableОтображение_студентов_по_возрасту;
  192. }
  193. }
  194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  196. [global::System.ComponentModel.Browsable(false)]
  197. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  198. public Отображение_студентов_по_среднему_баллуDataTable Отображение_студентов_по_среднему_баллу {
  199. get {
  200. return this.tableОтображение_студентов_по_среднему_баллу;
  201. }
  202. }
  203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  204. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  205. [global::System.ComponentModel.Browsable(false)]
  206. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  207. public Отображение_студентов_по_ФИОDataTable Отображение_студентов_по_ФИО {
  208. get {
  209. return this.tableОтображение_студентов_по_ФИО;
  210. }
  211. }
  212. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  213. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  214. [global::System.ComponentModel.Browsable(false)]
  215. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  216. public Среднее_трёх_величинDataTable Среднее_трёх_величин {
  217. get {
  218. return this.tableСреднее_трёх_величин;
  219. }
  220. }
  221. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  222. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  223. [global::System.ComponentModel.BrowsableAttribute(true)]
  224. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
  225. public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
  226. get {
  227. return this._schemaSerializationMode;
  228. }
  229. set {
  230. this._schemaSerializationMode = value;
  231. }
  232. }
  233. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  234. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  235. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  236. public new global::System.Data.DataTableCollection Tables {
  237. get {
  238. return base.Tables;
  239. }
  240. }
  241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  243. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  244. public new global::System.Data.DataRelationCollection Relations {
  245. get {
  246. return base.Relations;
  247. }
  248. }
  249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  251. protected override void InitializeDerivedDataSet() {
  252. this.BeginInit();
  253. this.InitClass();
  254. this.EndInit();
  255. }
  256. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  257. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  258. public override global::System.Data.DataSet Clone() {
  259. РожковDataSet cln = ((РожковDataSet)(base.Clone()));
  260. cln.InitVars();
  261. cln.SchemaSerializationMode = this.SchemaSerializationMode;
  262. return cln;
  263. }
  264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  266. protected override bool ShouldSerializeTables() {
  267. return false;
  268. }
  269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  271. protected override bool ShouldSerializeRelations() {
  272. return false;
  273. }
  274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  276. protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
  277. if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  278. this.Reset();
  279. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  280. ds.ReadXml(reader);
  281. if ((ds.Tables["Оценки"] != null)) {
  282. base.Tables.Add(new ОценкиDataTable(ds.Tables["Оценки"]));
  283. }
  284. if ((ds.Tables["Предметы"] != null)) {
  285. base.Tables.Add(new ПредметыDataTable(ds.Tables["Предметы"]));
  286. }
  287. if ((ds.Tables["Специальности"] != null)) {
  288. base.Tables.Add(new СпециальностиDataTable(ds.Tables["Специальности"]));
  289. }
  290. if ((ds.Tables["Студенты"] != null)) {
  291. base.Tables.Add(new СтудентыDataTable(ds.Tables["Студенты"]));
  292. }
  293. if ((ds.Tables["Запрос Студенты+Оценки"] != null)) {
  294. base.Tables.Add(new _Запрос_Студенты_ОценкиDataTable(ds.Tables["Запрос Студенты+Оценки"]));
  295. }
  296. if ((ds.Tables["Запрос Студенты+Специальности"] != null)) {
  297. base.Tables.Add(new _Запрос_Студенты_СпециальностиDataTable(ds.Tables["Запрос Студенты+Специальности"]));
  298. }
  299. if ((ds.Tables["Фильтр ММ"] != null)) {
  300. base.Tables.Add(new Фильтр_ММDataTable(ds.Tables["Фильтр ММ"]));
  301. }
  302. if ((ds.Tables["Фильтр ПИ"] != null)) {
  303. base.Tables.Add(new Фильтр_ПИDataTable(ds.Tables["Фильтр ПИ"]));
  304. }
  305. if ((ds.Tables["Отображение студентов по возрасту"] != null)) {
  306. base.Tables.Add(new Отображение_студентов_по_возрастуDataTable(ds.Tables["Отображение студентов по возрасту"]));
  307. }
  308. if ((ds.Tables["Отображение студентов по среднему баллу"] != null)) {
  309. base.Tables.Add(new Отображение_студентов_по_среднему_баллуDataTable(ds.Tables["Отображение студентов по среднему баллу"]));
  310. }
  311. if ((ds.Tables["Отображение студентов по ФИО"] != null)) {
  312. base.Tables.Add(new Отображение_студентов_по_ФИОDataTable(ds.Tables["Отображение студентов по ФИО"]));
  313. }
  314. if ((ds.Tables["Среднее трёх величин"] != null)) {
  315. base.Tables.Add(new Среднее_трёх_величинDataTable(ds.Tables["Среднее трёх величин"]));
  316. }
  317. this.DataSetName = ds.DataSetName;
  318. this.Prefix = ds.Prefix;
  319. this.Namespace = ds.Namespace;
  320. this.Locale = ds.Locale;
  321. this.CaseSensitive = ds.CaseSensitive;
  322. this.EnforceConstraints = ds.EnforceConstraints;
  323. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  324. this.InitVars();
  325. }
  326. else {
  327. this.ReadXml(reader);
  328. this.InitVars();
  329. }
  330. }
  331. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  332. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  333. protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
  334. global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
  335. this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
  336. stream.Position = 0;
  337. return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
  338. }
  339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  341. internal void InitVars() {
  342. this.InitVars(true);
  343. }
  344. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  345. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  346. internal void InitVars(bool initTable) {
  347. this.tableОценки = ((ОценкиDataTable)(base.Tables["Оценки"]));
  348. if ((initTable == true)) {
  349. if ((this.tableОценки != null)) {
  350. this.tableОценки.InitVars();
  351. }
  352. }
  353. this.tableПредметы = ((ПредметыDataTable)(base.Tables["Предметы"]));
  354. if ((initTable == true)) {
  355. if ((this.tableПредметы != null)) {
  356. this.tableПредметы.InitVars();
  357. }
  358. }
  359. this.tableСпециальности = ((СпециальностиDataTable)(base.Tables["Специальности"]));
  360. if ((initTable == true)) {
  361. if ((this.tableСпециальности != null)) {
  362. this.tableСпециальности.InitVars();
  363. }
  364. }
  365. this.tableСтуденты = ((СтудентыDataTable)(base.Tables["Студенты"]));
  366. if ((initTable == true)) {
  367. if ((this.tableСтуденты != null)) {
  368. this.tableСтуденты.InitVars();
  369. }
  370. }
  371. this._tableЗапрос_Студенты_Оценки = ((_Запрос_Студенты_ОценкиDataTable)(base.Tables["Запрос Студенты+Оценки"]));
  372. if ((initTable == true)) {
  373. if ((this._tableЗапрос_Студенты_Оценки != null)) {
  374. this._tableЗапрос_Студенты_Оценки.InitVars();
  375. }
  376. }
  377. this._tableЗапрос_Студенты_Специальности = ((_Запрос_Студенты_СпециальностиDataTable)(base.Tables["Запрос Студенты+Специальности"]));
  378. if ((initTable == true)) {
  379. if ((this._tableЗапрос_Студенты_Специальности != null)) {
  380. this._tableЗапрос_Студенты_Специальности.InitVars();
  381. }
  382. }
  383. this.tableФильтр_ММ = ((Фильтр_ММDataTable)(base.Tables["Фильтр ММ"]));
  384. if ((initTable == true)) {
  385. if ((this.tableФильтр_ММ != null)) {
  386. this.tableФильтр_ММ.InitVars();
  387. }
  388. }
  389. this.tableФильтр_ПИ = ((Фильтр_ПИDataTable)(base.Tables["Фильтр ПИ"]));
  390. if ((initTable == true)) {
  391. if ((this.tableФильтр_ПИ != null)) {
  392. this.tableФильтр_ПИ.InitVars();
  393. }
  394. }
  395. this.tableОтображение_студентов_по_возрасту = ((Отображение_студентов_по_возрастуDataTable)(base.Tables["Отображение студентов по возрасту"]));
  396. if ((initTable == true)) {
  397. if ((this.tableОтображение_студентов_по_возрасту != null)) {
  398. this.tableОтображение_студентов_по_возрасту.InitVars();
  399. }
  400. }
  401. this.tableОтображение_студентов_по_среднему_баллу = ((Отображение_студентов_по_среднему_баллуDataTable)(base.Tables["Отображение студентов по среднему баллу"]));
  402. if ((initTable == true)) {
  403. if ((this.tableОтображение_студентов_по_среднему_баллу != null)) {
  404. this.tableОтображение_студентов_по_среднему_баллу.InitVars();
  405. }
  406. }
  407. this.tableОтображение_студентов_по_ФИО = ((Отображение_студентов_по_ФИОDataTable)(base.Tables["Отображение студентов по ФИО"]));
  408. if ((initTable == true)) {
  409. if ((this.tableОтображение_студентов_по_ФИО != null)) {
  410. this.tableОтображение_студентов_по_ФИО.InitVars();
  411. }
  412. }
  413. this.tableСреднее_трёх_величин = ((Среднее_трёх_величинDataTable)(base.Tables["Среднее трёх величин"]));
  414. if ((initTable == true)) {
  415. if ((this.tableСреднее_трёх_величин != null)) {
  416. this.tableСреднее_трёх_величин.InitVars();
  417. }
  418. }
  419. }
  420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  422. private void InitClass() {
  423. this.DataSetName = "РожковDataSet";
  424. this.Prefix = "";
  425. this.Namespace = "http://tempuri.org/РожковDataSet.xsd";
  426. this.EnforceConstraints = true;
  427. this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  428. this.tableОценки = new ОценкиDataTable();
  429. base.Tables.Add(this.tableОценки);
  430. this.tableПредметы = new ПредметыDataTable();
  431. base.Tables.Add(this.tableПредметы);
  432. this.tableСпециальности = new СпециальностиDataTable();
  433. base.Tables.Add(this.tableСпециальности);
  434. this.tableСтуденты = new СтудентыDataTable();
  435. base.Tables.Add(this.tableСтуденты);
  436. this._tableЗапрос_Студенты_Оценки = new _Запрос_Студенты_ОценкиDataTable();
  437. base.Tables.Add(this._tableЗапрос_Студенты_Оценки);
  438. this._tableЗапрос_Студенты_Специальности = new _Запрос_Студенты_СпециальностиDataTable();
  439. base.Tables.Add(this._tableЗапрос_Студенты_Специальности);
  440. this.tableФильтр_ММ = new Фильтр_ММDataTable();
  441. base.Tables.Add(this.tableФильтр_ММ);
  442. this.tableФильтр_ПИ = new Фильтр_ПИDataTable();
  443. base.Tables.Add(this.tableФильтр_ПИ);
  444. this.tableОтображение_студентов_по_возрасту = new Отображение_студентов_по_возрастуDataTable();
  445. base.Tables.Add(this.tableОтображение_студентов_по_возрасту);
  446. this.tableОтображение_студентов_по_среднему_баллу = new Отображение_студентов_по_среднему_баллуDataTable();
  447. base.Tables.Add(this.tableОтображение_студентов_по_среднему_баллу);
  448. this.tableОтображение_студентов_по_ФИО = new Отображение_студентов_по_ФИОDataTable();
  449. base.Tables.Add(this.tableОтображение_студентов_по_ФИО);
  450. this.tableСреднее_трёх_величин = new Среднее_трёх_величинDataTable();
  451. base.Tables.Add(this.tableСреднее_трёх_величин);
  452. }
  453. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  454. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  455. private bool ShouldSerializeОценки() {
  456. return false;
  457. }
  458. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  459. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  460. private bool ShouldSerializeПредметы() {
  461. return false;
  462. }
  463. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  464. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  465. private bool ShouldSerializeСпециальности() {
  466. return false;
  467. }
  468. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  469. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  470. private bool ShouldSerializeСтуденты() {
  471. return false;
  472. }
  473. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  474. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  475. private bool ShouldSerialize_Запрос_Студенты_Оценки() {
  476. return false;
  477. }
  478. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  479. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  480. private bool ShouldSerialize_Запрос_Студенты_Специальности() {
  481. return false;
  482. }
  483. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  484. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  485. private bool ShouldSerializeФильтр_ММ() {
  486. return false;
  487. }
  488. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  489. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  490. private bool ShouldSerializeФильтр_ПИ() {
  491. return false;
  492. }
  493. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  494. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  495. private bool ShouldSerializeОтображение_студентов_по_возрасту() {
  496. return false;
  497. }
  498. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  499. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  500. private bool ShouldSerializeОтображение_студентов_по_среднему_баллу() {
  501. return false;
  502. }
  503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  505. private bool ShouldSerializeОтображение_студентов_по_ФИО() {
  506. return false;
  507. }
  508. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  509. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  510. private bool ShouldSerializeСреднее_трёх_величин() {
  511. return false;
  512. }
  513. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  514. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  515. private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
  516. if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
  517. this.InitVars();
  518. }
  519. }
  520. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  521. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  522. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  523. РожковDataSet ds = new РожковDataSet();
  524. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  525. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  526. global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
  527. any.Namespace = ds.Namespace;
  528. sequence.Items.Add(any);
  529. type.Particle = sequence;
  530. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  531. if (xs.Contains(dsSchema.TargetNamespace)) {
  532. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  533. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  534. try {
  535. global::System.Xml.Schema.XmlSchema schema = null;
  536. dsSchema.Write(s1);
  537. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  538. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  539. s2.SetLength(0);
  540. schema.Write(s2);
  541. if ((s1.Length == s2.Length)) {
  542. s1.Position = 0;
  543. s2.Position = 0;
  544. for (; ((s1.Position != s1.Length)
  545. && (s1.ReadByte() == s2.ReadByte())); ) {
  546. ;
  547. }
  548. if ((s1.Position == s1.Length)) {
  549. return type;
  550. }
  551. }
  552. }
  553. }
  554. finally {
  555. if ((s1 != null)) {
  556. s1.Close();
  557. }
  558. if ((s2 != null)) {
  559. s2.Close();
  560. }
  561. }
  562. }
  563. xs.Add(dsSchema);
  564. return type;
  565. }
  566. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  567. public delegate void ОценкиRowChangeEventHandler(object sender, ОценкиRowChangeEvent e);
  568. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  569. public delegate void ПредметыRowChangeEventHandler(object sender, ПредметыRowChangeEvent e);
  570. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  571. public delegate void СпециальностиRowChangeEventHandler(object sender, СпециальностиRowChangeEvent e);
  572. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  573. public delegate void СтудентыRowChangeEventHandler(object sender, СтудентыRowChangeEvent e);
  574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  575. public delegate void _Запрос_Студенты_ОценкиRowChangeEventHandler(object sender, _Запрос_Студенты_ОценкиRowChangeEvent e);
  576. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  577. public delegate void _Запрос_Студенты_СпециальностиRowChangeEventHandler(object sender, _Запрос_Студенты_СпециальностиRowChangeEvent e);
  578. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  579. public delegate void Фильтр_ММRowChangeEventHandler(object sender, Фильтр_ММRowChangeEvent e);
  580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  581. public delegate void Фильтр_ПИRowChangeEventHandler(object sender, Фильтр_ПИRowChangeEvent e);
  582. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  583. public delegate void Отображение_студентов_по_возрастуRowChangeEventHandler(object sender, Отображение_студентов_по_возрастуRowChangeEvent e);
  584. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  585. public delegate void Отображение_студентов_по_среднему_баллуRowChangeEventHandler(object sender, Отображение_студентов_по_среднему_баллуRowChangeEvent e);
  586. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  587. public delegate void Отображение_студентов_по_ФИОRowChangeEventHandler(object sender, Отображение_студентов_по_ФИОRowChangeEvent e);
  588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  589. public delegate void Среднее_трёх_величинRowChangeEventHandler(object sender, Среднее_трёх_величинRowChangeEvent e);
  590. /// <summary>
  591. ///Represents the strongly named DataTable class.
  592. ///</summary>
  593. [global::System.Serializable()]
  594. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  595. public partial class ОценкиDataTable : global::System.Data.TypedTableBase<ОценкиRow> {
  596. private global::System.Data.DataColumn columnКод_студента;
  597. private global::System.Data.DataColumn columnДата_экзамена1;
  598. private global::System.Data.DataColumn columnКод_предмета1;
  599. private global::System.Data.DataColumn columnОценка_1;
  600. private global::System.Data.DataColumn columnДата_экзамена_2;
  601. private global::System.Data.DataColumn columnКод_предмета2;
  602. private global::System.Data.DataColumn columnОценка_2;
  603. private global::System.Data.DataColumn columnДата_экзамена_3;
  604. private global::System.Data.DataColumn columnКод_предмета_3;
  605. private global::System.Data.DataColumn columnОценка_3;
  606. private global::System.Data.DataColumn columnСредний_балл;
  607. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  608. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  609. public ОценкиDataTable() {
  610. this.TableName = "Оценки";
  611. this.BeginInit();
  612. this.InitClass();
  613. this.EndInit();
  614. }
  615. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  616. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  617. internal ОценкиDataTable(global::System.Data.DataTable table) {
  618. this.TableName = table.TableName;
  619. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  620. this.CaseSensitive = table.CaseSensitive;
  621. }
  622. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  623. this.Locale = table.Locale;
  624. }
  625. if ((table.Namespace != table.DataSet.Namespace)) {
  626. this.Namespace = table.Namespace;
  627. }
  628. this.Prefix = table.Prefix;
  629. this.MinimumCapacity = table.MinimumCapacity;
  630. }
  631. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  632. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  633. protected ОценкиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  634. base(info, context) {
  635. this.InitVars();
  636. }
  637. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  638. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  639. public global::System.Data.DataColumn Код_студентаColumn {
  640. get {
  641. return this.columnКод_студента;
  642. }
  643. }
  644. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  645. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  646. public global::System.Data.DataColumn Дата_экзамена1Column {
  647. get {
  648. return this.columnДата_экзамена1;
  649. }
  650. }
  651. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  652. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  653. public global::System.Data.DataColumn Код_предмета1Column {
  654. get {
  655. return this.columnКод_предмета1;
  656. }
  657. }
  658. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  659. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  660. public global::System.Data.DataColumn Оценка_1Column {
  661. get {
  662. return this.columnОценка_1;
  663. }
  664. }
  665. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  666. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  667. public global::System.Data.DataColumn Дата_экзамена_2Column {
  668. get {
  669. return this.columnДата_экзамена_2;
  670. }
  671. }
  672. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  673. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  674. public global::System.Data.DataColumn Код_предмета2Column {
  675. get {
  676. return this.columnКод_предмета2;
  677. }
  678. }
  679. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  680. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  681. public global::System.Data.DataColumn Оценка_2Column {
  682. get {
  683. return this.columnОценка_2;
  684. }
  685. }
  686. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  687. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  688. public global::System.Data.DataColumn Дата_экзамена_3Column {
  689. get {
  690. return this.columnДата_экзамена_3;
  691. }
  692. }
  693. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  694. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  695. public global::System.Data.DataColumn Код_предмета_3Column {
  696. get {
  697. return this.columnКод_предмета_3;
  698. }
  699. }
  700. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  701. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  702. public global::System.Data.DataColumn Оценка_3Column {
  703. get {
  704. return this.columnОценка_3;
  705. }
  706. }
  707. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  708. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  709. public global::System.Data.DataColumn Средний_баллColumn {
  710. get {
  711. return this.columnСредний_балл;
  712. }
  713. }
  714. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  715. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  716. [global::System.ComponentModel.Browsable(false)]
  717. public int Count {
  718. get {
  719. return this.Rows.Count;
  720. }
  721. }
  722. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  723. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  724. public ОценкиRow this[int index] {
  725. get {
  726. return ((ОценкиRow)(this.Rows[index]));
  727. }
  728. }
  729. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  730. public event ОценкиRowChangeEventHandler ОценкиRowChanging;
  731. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  732. public event ОценкиRowChangeEventHandler ОценкиRowChanged;
  733. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  734. public event ОценкиRowChangeEventHandler ОценкиRowDeleting;
  735. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  736. public event ОценкиRowChangeEventHandler ОценкиRowDeleted;
  737. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  738. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  739. public void AddОценкиRow(ОценкиRow row) {
  740. this.Rows.Add(row);
  741. }
  742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  744. 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 Средний_балл) {
  745. ОценкиRow rowОценкиRow = ((ОценкиRow)(this.NewRow()));
  746. object[] columnValuesArray = new object[] {
  747. Код_студента,
  748. Дата_экзамена1,
  749. Код_предмета1,
  750. Оценка_1,
  751. Дата_экзамена_2,
  752. Код_предмета2,
  753. Оценка_2,
  754. Дата_экзамена_3,
  755. Код_предмета_3,
  756. Оценка_3,
  757. Средний_балл};
  758. rowОценкиRow.ItemArray = columnValuesArray;
  759. this.Rows.Add(rowОценкиRow);
  760. return rowОценкиRow;
  761. }
  762. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  763. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  764. public override global::System.Data.DataTable Clone() {
  765. ОценкиDataTable cln = ((ОценкиDataTable)(base.Clone()));
  766. cln.InitVars();
  767. return cln;
  768. }
  769. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  770. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  771. protected override global::System.Data.DataTable CreateInstance() {
  772. return new ОценкиDataTable();
  773. }
  774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  775. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  776. internal void InitVars() {
  777. this.columnКод_студента = base.Columns["Код студента"];
  778. this.columnДата_экзамена1 = base.Columns["Дата экзамена1"];
  779. this.columnКод_предмета1 = base.Columns["Код предмета1"];
  780. this.columnОценка_1 = base.Columns["Оценка 1"];
  781. this.columnДата_экзамена_2 = base.Columns["Дата экзамена 2"];
  782. this.columnКод_предмета2 = base.Columns["Код предмета2"];
  783. this.columnОценка_2 = base.Columns["Оценка 2"];
  784. this.columnДата_экзамена_3 = base.Columns["Дата экзамена 3"];
  785. this.columnКод_предмета_3 = base.Columns["Код предмета 3"];
  786. this.columnОценка_3 = base.Columns["Оценка 3"];
  787. this.columnСредний_балл = base.Columns["Средний балл"];
  788. }
  789. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  790. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  791. private void InitClass() {
  792. this.columnКод_студента = new global::System.Data.DataColumn("Код студента", typeof(long), null, global::System.Data.MappingType.Element);
  793. base.Columns.Add(this.columnКод_студента);
  794. this.columnДата_экзамена1 = new global::System.Data.DataColumn("Дата экзамена1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  795. base.Columns.Add(this.columnДата_экзамена1);
  796. this.columnКод_предмета1 = new global::System.Data.DataColumn("Код предмета1", typeof(long), null, global::System.Data.MappingType.Element);
  797. base.Columns.Add(this.columnКод_предмета1);
  798. this.columnОценка_1 = new global::System.Data.DataColumn("Оценка 1", typeof(byte), null, global::System.Data.MappingType.Element);
  799. base.Columns.Add(this.columnОценка_1);
  800. this.columnДата_экзамена_2 = new global::System.Data.DataColumn("Дата экзамена 2", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  801. base.Columns.Add(this.columnДата_экзамена_2);
  802. this.columnКод_предмета2 = new global::System.Data.DataColumn("Код предмета2", typeof(long), null, global::System.Data.MappingType.Element);
  803. base.Columns.Add(this.columnКод_предмета2);
  804. this.columnОценка_2 = new global::System.Data.DataColumn("Оценка 2", typeof(byte), null, global::System.Data.MappingType.Element);
  805. base.Columns.Add(this.columnОценка_2);
  806. this.columnДата_экзамена_3 = new global::System.Data.DataColumn("Дата экзамена 3", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  807. base.Columns.Add(this.columnДата_экзамена_3);
  808. this.columnКод_предмета_3 = new global::System.Data.DataColumn("Код предмета 3", typeof(long), null, global::System.Data.MappingType.Element);
  809. base.Columns.Add(this.columnКод_предмета_3);
  810. this.columnОценка_3 = new global::System.Data.DataColumn("Оценка 3", typeof(byte), null, global::System.Data.MappingType.Element);
  811. base.Columns.Add(this.columnОценка_3);
  812. this.columnСредний_балл = new global::System.Data.DataColumn("Средний балл", typeof(float), null, global::System.Data.MappingType.Element);
  813. base.Columns.Add(this.columnСредний_балл);
  814. }
  815. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  816. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  817. public ОценкиRow NewОценкиRow() {
  818. return ((ОценкиRow)(this.NewRow()));
  819. }
  820. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  821. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  822. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  823. return new ОценкиRow(builder);
  824. }
  825. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  826. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  827. protected override global::System.Type GetRowType() {
  828. return typeof(ОценкиRow);
  829. }
  830. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  831. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  832. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  833. base.OnRowChanged(e);
  834. if ((this.ОценкиRowChanged != null)) {
  835. this.ОценкиRowChanged(this, new ОценкиRowChangeEvent(((ОценкиRow)(e.Row)), e.Action));
  836. }
  837. }
  838. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  839. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  840. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  841. base.OnRowChanging(e);
  842. if ((this.ОценкиRowChanging != null)) {
  843. this.ОценкиRowChanging(this, new ОценкиRowChangeEvent(((ОценкиRow)(e.Row)), e.Action));
  844. }
  845. }
  846. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  847. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  848. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  849. base.OnRowDeleted(e);
  850. if ((this.ОценкиRowDeleted != null)) {
  851. this.ОценкиRowDeleted(this, new ОценкиRowChangeEvent(((ОценкиRow)(e.Row)), e.Action));
  852. }
  853. }
  854. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  855. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  856. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  857. base.OnRowDeleting(e);
  858. if ((this.ОценкиRowDeleting != null)) {
  859. this.ОценкиRowDeleting(this, new ОценкиRowChangeEvent(((ОценкиRow)(e.Row)), e.Action));
  860. }
  861. }
  862. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  863. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  864. public void RemoveОценкиRow(ОценкиRow row) {
  865. this.Rows.Remove(row);
  866. }
  867. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  868. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  869. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  870. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  871. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  872. РожковDataSet ds = new РожковDataSet();
  873. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  874. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  875. any1.MinOccurs = new decimal(0);
  876. any1.MaxOccurs = decimal.MaxValue;
  877. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  878. sequence.Items.Add(any1);
  879. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  880. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  881. any2.MinOccurs = new decimal(1);
  882. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  883. sequence.Items.Add(any2);
  884. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  885. attribute1.Name = "namespace";
  886. attribute1.FixedValue = ds.Namespace;
  887. type.Attributes.Add(attribute1);
  888. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  889. attribute2.Name = "tableTypeName";
  890. attribute2.FixedValue = "ОценкиDataTable";
  891. type.Attributes.Add(attribute2);
  892. type.Particle = sequence;
  893. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  894. if (xs.Contains(dsSchema.TargetNamespace)) {
  895. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  896. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  897. try {
  898. global::System.Xml.Schema.XmlSchema schema = null;
  899. dsSchema.Write(s1);
  900. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  901. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  902. s2.SetLength(0);
  903. schema.Write(s2);
  904. if ((s1.Length == s2.Length)) {
  905. s1.Position = 0;
  906. s2.Position = 0;
  907. for (; ((s1.Position != s1.Length)
  908. && (s1.ReadByte() == s2.ReadByte())); ) {
  909. ;
  910. }
  911. if ((s1.Position == s1.Length)) {
  912. return type;
  913. }
  914. }
  915. }
  916. }
  917. finally {
  918. if ((s1 != null)) {
  919. s1.Close();
  920. }
  921. if ((s2 != null)) {
  922. s2.Close();
  923. }
  924. }
  925. }
  926. xs.Add(dsSchema);
  927. return type;
  928. }
  929. }
  930. /// <summary>
  931. ///Represents the strongly named DataTable class.
  932. ///</summary>
  933. [global::System.Serializable()]
  934. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  935. public partial class ПредметыDataTable : global::System.Data.TypedTableBase<ПредметыRow> {
  936. private global::System.Data.DataColumn columnКод_предмета;
  937. private global::System.Data.DataColumn columnНаименование_предмета;
  938. private global::System.Data.DataColumn columnОписание_предмета;
  939. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  940. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  941. public ПредметыDataTable() {
  942. this.TableName = "Предметы";
  943. this.BeginInit();
  944. this.InitClass();
  945. this.EndInit();
  946. }
  947. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  948. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  949. internal ПредметыDataTable(global::System.Data.DataTable table) {
  950. this.TableName = table.TableName;
  951. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  952. this.CaseSensitive = table.CaseSensitive;
  953. }
  954. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  955. this.Locale = table.Locale;
  956. }
  957. if ((table.Namespace != table.DataSet.Namespace)) {
  958. this.Namespace = table.Namespace;
  959. }
  960. this.Prefix = table.Prefix;
  961. this.MinimumCapacity = table.MinimumCapacity;
  962. }
  963. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  964. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  965. protected ПредметыDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  966. base(info, context) {
  967. this.InitVars();
  968. }
  969. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  970. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  971. public global::System.Data.DataColumn Код_предметаColumn {
  972. get {
  973. return this.columnКод_предмета;
  974. }
  975. }
  976. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  977. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  978. public global::System.Data.DataColumn Наименование_предметаColumn {
  979. get {
  980. return this.columnНаименование_предмета;
  981. }
  982. }
  983. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  984. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  985. public global::System.Data.DataColumn Описание_предметаColumn {
  986. get {
  987. return this.columnОписание_предмета;
  988. }
  989. }
  990. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  991. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  992. [global::System.ComponentModel.Browsable(false)]
  993. public int Count {
  994. get {
  995. return this.Rows.Count;
  996. }
  997. }
  998. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  999. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1000. public ПредметыRow this[int index] {
  1001. get {
  1002. return ((ПредметыRow)(this.Rows[index]));
  1003. }
  1004. }
  1005. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1006. public event ПредметыRowChangeEventHandler ПредметыRowChanging;
  1007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1008. public event ПредметыRowChangeEventHandler ПредметыRowChanged;
  1009. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1010. public event ПредметыRowChangeEventHandler ПредметыRowDeleting;
  1011. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1012. public event ПредметыRowChangeEventHandler ПредметыRowDeleted;
  1013. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1014. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1015. public void AddПредметыRow(ПредметыRow row) {
  1016. this.Rows.Add(row);
  1017. }
  1018. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1019. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1020. public ПредметыRow AddПредметыRow(string Наименование_предмета, string Описание_предмета) {
  1021. ПредметыRow rowПредметыRow = ((ПредметыRow)(this.NewRow()));
  1022. object[] columnValuesArray = new object[] {
  1023. null,
  1024. Наименование_предмета,
  1025. Описание_предмета};
  1026. rowПредметыRow.ItemArray = columnValuesArray;
  1027. this.Rows.Add(rowПредметыRow);
  1028. return rowПредметыRow;
  1029. }
  1030. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1031. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1032. public override global::System.Data.DataTable Clone() {
  1033. ПредметыDataTable cln = ((ПредметыDataTable)(base.Clone()));
  1034. cln.InitVars();
  1035. return cln;
  1036. }
  1037. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1038. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1039. protected override global::System.Data.DataTable CreateInstance() {
  1040. return new ПредметыDataTable();
  1041. }
  1042. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1043. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1044. internal void InitVars() {
  1045. this.columnКод_предмета = base.Columns["Код предмета"];
  1046. this.columnНаименование_предмета = base.Columns["Наименование предмета"];
  1047. this.columnОписание_предмета = base.Columns["Описание предмета"];
  1048. }
  1049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1050. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1051. private void InitClass() {
  1052. this.columnКод_предмета = new global::System.Data.DataColumn("Код предмета", typeof(long), null, global::System.Data.MappingType.Element);
  1053. base.Columns.Add(this.columnКод_предмета);
  1054. this.columnНаименование_предмета = new global::System.Data.DataColumn("Наименование предмета", typeof(string), null, global::System.Data.MappingType.Element);
  1055. base.Columns.Add(this.columnНаименование_предмета);
  1056. this.columnОписание_предмета = new global::System.Data.DataColumn("Описание предмета", typeof(string), null, global::System.Data.MappingType.Element);
  1057. base.Columns.Add(this.columnОписание_предмета);
  1058. this.columnКод_предмета.AutoIncrement = true;
  1059. this.columnКод_предмета.AutoIncrementSeed = -1;
  1060. this.columnКод_предмета.AutoIncrementStep = -1;
  1061. this.columnКод_предмета.AllowDBNull = false;
  1062. this.columnКод_предмета.ReadOnly = true;
  1063. this.columnНаименование_предмета.MaxLength = 50;
  1064. this.columnОписание_предмета.MaxLength = 2147483647;
  1065. }
  1066. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1067. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1068. public ПредметыRow NewПредметыRow() {
  1069. return ((ПредметыRow)(this.NewRow()));
  1070. }
  1071. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1072. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1073. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1074. return new ПредметыRow(builder);
  1075. }
  1076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1078. protected override global::System.Type GetRowType() {
  1079. return typeof(ПредметыRow);
  1080. }
  1081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1082. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1083. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1084. base.OnRowChanged(e);
  1085. if ((this.ПредметыRowChanged != null)) {
  1086. this.ПредметыRowChanged(this, new ПредметыRowChangeEvent(((ПредметыRow)(e.Row)), e.Action));
  1087. }
  1088. }
  1089. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1090. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1091. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1092. base.OnRowChanging(e);
  1093. if ((this.ПредметыRowChanging != null)) {
  1094. this.ПредметыRowChanging(this, new ПредметыRowChangeEvent(((ПредметыRow)(e.Row)), e.Action));
  1095. }
  1096. }
  1097. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1098. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1099. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1100. base.OnRowDeleted(e);
  1101. if ((this.ПредметыRowDeleted != null)) {
  1102. this.ПредметыRowDeleted(this, new ПредметыRowChangeEvent(((ПредметыRow)(e.Row)), e.Action));
  1103. }
  1104. }
  1105. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1106. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1107. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1108. base.OnRowDeleting(e);
  1109. if ((this.ПредметыRowDeleting != null)) {
  1110. this.ПредметыRowDeleting(this, new ПредметыRowChangeEvent(((ПредметыRow)(e.Row)), e.Action));
  1111. }
  1112. }
  1113. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1114. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1115. public void RemoveПредметыRow(ПредметыRow row) {
  1116. this.Rows.Remove(row);
  1117. }
  1118. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1119. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1120. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1121. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1122. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1123. РожковDataSet ds = new РожковDataSet();
  1124. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1125. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1126. any1.MinOccurs = new decimal(0);
  1127. any1.MaxOccurs = decimal.MaxValue;
  1128. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1129. sequence.Items.Add(any1);
  1130. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1131. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1132. any2.MinOccurs = new decimal(1);
  1133. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1134. sequence.Items.Add(any2);
  1135. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1136. attribute1.Name = "namespace";
  1137. attribute1.FixedValue = ds.Namespace;
  1138. type.Attributes.Add(attribute1);
  1139. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1140. attribute2.Name = "tableTypeName";
  1141. attribute2.FixedValue = "ПредметыDataTable";
  1142. type.Attributes.Add(attribute2);
  1143. type.Particle = sequence;
  1144. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1145. if (xs.Contains(dsSchema.TargetNamespace)) {
  1146. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1147. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1148. try {
  1149. global::System.Xml.Schema.XmlSchema schema = null;
  1150. dsSchema.Write(s1);
  1151. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1152. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1153. s2.SetLength(0);
  1154. schema.Write(s2);
  1155. if ((s1.Length == s2.Length)) {
  1156. s1.Position = 0;
  1157. s2.Position = 0;
  1158. for (; ((s1.Position != s1.Length)
  1159. && (s1.ReadByte() == s2.ReadByte())); ) {
  1160. ;
  1161. }
  1162. if ((s1.Position == s1.Length)) {
  1163. return type;
  1164. }
  1165. }
  1166. }
  1167. }
  1168. finally {
  1169. if ((s1 != null)) {
  1170. s1.Close();
  1171. }
  1172. if ((s2 != null)) {
  1173. s2.Close();
  1174. }
  1175. }
  1176. }
  1177. xs.Add(dsSchema);
  1178. return type;
  1179. }
  1180. }
  1181. /// <summary>
  1182. ///Represents the strongly named DataTable class.
  1183. ///</summary>
  1184. [global::System.Serializable()]
  1185. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1186. public partial class СпециальностиDataTable : global::System.Data.TypedTableBase<СпециальностиRow> {
  1187. private global::System.Data.DataColumn columnКод_специальности;
  1188. private global::System.Data.DataColumn columnНазвание_специальности;
  1189. private global::System.Data.DataColumn columnОписание_специальности;
  1190. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1191. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1192. public СпециальностиDataTable() {
  1193. this.TableName = "Специальности";
  1194. this.BeginInit();
  1195. this.InitClass();
  1196. this.EndInit();
  1197. }
  1198. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1199. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1200. internal СпециальностиDataTable(global::System.Data.DataTable table) {
  1201. this.TableName = table.TableName;
  1202. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1203. this.CaseSensitive = table.CaseSensitive;
  1204. }
  1205. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1206. this.Locale = table.Locale;
  1207. }
  1208. if ((table.Namespace != table.DataSet.Namespace)) {
  1209. this.Namespace = table.Namespace;
  1210. }
  1211. this.Prefix = table.Prefix;
  1212. this.MinimumCapacity = table.MinimumCapacity;
  1213. }
  1214. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1215. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1216. protected СпециальностиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1217. base(info, context) {
  1218. this.InitVars();
  1219. }
  1220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1222. public global::System.Data.DataColumn Код_специальностиColumn {
  1223. get {
  1224. return this.columnКод_специальности;
  1225. }
  1226. }
  1227. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1228. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1229. public global::System.Data.DataColumn Название_специальностиColumn {
  1230. get {
  1231. return this.columnНазвание_специальности;
  1232. }
  1233. }
  1234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1236. public global::System.Data.DataColumn Описание_специальностиColumn {
  1237. get {
  1238. return this.columnОписание_специальности;
  1239. }
  1240. }
  1241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1243. [global::System.ComponentModel.Browsable(false)]
  1244. public int Count {
  1245. get {
  1246. return this.Rows.Count;
  1247. }
  1248. }
  1249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1251. public СпециальностиRow this[int index] {
  1252. get {
  1253. return ((СпециальностиRow)(this.Rows[index]));
  1254. }
  1255. }
  1256. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1257. public event СпециальностиRowChangeEventHandler СпециальностиRowChanging;
  1258. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1259. public event СпециальностиRowChangeEventHandler СпециальностиRowChanged;
  1260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1261. public event СпециальностиRowChangeEventHandler СпециальностиRowDeleting;
  1262. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1263. public event СпециальностиRowChangeEventHandler СпециальностиRowDeleted;
  1264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1266. public void AddСпециальностиRow(СпециальностиRow row) {
  1267. this.Rows.Add(row);
  1268. }
  1269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1271. public СпециальностиRow AddСпециальностиRow(string Название_специальности, string Описание_специальности) {
  1272. СпециальностиRow rowСпециальностиRow = ((СпециальностиRow)(this.NewRow()));
  1273. object[] columnValuesArray = new object[] {
  1274. null,
  1275. Название_специальности,
  1276. Описание_специальности};
  1277. rowСпециальностиRow.ItemArray = columnValuesArray;
  1278. this.Rows.Add(rowСпециальностиRow);
  1279. return rowСпециальностиRow;
  1280. }
  1281. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1282. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1283. public СпециальностиRow FindByКод_специальности(long Код_специальности) {
  1284. return ((СпециальностиRow)(this.Rows.Find(new object[] {
  1285. Код_специальности})));
  1286. }
  1287. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1288. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1289. public override global::System.Data.DataTable Clone() {
  1290. СпециальностиDataTable cln = ((СпециальностиDataTable)(base.Clone()));
  1291. cln.InitVars();
  1292. return cln;
  1293. }
  1294. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1295. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1296. protected override global::System.Data.DataTable CreateInstance() {
  1297. return new СпециальностиDataTable();
  1298. }
  1299. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1300. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1301. internal void InitVars() {
  1302. this.columnКод_специальности = base.Columns["Код специальности"];
  1303. this.columnНазвание_специальности = base.Columns["Название специальности"];
  1304. this.columnОписание_специальности = base.Columns["Описание специальности"];
  1305. }
  1306. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1307. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1308. private void InitClass() {
  1309. this.columnКод_специальности = new global::System.Data.DataColumn("Код специальности", typeof(long), null, global::System.Data.MappingType.Element);
  1310. base.Columns.Add(this.columnКод_специальности);
  1311. this.columnНазвание_специальности = new global::System.Data.DataColumn("Название специальности", typeof(string), null, global::System.Data.MappingType.Element);
  1312. base.Columns.Add(this.columnНазвание_специальности);
  1313. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  1314. base.Columns.Add(this.columnОписание_специальности);
  1315. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1316. this.columnКод_специальности}, true));
  1317. this.columnКод_специальности.AutoIncrement = true;
  1318. this.columnКод_специальности.AutoIncrementSeed = -1;
  1319. this.columnКод_специальности.AutoIncrementStep = -1;
  1320. this.columnКод_специальности.AllowDBNull = false;
  1321. this.columnКод_специальности.ReadOnly = true;
  1322. this.columnКод_специальности.Unique = true;
  1323. this.columnНазвание_специальности.MaxLength = 50;
  1324. this.columnОписание_специальности.MaxLength = 2147483647;
  1325. }
  1326. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1327. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1328. public СпециальностиRow NewСпециальностиRow() {
  1329. return ((СпециальностиRow)(this.NewRow()));
  1330. }
  1331. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1332. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1333. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1334. return new СпециальностиRow(builder);
  1335. }
  1336. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1337. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1338. protected override global::System.Type GetRowType() {
  1339. return typeof(СпециальностиRow);
  1340. }
  1341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1343. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1344. base.OnRowChanged(e);
  1345. if ((this.СпециальностиRowChanged != null)) {
  1346. this.СпециальностиRowChanged(this, new СпециальностиRowChangeEvent(((СпециальностиRow)(e.Row)), e.Action));
  1347. }
  1348. }
  1349. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1350. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1351. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1352. base.OnRowChanging(e);
  1353. if ((this.СпециальностиRowChanging != null)) {
  1354. this.СпециальностиRowChanging(this, new СпециальностиRowChangeEvent(((СпециальностиRow)(e.Row)), e.Action));
  1355. }
  1356. }
  1357. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1358. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1359. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1360. base.OnRowDeleted(e);
  1361. if ((this.СпециальностиRowDeleted != null)) {
  1362. this.СпециальностиRowDeleted(this, new СпециальностиRowChangeEvent(((СпециальностиRow)(e.Row)), e.Action));
  1363. }
  1364. }
  1365. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1366. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1367. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1368. base.OnRowDeleting(e);
  1369. if ((this.СпециальностиRowDeleting != null)) {
  1370. this.СпециальностиRowDeleting(this, new СпециальностиRowChangeEvent(((СпециальностиRow)(e.Row)), e.Action));
  1371. }
  1372. }
  1373. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1374. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1375. public void RemoveСпециальностиRow(СпециальностиRow row) {
  1376. this.Rows.Remove(row);
  1377. }
  1378. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1379. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1380. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1381. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1382. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1383. РожковDataSet ds = new РожковDataSet();
  1384. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1385. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1386. any1.MinOccurs = new decimal(0);
  1387. any1.MaxOccurs = decimal.MaxValue;
  1388. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1389. sequence.Items.Add(any1);
  1390. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1391. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1392. any2.MinOccurs = new decimal(1);
  1393. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1394. sequence.Items.Add(any2);
  1395. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1396. attribute1.Name = "namespace";
  1397. attribute1.FixedValue = ds.Namespace;
  1398. type.Attributes.Add(attribute1);
  1399. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1400. attribute2.Name = "tableTypeName";
  1401. attribute2.FixedValue = "СпециальностиDataTable";
  1402. type.Attributes.Add(attribute2);
  1403. type.Particle = sequence;
  1404. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1405. if (xs.Contains(dsSchema.TargetNamespace)) {
  1406. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1407. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1408. try {
  1409. global::System.Xml.Schema.XmlSchema schema = null;
  1410. dsSchema.Write(s1);
  1411. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1412. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1413. s2.SetLength(0);
  1414. schema.Write(s2);
  1415. if ((s1.Length == s2.Length)) {
  1416. s1.Position = 0;
  1417. s2.Position = 0;
  1418. for (; ((s1.Position != s1.Length)
  1419. && (s1.ReadByte() == s2.ReadByte())); ) {
  1420. ;
  1421. }
  1422. if ((s1.Position == s1.Length)) {
  1423. return type;
  1424. }
  1425. }
  1426. }
  1427. }
  1428. finally {
  1429. if ((s1 != null)) {
  1430. s1.Close();
  1431. }
  1432. if ((s2 != null)) {
  1433. s2.Close();
  1434. }
  1435. }
  1436. }
  1437. xs.Add(dsSchema);
  1438. return type;
  1439. }
  1440. }
  1441. /// <summary>
  1442. ///Represents the strongly named DataTable class.
  1443. ///</summary>
  1444. [global::System.Serializable()]
  1445. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1446. public partial class СтудентыDataTable : global::System.Data.TypedTableBase<СтудентыRow> {
  1447. private global::System.Data.DataColumn columnКод_студента;
  1448. private global::System.Data.DataColumn columnФИО;
  1449. private global::System.Data.DataColumn columnПол;
  1450. private global::System.Data.DataColumn columnДата_рождения;
  1451. private global::System.Data.DataColumn columnРодители;
  1452. private global::System.Data.DataColumn columnАдрес;
  1453. private global::System.Data.DataColumn columnТелефон;
  1454. private global::System.Data.DataColumn columnПаспортные_данные;
  1455. private global::System.Data.DataColumn columnНомер_зачетки;
  1456. private global::System.Data.DataColumn columnДата_поступления;
  1457. private global::System.Data.DataColumn columnГруппа;
  1458. private global::System.Data.DataColumn columnКурс;
  1459. private global::System.Data.DataColumn columnКод_специальности;
  1460. private global::System.Data.DataColumn columnОчная_форма_обучения;
  1461. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1462. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1463. public СтудентыDataTable() {
  1464. this.TableName = "Студенты";
  1465. this.BeginInit();
  1466. this.InitClass();
  1467. this.EndInit();
  1468. }
  1469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1471. internal СтудентыDataTable(global::System.Data.DataTable table) {
  1472. this.TableName = table.TableName;
  1473. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1474. this.CaseSensitive = table.CaseSensitive;
  1475. }
  1476. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1477. this.Locale = table.Locale;
  1478. }
  1479. if ((table.Namespace != table.DataSet.Namespace)) {
  1480. this.Namespace = table.Namespace;
  1481. }
  1482. this.Prefix = table.Prefix;
  1483. this.MinimumCapacity = table.MinimumCapacity;
  1484. }
  1485. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1486. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1487. protected СтудентыDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1488. base(info, context) {
  1489. this.InitVars();
  1490. }
  1491. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1492. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1493. public global::System.Data.DataColumn Код_студентаColumn {
  1494. get {
  1495. return this.columnКод_студента;
  1496. }
  1497. }
  1498. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1499. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1500. public global::System.Data.DataColumn ФИОColumn {
  1501. get {
  1502. return this.columnФИО;
  1503. }
  1504. }
  1505. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1506. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1507. public global::System.Data.DataColumn ПолColumn {
  1508. get {
  1509. return this.columnПол;
  1510. }
  1511. }
  1512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1513. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1514. public global::System.Data.DataColumn Дата_рожденияColumn {
  1515. get {
  1516. return this.columnДата_рождения;
  1517. }
  1518. }
  1519. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1520. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1521. public global::System.Data.DataColumn РодителиColumn {
  1522. get {
  1523. return this.columnРодители;
  1524. }
  1525. }
  1526. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1527. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1528. public global::System.Data.DataColumn АдресColumn {
  1529. get {
  1530. return this.columnАдрес;
  1531. }
  1532. }
  1533. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1534. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1535. public global::System.Data.DataColumn ТелефонColumn {
  1536. get {
  1537. return this.columnТелефон;
  1538. }
  1539. }
  1540. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1541. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1542. public global::System.Data.DataColumn Паспортные_данныеColumn {
  1543. get {
  1544. return this.columnПаспортные_данные;
  1545. }
  1546. }
  1547. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1548. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1549. public global::System.Data.DataColumn Номер_зачеткиColumn {
  1550. get {
  1551. return this.columnНомер_зачетки;
  1552. }
  1553. }
  1554. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1555. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1556. public global::System.Data.DataColumn Дата_поступленияColumn {
  1557. get {
  1558. return this.columnДата_поступления;
  1559. }
  1560. }
  1561. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1562. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1563. public global::System.Data.DataColumn ГруппаColumn {
  1564. get {
  1565. return this.columnГруппа;
  1566. }
  1567. }
  1568. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1569. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1570. public global::System.Data.DataColumn КурсColumn {
  1571. get {
  1572. return this.columnКурс;
  1573. }
  1574. }
  1575. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1576. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1577. public global::System.Data.DataColumn Код_специальностиColumn {
  1578. get {
  1579. return this.columnКод_специальности;
  1580. }
  1581. }
  1582. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1583. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1584. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  1585. get {
  1586. return this.columnОчная_форма_обучения;
  1587. }
  1588. }
  1589. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1590. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1591. [global::System.ComponentModel.Browsable(false)]
  1592. public int Count {
  1593. get {
  1594. return this.Rows.Count;
  1595. }
  1596. }
  1597. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1598. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1599. public СтудентыRow this[int index] {
  1600. get {
  1601. return ((СтудентыRow)(this.Rows[index]));
  1602. }
  1603. }
  1604. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1605. public event СтудентыRowChangeEventHandler СтудентыRowChanging;
  1606. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1607. public event СтудентыRowChangeEventHandler СтудентыRowChanged;
  1608. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1609. public event СтудентыRowChangeEventHandler СтудентыRowDeleting;
  1610. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1611. public event СтудентыRowChangeEventHandler СтудентыRowDeleted;
  1612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1614. public void AddСтудентыRow(СтудентыRow row) {
  1615. this.Rows.Add(row);
  1616. }
  1617. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1618. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1619. public СтудентыRow AddСтудентыRow(string ФИО, string Пол, System.DateTime Дата_рождения, string Родители, string Адрес, string Телефон, string Паспортные_данные, long Номер_зачетки, System.DateTime Дата_поступления, string Группа, byte Курс, long Код_специальности, bool Очная_форма_обучения) {
  1620. СтудентыRow rowСтудентыRow = ((СтудентыRow)(this.NewRow()));
  1621. object[] columnValuesArray = new object[] {
  1622. null,
  1623. ФИО,
  1624. Пол,
  1625. Дата_рождения,
  1626. Родители,
  1627. Адрес,
  1628. Телефон,
  1629. Паспортные_данные,
  1630. Номер_зачетки,
  1631. Дата_поступления,
  1632. Группа,
  1633. Курс,
  1634. Код_специальности,
  1635. Очная_форма_обучения};
  1636. rowСтудентыRow.ItemArray = columnValuesArray;
  1637. this.Rows.Add(rowСтудентыRow);
  1638. return rowСтудентыRow;
  1639. }
  1640. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1641. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1642. public СтудентыRow FindByКод_студента(long Код_студента) {
  1643. return ((СтудентыRow)(this.Rows.Find(new object[] {
  1644. Код_студента})));
  1645. }
  1646. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1647. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1648. public override global::System.Data.DataTable Clone() {
  1649. СтудентыDataTable cln = ((СтудентыDataTable)(base.Clone()));
  1650. cln.InitVars();
  1651. return cln;
  1652. }
  1653. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1654. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1655. protected override global::System.Data.DataTable CreateInstance() {
  1656. return new СтудентыDataTable();
  1657. }
  1658. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1659. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1660. internal void InitVars() {
  1661. this.columnКод_студента = base.Columns["Код студента"];
  1662. this.columnФИО = base.Columns["ФИО"];
  1663. this.columnПол = base.Columns["Пол"];
  1664. this.columnДата_рождения = base.Columns["Дата рождения"];
  1665. this.columnРодители = base.Columns["Родители"];
  1666. this.columnАдрес = base.Columns["Адрес"];
  1667. this.columnТелефон = base.Columns["Телефон"];
  1668. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  1669. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  1670. this.columnДата_поступления = base.Columns["Дата поступления"];
  1671. this.columnГруппа = base.Columns["Группа"];
  1672. this.columnКурс = base.Columns["Курс"];
  1673. this.columnКод_специальности = base.Columns["Код специальности"];
  1674. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  1675. }
  1676. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1677. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1678. private void InitClass() {
  1679. this.columnКод_студента = new global::System.Data.DataColumn("Код студента", typeof(long), null, global::System.Data.MappingType.Element);
  1680. base.Columns.Add(this.columnКод_студента);
  1681. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  1682. base.Columns.Add(this.columnФИО);
  1683. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  1684. base.Columns.Add(this.columnПол);
  1685. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1686. base.Columns.Add(this.columnДата_рождения);
  1687. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  1688. base.Columns.Add(this.columnРодители);
  1689. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  1690. base.Columns.Add(this.columnАдрес);
  1691. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  1692. base.Columns.Add(this.columnТелефон);
  1693. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  1694. base.Columns.Add(this.columnПаспортные_данные);
  1695. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  1696. base.Columns.Add(this.columnНомер_зачетки);
  1697. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1698. base.Columns.Add(this.columnДата_поступления);
  1699. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  1700. base.Columns.Add(this.columnГруппа);
  1701. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  1702. base.Columns.Add(this.columnКурс);
  1703. this.columnКод_специальности = new global::System.Data.DataColumn("Код специальности", typeof(long), null, global::System.Data.MappingType.Element);
  1704. base.Columns.Add(this.columnКод_специальности);
  1705. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  1706. base.Columns.Add(this.columnОчная_форма_обучения);
  1707. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1708. this.columnКод_студента}, true));
  1709. this.columnКод_студента.AutoIncrement = true;
  1710. this.columnКод_студента.AutoIncrementSeed = -1;
  1711. this.columnКод_студента.AutoIncrementStep = -1;
  1712. this.columnКод_студента.AllowDBNull = false;
  1713. this.columnКод_студента.ReadOnly = true;
  1714. this.columnКод_студента.Unique = true;
  1715. this.columnФИО.MaxLength = 50;
  1716. this.columnПол.MaxLength = 50;
  1717. this.columnРодители.MaxLength = 50;
  1718. this.columnАдрес.MaxLength = 2147483647;
  1719. this.columnТелефон.MaxLength = 15;
  1720. this.columnПаспортные_данные.MaxLength = 2147483647;
  1721. this.columnГруппа.MaxLength = 10;
  1722. }
  1723. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1724. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1725. public СтудентыRow NewСтудентыRow() {
  1726. return ((СтудентыRow)(this.NewRow()));
  1727. }
  1728. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1729. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1730. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1731. return new СтудентыRow(builder);
  1732. }
  1733. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1734. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1735. protected override global::System.Type GetRowType() {
  1736. return typeof(СтудентыRow);
  1737. }
  1738. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1739. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1740. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1741. base.OnRowChanged(e);
  1742. if ((this.СтудентыRowChanged != null)) {
  1743. this.СтудентыRowChanged(this, new СтудентыRowChangeEvent(((СтудентыRow)(e.Row)), e.Action));
  1744. }
  1745. }
  1746. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1747. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1748. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1749. base.OnRowChanging(e);
  1750. if ((this.СтудентыRowChanging != null)) {
  1751. this.СтудентыRowChanging(this, new СтудентыRowChangeEvent(((СтудентыRow)(e.Row)), e.Action));
  1752. }
  1753. }
  1754. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1755. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1756. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1757. base.OnRowDeleted(e);
  1758. if ((this.СтудентыRowDeleted != null)) {
  1759. this.СтудентыRowDeleted(this, new СтудентыRowChangeEvent(((СтудентыRow)(e.Row)), e.Action));
  1760. }
  1761. }
  1762. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1763. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1764. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1765. base.OnRowDeleting(e);
  1766. if ((this.СтудентыRowDeleting != null)) {
  1767. this.СтудентыRowDeleting(this, new СтудентыRowChangeEvent(((СтудентыRow)(e.Row)), e.Action));
  1768. }
  1769. }
  1770. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1772. public void RemoveСтудентыRow(СтудентыRow row) {
  1773. this.Rows.Remove(row);
  1774. }
  1775. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1776. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1777. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1778. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1779. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1780. РожковDataSet ds = new РожковDataSet();
  1781. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1782. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1783. any1.MinOccurs = new decimal(0);
  1784. any1.MaxOccurs = decimal.MaxValue;
  1785. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1786. sequence.Items.Add(any1);
  1787. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1788. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1789. any2.MinOccurs = new decimal(1);
  1790. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1791. sequence.Items.Add(any2);
  1792. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1793. attribute1.Name = "namespace";
  1794. attribute1.FixedValue = ds.Namespace;
  1795. type.Attributes.Add(attribute1);
  1796. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1797. attribute2.Name = "tableTypeName";
  1798. attribute2.FixedValue = "СтудентыDataTable";
  1799. type.Attributes.Add(attribute2);
  1800. type.Particle = sequence;
  1801. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1802. if (xs.Contains(dsSchema.TargetNamespace)) {
  1803. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1804. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1805. try {
  1806. global::System.Xml.Schema.XmlSchema schema = null;
  1807. dsSchema.Write(s1);
  1808. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1809. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1810. s2.SetLength(0);
  1811. schema.Write(s2);
  1812. if ((s1.Length == s2.Length)) {
  1813. s1.Position = 0;
  1814. s2.Position = 0;
  1815. for (; ((s1.Position != s1.Length)
  1816. && (s1.ReadByte() == s2.ReadByte())); ) {
  1817. ;
  1818. }
  1819. if ((s1.Position == s1.Length)) {
  1820. return type;
  1821. }
  1822. }
  1823. }
  1824. }
  1825. finally {
  1826. if ((s1 != null)) {
  1827. s1.Close();
  1828. }
  1829. if ((s2 != null)) {
  1830. s2.Close();
  1831. }
  1832. }
  1833. }
  1834. xs.Add(dsSchema);
  1835. return type;
  1836. }
  1837. }
  1838. /// <summary>
  1839. ///Represents the strongly named DataTable class.
  1840. ///</summary>
  1841. [global::System.Serializable()]
  1842. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1843. public partial class _Запрос_Студенты_ОценкиDataTable : global::System.Data.TypedTableBase<_Запрос_Студенты_ОценкиRow> {
  1844. private global::System.Data.DataColumn columnФИО_студента;
  1845. private global::System.Data.DataColumn columnДата_первого_экзамена;
  1846. private global::System.Data.DataColumn columnНаименование_предмета_первого_экзамена;
  1847. private global::System.Data.DataColumn columnОценка_первого_экзамена;
  1848. private global::System.Data.DataColumn columnДата_второго_экзамена;
  1849. private global::System.Data.DataColumn columnНаименование_предмета_второго_экзамена;
  1850. private global::System.Data.DataColumn columnОценка_второго_экзамена;
  1851. private global::System.Data.DataColumn columnНаименование_предмета_третьего_экзамена;
  1852. private global::System.Data.DataColumn columnОценка_третьего_экзамена;
  1853. private global::System.Data.DataColumn columnДата_третьего_экзамена;
  1854. private global::System.Data.DataColumn columnСредний_балл_студента_за_сесию;
  1855. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1856. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1857. public _Запрос_Студенты_ОценкиDataTable() {
  1858. this.TableName = "Запрос Студенты+Оценки";
  1859. this.BeginInit();
  1860. this.InitClass();
  1861. this.EndInit();
  1862. }
  1863. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1864. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1865. internal _Запрос_Студенты_ОценкиDataTable(global::System.Data.DataTable table) {
  1866. this.TableName = table.TableName;
  1867. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1868. this.CaseSensitive = table.CaseSensitive;
  1869. }
  1870. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1871. this.Locale = table.Locale;
  1872. }
  1873. if ((table.Namespace != table.DataSet.Namespace)) {
  1874. this.Namespace = table.Namespace;
  1875. }
  1876. this.Prefix = table.Prefix;
  1877. this.MinimumCapacity = table.MinimumCapacity;
  1878. }
  1879. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1880. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1881. protected _Запрос_Студенты_ОценкиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1882. base(info, context) {
  1883. this.InitVars();
  1884. }
  1885. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1886. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1887. public global::System.Data.DataColumn ФИО_студентаColumn {
  1888. get {
  1889. return this.columnФИО_студента;
  1890. }
  1891. }
  1892. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1893. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1894. public global::System.Data.DataColumn Дата_первого_экзаменаColumn {
  1895. get {
  1896. return this.columnДата_первого_экзамена;
  1897. }
  1898. }
  1899. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1900. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1901. public global::System.Data.DataColumn Наименование_предмета_первого_экзаменаColumn {
  1902. get {
  1903. return this.columnНаименование_предмета_первого_экзамена;
  1904. }
  1905. }
  1906. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1907. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1908. public global::System.Data.DataColumn Оценка_первого_экзаменаColumn {
  1909. get {
  1910. return this.columnОценка_первого_экзамена;
  1911. }
  1912. }
  1913. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1914. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1915. public global::System.Data.DataColumn Дата_второго_экзаменаColumn {
  1916. get {
  1917. return this.columnДата_второго_экзамена;
  1918. }
  1919. }
  1920. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1921. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1922. public global::System.Data.DataColumn Наименование_предмета_второго_экзаменаColumn {
  1923. get {
  1924. return this.columnНаименование_предмета_второго_экзамена;
  1925. }
  1926. }
  1927. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1928. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1929. public global::System.Data.DataColumn Оценка_второго_экзаменаColumn {
  1930. get {
  1931. return this.columnОценка_второго_экзамена;
  1932. }
  1933. }
  1934. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1935. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1936. public global::System.Data.DataColumn Наименование_предмета_третьего_экзаменаColumn {
  1937. get {
  1938. return this.columnНаименование_предмета_третьего_экзамена;
  1939. }
  1940. }
  1941. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1942. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1943. public global::System.Data.DataColumn Оценка_третьего_экзаменаColumn {
  1944. get {
  1945. return this.columnОценка_третьего_экзамена;
  1946. }
  1947. }
  1948. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1949. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1950. public global::System.Data.DataColumn Дата_третьего_экзаменаColumn {
  1951. get {
  1952. return this.columnДата_третьего_экзамена;
  1953. }
  1954. }
  1955. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1956. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1957. public global::System.Data.DataColumn Средний_балл_студента_за_сесиюColumn {
  1958. get {
  1959. return this.columnСредний_балл_студента_за_сесию;
  1960. }
  1961. }
  1962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1964. [global::System.ComponentModel.Browsable(false)]
  1965. public int Count {
  1966. get {
  1967. return this.Rows.Count;
  1968. }
  1969. }
  1970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1972. public _Запрос_Студенты_ОценкиRow this[int index] {
  1973. get {
  1974. return ((_Запрос_Студенты_ОценкиRow)(this.Rows[index]));
  1975. }
  1976. }
  1977. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1978. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowChanging;
  1979. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1980. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowChanged;
  1981. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1982. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowDeleting;
  1983. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1984. public event _Запрос_Студенты_ОценкиRowChangeEventHandler _Запрос_Студенты_ОценкиRowDeleted;
  1985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1986. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1987. public void Add_Запрос_Студенты_ОценкиRow(_Запрос_Студенты_ОценкиRow row) {
  1988. this.Rows.Add(row);
  1989. }
  1990. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1991. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1992. public _Запрос_Студенты_ОценкиRow Add_Запрос_Студенты_ОценкиRow(string ФИО_студента, System.DateTime Дата_первого_экзамена, string Наименование_предмета_первого_экзамена, byte Оценка_первого_экзамена, System.DateTime Дата_второго_экзамена, string Наименование_предмета_второго_экзамена, byte Оценка_второго_экзамена, string Наименование_предмета_третьего_экзамена, byte Оценка_третьего_экзамена, System.DateTime Дата_третьего_экзамена, float Средний_балл_студента_за_сесию) {
  1993. _Запрос_Студенты_ОценкиRow row_Запрос_Студенты_ОценкиRow = ((_Запрос_Студенты_ОценкиRow)(this.NewRow()));
  1994. object[] columnValuesArray = new object[] {
  1995. ФИО_студента,
  1996. Дата_первого_экзамена,
  1997. Наименование_предмета_первого_экзамена,
  1998. Оценка_первого_экзамена,
  1999. Дата_второго_экзамена,
  2000. Наименование_предмета_второго_экзамена,
  2001. Оценка_второго_экзамена,
  2002. Наименование_предмета_третьего_экзамена,
  2003. Оценка_третьего_экзамена,
  2004. Дата_третьего_экзамена,
  2005. Средний_балл_студента_за_сесию};
  2006. row_Запрос_Студенты_ОценкиRow.ItemArray = columnValuesArray;
  2007. this.Rows.Add(row_Запрос_Студенты_ОценкиRow);
  2008. return row_Запрос_Студенты_ОценкиRow;
  2009. }
  2010. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2011. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2012. public override global::System.Data.DataTable Clone() {
  2013. _Запрос_Студенты_ОценкиDataTable cln = ((_Запрос_Студенты_ОценкиDataTable)(base.Clone()));
  2014. cln.InitVars();
  2015. return cln;
  2016. }
  2017. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2018. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2019. protected override global::System.Data.DataTable CreateInstance() {
  2020. return new _Запрос_Студенты_ОценкиDataTable();
  2021. }
  2022. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2024. internal void InitVars() {
  2025. this.columnФИО_студента = base.Columns["ФИО студента"];
  2026. this.columnДата_первого_экзамена = base.Columns["Дата первого экзамена"];
  2027. this.columnНаименование_предмета_первого_экзамена = base.Columns["Наименование предмета первого экзамена"];
  2028. this.columnОценка_первого_экзамена = base.Columns["Оценка первого экзамена"];
  2029. this.columnДата_второго_экзамена = base.Columns["Дата второго экзамена"];
  2030. this.columnНаименование_предмета_второго_экзамена = base.Columns["Наименование предмета второго экзамена"];
  2031. this.columnОценка_второго_экзамена = base.Columns["Оценка второго экзамена"];
  2032. this.columnНаименование_предмета_третьего_экзамена = base.Columns["Наименование предмета третьего экзамена"];
  2033. this.columnОценка_третьего_экзамена = base.Columns["Оценка третьего экзамена"];
  2034. this.columnДата_третьего_экзамена = base.Columns["Дата третьего экзамена"];
  2035. this.columnСредний_балл_студента_за_сесию = base.Columns["Средний балл студента за сесию"];
  2036. }
  2037. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2038. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2039. private void InitClass() {
  2040. this.columnФИО_студента = new global::System.Data.DataColumn("ФИО студента", typeof(string), null, global::System.Data.MappingType.Element);
  2041. base.Columns.Add(this.columnФИО_студента);
  2042. this.columnДата_первого_экзамена = new global::System.Data.DataColumn("Дата первого экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2043. base.Columns.Add(this.columnДата_первого_экзамена);
  2044. this.columnНаименование_предмета_первого_экзамена = new global::System.Data.DataColumn("Наименование предмета первого экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  2045. base.Columns.Add(this.columnНаименование_предмета_первого_экзамена);
  2046. this.columnОценка_первого_экзамена = new global::System.Data.DataColumn("Оценка первого экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  2047. base.Columns.Add(this.columnОценка_первого_экзамена);
  2048. this.columnДата_второго_экзамена = new global::System.Data.DataColumn("Дата второго экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2049. base.Columns.Add(this.columnДата_второго_экзамена);
  2050. this.columnНаименование_предмета_второго_экзамена = new global::System.Data.DataColumn("Наименование предмета второго экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  2051. base.Columns.Add(this.columnНаименование_предмета_второго_экзамена);
  2052. this.columnОценка_второго_экзамена = new global::System.Data.DataColumn("Оценка второго экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  2053. base.Columns.Add(this.columnОценка_второго_экзамена);
  2054. this.columnНаименование_предмета_третьего_экзамена = new global::System.Data.DataColumn("Наименование предмета третьего экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  2055. base.Columns.Add(this.columnНаименование_предмета_третьего_экзамена);
  2056. this.columnОценка_третьего_экзамена = new global::System.Data.DataColumn("Оценка третьего экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  2057. base.Columns.Add(this.columnОценка_третьего_экзамена);
  2058. this.columnДата_третьего_экзамена = new global::System.Data.DataColumn("Дата третьего экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2059. base.Columns.Add(this.columnДата_третьего_экзамена);
  2060. this.columnСредний_балл_студента_за_сесию = new global::System.Data.DataColumn("Средний балл студента за сесию", typeof(float), null, global::System.Data.MappingType.Element);
  2061. base.Columns.Add(this.columnСредний_балл_студента_за_сесию);
  2062. this.columnФИО_студента.MaxLength = 50;
  2063. this.columnНаименование_предмета_первого_экзамена.MaxLength = 50;
  2064. this.columnНаименование_предмета_второго_экзамена.MaxLength = 50;
  2065. this.columnНаименование_предмета_третьего_экзамена.MaxLength = 50;
  2066. this.ExtendedProperties.Add("Generator_TableVarName", "_tableЗапрос_Студенты_Оценки");
  2067. this.ExtendedProperties.Add("Generator_UserTableName", "Запрос Студенты+Оценки");
  2068. }
  2069. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2070. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2071. public _Запрос_Студенты_ОценкиRow New_Запрос_Студенты_ОценкиRow() {
  2072. return ((_Запрос_Студенты_ОценкиRow)(this.NewRow()));
  2073. }
  2074. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2075. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2076. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2077. return new _Запрос_Студенты_ОценкиRow(builder);
  2078. }
  2079. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2080. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2081. protected override global::System.Type GetRowType() {
  2082. return typeof(_Запрос_Студенты_ОценкиRow);
  2083. }
  2084. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2085. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2086. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2087. base.OnRowChanged(e);
  2088. if ((this._Запрос_Студенты_ОценкиRowChanged != null)) {
  2089. this._Запрос_Студенты_ОценкиRowChanged(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  2090. }
  2091. }
  2092. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2093. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2094. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2095. base.OnRowChanging(e);
  2096. if ((this._Запрос_Студенты_ОценкиRowChanging != null)) {
  2097. this._Запрос_Студенты_ОценкиRowChanging(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  2098. }
  2099. }
  2100. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2101. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2102. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2103. base.OnRowDeleted(e);
  2104. if ((this._Запрос_Студенты_ОценкиRowDeleted != null)) {
  2105. this._Запрос_Студенты_ОценкиRowDeleted(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  2106. }
  2107. }
  2108. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2109. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2110. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2111. base.OnRowDeleting(e);
  2112. if ((this._Запрос_Студенты_ОценкиRowDeleting != null)) {
  2113. this._Запрос_Студенты_ОценкиRowDeleting(this, new _Запрос_Студенты_ОценкиRowChangeEvent(((_Запрос_Студенты_ОценкиRow)(e.Row)), e.Action));
  2114. }
  2115. }
  2116. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2117. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2118. public void Remove_Запрос_Студенты_ОценкиRow(_Запрос_Студенты_ОценкиRow row) {
  2119. this.Rows.Remove(row);
  2120. }
  2121. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2122. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2123. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2124. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2125. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2126. РожковDataSet ds = new РожковDataSet();
  2127. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2128. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2129. any1.MinOccurs = new decimal(0);
  2130. any1.MaxOccurs = decimal.MaxValue;
  2131. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2132. sequence.Items.Add(any1);
  2133. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2134. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2135. any2.MinOccurs = new decimal(1);
  2136. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2137. sequence.Items.Add(any2);
  2138. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2139. attribute1.Name = "namespace";
  2140. attribute1.FixedValue = ds.Namespace;
  2141. type.Attributes.Add(attribute1);
  2142. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2143. attribute2.Name = "tableTypeName";
  2144. attribute2.FixedValue = "_Запрос_Студенты_ОценкиDataTable";
  2145. type.Attributes.Add(attribute2);
  2146. type.Particle = sequence;
  2147. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2148. if (xs.Contains(dsSchema.TargetNamespace)) {
  2149. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2150. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2151. try {
  2152. global::System.Xml.Schema.XmlSchema schema = null;
  2153. dsSchema.Write(s1);
  2154. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2155. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2156. s2.SetLength(0);
  2157. schema.Write(s2);
  2158. if ((s1.Length == s2.Length)) {
  2159. s1.Position = 0;
  2160. s2.Position = 0;
  2161. for (; ((s1.Position != s1.Length)
  2162. && (s1.ReadByte() == s2.ReadByte())); ) {
  2163. ;
  2164. }
  2165. if ((s1.Position == s1.Length)) {
  2166. return type;
  2167. }
  2168. }
  2169. }
  2170. }
  2171. finally {
  2172. if ((s1 != null)) {
  2173. s1.Close();
  2174. }
  2175. if ((s2 != null)) {
  2176. s2.Close();
  2177. }
  2178. }
  2179. }
  2180. xs.Add(dsSchema);
  2181. return type;
  2182. }
  2183. }
  2184. /// <summary>
  2185. ///Represents the strongly named DataTable class.
  2186. ///</summary>
  2187. [global::System.Serializable()]
  2188. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2189. public partial class _Запрос_Студенты_СпециальностиDataTable : global::System.Data.TypedTableBase<_Запрос_Студенты_СпециальностиRow> {
  2190. private global::System.Data.DataColumn columnФИО;
  2191. private global::System.Data.DataColumn columnПол;
  2192. private global::System.Data.DataColumn columnДата_рождения;
  2193. private global::System.Data.DataColumn columnРодители;
  2194. private global::System.Data.DataColumn columnАдрес;
  2195. private global::System.Data.DataColumn columnТелефон;
  2196. private global::System.Data.DataColumn columnПаспортные_данные;
  2197. private global::System.Data.DataColumn columnНомер_зачетки;
  2198. private global::System.Data.DataColumn columnДата_поступления;
  2199. private global::System.Data.DataColumn columnГруппа;
  2200. private global::System.Data.DataColumn columnКурс;
  2201. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2202. private global::System.Data.DataColumn columnНазвание_специальности;
  2203. private global::System.Data.DataColumn columnОписание_специальности;
  2204. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2205. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2206. public _Запрос_Студенты_СпециальностиDataTable() {
  2207. this.TableName = "Запрос Студенты+Специальности";
  2208. this.BeginInit();
  2209. this.InitClass();
  2210. this.EndInit();
  2211. }
  2212. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2213. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2214. internal _Запрос_Студенты_СпециальностиDataTable(global::System.Data.DataTable table) {
  2215. this.TableName = table.TableName;
  2216. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2217. this.CaseSensitive = table.CaseSensitive;
  2218. }
  2219. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2220. this.Locale = table.Locale;
  2221. }
  2222. if ((table.Namespace != table.DataSet.Namespace)) {
  2223. this.Namespace = table.Namespace;
  2224. }
  2225. this.Prefix = table.Prefix;
  2226. this.MinimumCapacity = table.MinimumCapacity;
  2227. }
  2228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2230. protected _Запрос_Студенты_СпециальностиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2231. base(info, context) {
  2232. this.InitVars();
  2233. }
  2234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2236. public global::System.Data.DataColumn ФИОColumn {
  2237. get {
  2238. return this.columnФИО;
  2239. }
  2240. }
  2241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2243. public global::System.Data.DataColumn ПолColumn {
  2244. get {
  2245. return this.columnПол;
  2246. }
  2247. }
  2248. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2249. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2250. public global::System.Data.DataColumn Дата_рожденияColumn {
  2251. get {
  2252. return this.columnДата_рождения;
  2253. }
  2254. }
  2255. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2256. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2257. public global::System.Data.DataColumn РодителиColumn {
  2258. get {
  2259. return this.columnРодители;
  2260. }
  2261. }
  2262. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2263. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2264. public global::System.Data.DataColumn АдресColumn {
  2265. get {
  2266. return this.columnАдрес;
  2267. }
  2268. }
  2269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2271. public global::System.Data.DataColumn ТелефонColumn {
  2272. get {
  2273. return this.columnТелефон;
  2274. }
  2275. }
  2276. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2277. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2278. public global::System.Data.DataColumn Паспортные_данныеColumn {
  2279. get {
  2280. return this.columnПаспортные_данные;
  2281. }
  2282. }
  2283. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2284. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2285. public global::System.Data.DataColumn Номер_зачеткиColumn {
  2286. get {
  2287. return this.columnНомер_зачетки;
  2288. }
  2289. }
  2290. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2291. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2292. public global::System.Data.DataColumn Дата_поступленияColumn {
  2293. get {
  2294. return this.columnДата_поступления;
  2295. }
  2296. }
  2297. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2298. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2299. public global::System.Data.DataColumn ГруппаColumn {
  2300. get {
  2301. return this.columnГруппа;
  2302. }
  2303. }
  2304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2306. public global::System.Data.DataColumn КурсColumn {
  2307. get {
  2308. return this.columnКурс;
  2309. }
  2310. }
  2311. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2312. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2313. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  2314. get {
  2315. return this.columnОчная_форма_обучения;
  2316. }
  2317. }
  2318. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2319. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2320. public global::System.Data.DataColumn Название_специальностиColumn {
  2321. get {
  2322. return this.columnНазвание_специальности;
  2323. }
  2324. }
  2325. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2326. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2327. public global::System.Data.DataColumn Описание_специальностиColumn {
  2328. get {
  2329. return this.columnОписание_специальности;
  2330. }
  2331. }
  2332. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2333. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2334. [global::System.ComponentModel.Browsable(false)]
  2335. public int Count {
  2336. get {
  2337. return this.Rows.Count;
  2338. }
  2339. }
  2340. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2341. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2342. public _Запрос_Студенты_СпециальностиRow this[int index] {
  2343. get {
  2344. return ((_Запрос_Студенты_СпециальностиRow)(this.Rows[index]));
  2345. }
  2346. }
  2347. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2348. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowChanging;
  2349. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2350. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowChanged;
  2351. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2352. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowDeleting;
  2353. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2354. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowDeleted;
  2355. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2356. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2357. public void Add_Запрос_Студенты_СпециальностиRow(_Запрос_Студенты_СпециальностиRow row) {
  2358. this.Rows.Add(row);
  2359. }
  2360. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2361. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2362. public _Запрос_Студенты_СпециальностиRow Add_Запрос_Студенты_СпециальностиRow(string ФИО, string Пол, System.DateTime Дата_рождения, string Родители, string Адрес, string Телефон, string Паспортные_данные, long Номер_зачетки, System.DateTime Дата_поступления, string Группа, byte Курс, bool Очная_форма_обучения, string Название_специальности, string Описание_специальности) {
  2363. _Запрос_Студенты_СпециальностиRow row_Запрос_Студенты_СпециальностиRow = ((_Запрос_Студенты_СпециальностиRow)(this.NewRow()));
  2364. object[] columnValuesArray = new object[] {
  2365. ФИО,
  2366. Пол,
  2367. Дата_рождения,
  2368. Родители,
  2369. Адрес,
  2370. Телефон,
  2371. Паспортные_данные,
  2372. Номер_зачетки,
  2373. Дата_поступления,
  2374. Группа,
  2375. Курс,
  2376. Очная_форма_обучения,
  2377. Название_специальности,
  2378. Описание_специальности};
  2379. row_Запрос_Студенты_СпециальностиRow.ItemArray = columnValuesArray;
  2380. this.Rows.Add(row_Запрос_Студенты_СпециальностиRow);
  2381. return row_Запрос_Студенты_СпециальностиRow;
  2382. }
  2383. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2384. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2385. public override global::System.Data.DataTable Clone() {
  2386. _Запрос_Студенты_СпециальностиDataTable cln = ((_Запрос_Студенты_СпециальностиDataTable)(base.Clone()));
  2387. cln.InitVars();
  2388. return cln;
  2389. }
  2390. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2391. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2392. protected override global::System.Data.DataTable CreateInstance() {
  2393. return new _Запрос_Студенты_СпециальностиDataTable();
  2394. }
  2395. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2396. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2397. internal void InitVars() {
  2398. this.columnФИО = base.Columns["ФИО"];
  2399. this.columnПол = base.Columns["Пол"];
  2400. this.columnДата_рождения = base.Columns["Дата рождения"];
  2401. this.columnРодители = base.Columns["Родители"];
  2402. this.columnАдрес = base.Columns["Адрес"];
  2403. this.columnТелефон = base.Columns["Телефон"];
  2404. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  2405. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  2406. this.columnДата_поступления = base.Columns["Дата поступления"];
  2407. this.columnГруппа = base.Columns["Группа"];
  2408. this.columnКурс = base.Columns["Курс"];
  2409. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  2410. this.columnНазвание_специальности = base.Columns["Название специальности"];
  2411. this.columnОписание_специальности = base.Columns["Описание специальности"];
  2412. }
  2413. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2414. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2415. private void InitClass() {
  2416. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  2417. base.Columns.Add(this.columnФИО);
  2418. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  2419. base.Columns.Add(this.columnПол);
  2420. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2421. base.Columns.Add(this.columnДата_рождения);
  2422. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  2423. base.Columns.Add(this.columnРодители);
  2424. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  2425. base.Columns.Add(this.columnАдрес);
  2426. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  2427. base.Columns.Add(this.columnТелефон);
  2428. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  2429. base.Columns.Add(this.columnПаспортные_данные);
  2430. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  2431. base.Columns.Add(this.columnНомер_зачетки);
  2432. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2433. base.Columns.Add(this.columnДата_поступления);
  2434. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  2435. base.Columns.Add(this.columnГруппа);
  2436. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  2437. base.Columns.Add(this.columnКурс);
  2438. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  2439. base.Columns.Add(this.columnОчная_форма_обучения);
  2440. this.columnНазвание_специальности = new global::System.Data.DataColumn("Название специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2441. base.Columns.Add(this.columnНазвание_специальности);
  2442. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2443. base.Columns.Add(this.columnОписание_специальности);
  2444. this.columnФИО.MaxLength = 50;
  2445. this.columnПол.MaxLength = 50;
  2446. this.columnРодители.MaxLength = 50;
  2447. this.columnАдрес.MaxLength = 2147483647;
  2448. this.columnТелефон.MaxLength = 15;
  2449. this.columnПаспортные_данные.MaxLength = 2147483647;
  2450. this.columnГруппа.MaxLength = 10;
  2451. this.columnНазвание_специальности.MaxLength = 50;
  2452. this.columnОписание_специальности.MaxLength = 2147483647;
  2453. this.ExtendedProperties.Add("Generator_TableVarName", "_tableЗапрос_Студенты_Специальности");
  2454. this.ExtendedProperties.Add("Generator_UserTableName", "Запрос Студенты+Специальности");
  2455. }
  2456. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2457. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2458. public _Запрос_Студенты_СпециальностиRow New_Запрос_Студенты_СпециальностиRow() {
  2459. return ((_Запрос_Студенты_СпециальностиRow)(this.NewRow()));
  2460. }
  2461. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2462. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2463. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2464. return new _Запрос_Студенты_СпециальностиRow(builder);
  2465. }
  2466. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2467. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2468. protected override global::System.Type GetRowType() {
  2469. return typeof(_Запрос_Студенты_СпециальностиRow);
  2470. }
  2471. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2472. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2473. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2474. base.OnRowChanged(e);
  2475. if ((this._Запрос_Студенты_СпециальностиRowChanged != null)) {
  2476. this._Запрос_Студенты_СпециальностиRowChanged(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2477. }
  2478. }
  2479. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2480. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2481. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2482. base.OnRowChanging(e);
  2483. if ((this._Запрос_Студенты_СпециальностиRowChanging != null)) {
  2484. this._Запрос_Студенты_СпециальностиRowChanging(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2485. }
  2486. }
  2487. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2488. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2489. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2490. base.OnRowDeleted(e);
  2491. if ((this._Запрос_Студенты_СпециальностиRowDeleted != null)) {
  2492. this._Запрос_Студенты_СпециальностиRowDeleted(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2493. }
  2494. }
  2495. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2496. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2497. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2498. base.OnRowDeleting(e);
  2499. if ((this._Запрос_Студенты_СпециальностиRowDeleting != null)) {
  2500. this._Запрос_Студенты_СпециальностиRowDeleting(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2501. }
  2502. }
  2503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2505. public void Remove_Запрос_Студенты_СпециальностиRow(_Запрос_Студенты_СпециальностиRow row) {
  2506. this.Rows.Remove(row);
  2507. }
  2508. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2509. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2510. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2511. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2512. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2513. РожковDataSet ds = new РожковDataSet();
  2514. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2515. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2516. any1.MinOccurs = new decimal(0);
  2517. any1.MaxOccurs = decimal.MaxValue;
  2518. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2519. sequence.Items.Add(any1);
  2520. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2521. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2522. any2.MinOccurs = new decimal(1);
  2523. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2524. sequence.Items.Add(any2);
  2525. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2526. attribute1.Name = "namespace";
  2527. attribute1.FixedValue = ds.Namespace;
  2528. type.Attributes.Add(attribute1);
  2529. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2530. attribute2.Name = "tableTypeName";
  2531. attribute2.FixedValue = "_Запрос_Студенты_СпециальностиDataTable";
  2532. type.Attributes.Add(attribute2);
  2533. type.Particle = sequence;
  2534. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2535. if (xs.Contains(dsSchema.TargetNamespace)) {
  2536. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2537. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2538. try {
  2539. global::System.Xml.Schema.XmlSchema schema = null;
  2540. dsSchema.Write(s1);
  2541. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2542. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2543. s2.SetLength(0);
  2544. schema.Write(s2);
  2545. if ((s1.Length == s2.Length)) {
  2546. s1.Position = 0;
  2547. s2.Position = 0;
  2548. for (; ((s1.Position != s1.Length)
  2549. && (s1.ReadByte() == s2.ReadByte())); ) {
  2550. ;
  2551. }
  2552. if ((s1.Position == s1.Length)) {
  2553. return type;
  2554. }
  2555. }
  2556. }
  2557. }
  2558. finally {
  2559. if ((s1 != null)) {
  2560. s1.Close();
  2561. }
  2562. if ((s2 != null)) {
  2563. s2.Close();
  2564. }
  2565. }
  2566. }
  2567. xs.Add(dsSchema);
  2568. return type;
  2569. }
  2570. }
  2571. /// <summary>
  2572. ///Represents the strongly named DataTable class.
  2573. ///</summary>
  2574. [global::System.Serializable()]
  2575. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2576. public partial class Фильтр_ММDataTable : global::System.Data.TypedTableBase<Фильтр_ММRow> {
  2577. private global::System.Data.DataColumn columnФИО;
  2578. private global::System.Data.DataColumn columnПол;
  2579. private global::System.Data.DataColumn columnДата_рождения;
  2580. private global::System.Data.DataColumn columnРодители;
  2581. private global::System.Data.DataColumn columnАдрес;
  2582. private global::System.Data.DataColumn columnГруппа;
  2583. private global::System.Data.DataColumn columnКурс;
  2584. private global::System.Data.DataColumn columnНомер_зачетки;
  2585. private global::System.Data.DataColumn columnПаспортные_данные;
  2586. private global::System.Data.DataColumn columnТелефон;
  2587. private global::System.Data.DataColumn columnНазвание_специальности;
  2588. private global::System.Data.DataColumn columnОписание_специальности;
  2589. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2590. private global::System.Data.DataColumn columnДата_поступления;
  2591. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2592. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2593. public Фильтр_ММDataTable() {
  2594. this.TableName = "Фильтр ММ";
  2595. this.BeginInit();
  2596. this.InitClass();
  2597. this.EndInit();
  2598. }
  2599. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2600. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2601. internal Фильтр_ММDataTable(global::System.Data.DataTable table) {
  2602. this.TableName = table.TableName;
  2603. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2604. this.CaseSensitive = table.CaseSensitive;
  2605. }
  2606. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2607. this.Locale = table.Locale;
  2608. }
  2609. if ((table.Namespace != table.DataSet.Namespace)) {
  2610. this.Namespace = table.Namespace;
  2611. }
  2612. this.Prefix = table.Prefix;
  2613. this.MinimumCapacity = table.MinimumCapacity;
  2614. }
  2615. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2616. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2617. protected Фильтр_ММDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2618. base(info, context) {
  2619. this.InitVars();
  2620. }
  2621. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2622. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2623. public global::System.Data.DataColumn ФИОColumn {
  2624. get {
  2625. return this.columnФИО;
  2626. }
  2627. }
  2628. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2629. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2630. public global::System.Data.DataColumn ПолColumn {
  2631. get {
  2632. return this.columnПол;
  2633. }
  2634. }
  2635. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2636. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2637. public global::System.Data.DataColumn Дата_рожденияColumn {
  2638. get {
  2639. return this.columnДата_рождения;
  2640. }
  2641. }
  2642. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2643. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2644. public global::System.Data.DataColumn РодителиColumn {
  2645. get {
  2646. return this.columnРодители;
  2647. }
  2648. }
  2649. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2650. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2651. public global::System.Data.DataColumn АдресColumn {
  2652. get {
  2653. return this.columnАдрес;
  2654. }
  2655. }
  2656. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2657. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2658. public global::System.Data.DataColumn ГруппаColumn {
  2659. get {
  2660. return this.columnГруппа;
  2661. }
  2662. }
  2663. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2664. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2665. public global::System.Data.DataColumn КурсColumn {
  2666. get {
  2667. return this.columnКурс;
  2668. }
  2669. }
  2670. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2671. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2672. public global::System.Data.DataColumn Номер_зачеткиColumn {
  2673. get {
  2674. return this.columnНомер_зачетки;
  2675. }
  2676. }
  2677. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2678. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2679. public global::System.Data.DataColumn Паспортные_данныеColumn {
  2680. get {
  2681. return this.columnПаспортные_данные;
  2682. }
  2683. }
  2684. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2685. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2686. public global::System.Data.DataColumn ТелефонColumn {
  2687. get {
  2688. return this.columnТелефон;
  2689. }
  2690. }
  2691. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2692. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2693. public global::System.Data.DataColumn Название_специальностиColumn {
  2694. get {
  2695. return this.columnНазвание_специальности;
  2696. }
  2697. }
  2698. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2699. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2700. public global::System.Data.DataColumn Описание_специальностиColumn {
  2701. get {
  2702. return this.columnОписание_специальности;
  2703. }
  2704. }
  2705. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2706. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2707. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  2708. get {
  2709. return this.columnОчная_форма_обучения;
  2710. }
  2711. }
  2712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2714. public global::System.Data.DataColumn Дата_поступленияColumn {
  2715. get {
  2716. return this.columnДата_поступления;
  2717. }
  2718. }
  2719. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2720. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2721. [global::System.ComponentModel.Browsable(false)]
  2722. public int Count {
  2723. get {
  2724. return this.Rows.Count;
  2725. }
  2726. }
  2727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2729. public Фильтр_ММRow this[int index] {
  2730. get {
  2731. return ((Фильтр_ММRow)(this.Rows[index]));
  2732. }
  2733. }
  2734. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2735. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowChanging;
  2736. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2737. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowChanged;
  2738. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2739. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowDeleting;
  2740. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2741. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowDeleted;
  2742. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2743. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2744. public void AddФильтр_ММRow(Фильтр_ММRow row) {
  2745. this.Rows.Add(row);
  2746. }
  2747. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2748. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2749. public Фильтр_ММRow AddФильтр_ММRow(string ФИО, string Пол, System.DateTime Дата_рождения, string Родители, string Адрес, string Группа, byte Курс, long Номер_зачетки, string Паспортные_данные, string Телефон, string Название_специальности, string Описание_специальности, bool Очная_форма_обучения, System.DateTime Дата_поступления) {
  2750. Фильтр_ММRow rowФильтр_ММRow = ((Фильтр_ММRow)(this.NewRow()));
  2751. object[] columnValuesArray = new object[] {
  2752. ФИО,
  2753. Пол,
  2754. Дата_рождения,
  2755. Родители,
  2756. Адрес,
  2757. Группа,
  2758. Курс,
  2759. Номер_зачетки,
  2760. Паспортные_данные,
  2761. Телефон,
  2762. Название_специальности,
  2763. Описание_специальности,
  2764. Очная_форма_обучения,
  2765. Дата_поступления};
  2766. rowФильтр_ММRow.ItemArray = columnValuesArray;
  2767. this.Rows.Add(rowФильтр_ММRow);
  2768. return rowФильтр_ММRow;
  2769. }
  2770. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2772. public override global::System.Data.DataTable Clone() {
  2773. Фильтр_ММDataTable cln = ((Фильтр_ММDataTable)(base.Clone()));
  2774. cln.InitVars();
  2775. return cln;
  2776. }
  2777. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2778. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2779. protected override global::System.Data.DataTable CreateInstance() {
  2780. return new Фильтр_ММDataTable();
  2781. }
  2782. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2783. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2784. internal void InitVars() {
  2785. this.columnФИО = base.Columns["ФИО"];
  2786. this.columnПол = base.Columns["Пол"];
  2787. this.columnДата_рождения = base.Columns["Дата рождения"];
  2788. this.columnРодители = base.Columns["Родители"];
  2789. this.columnАдрес = base.Columns["Адрес"];
  2790. this.columnГруппа = base.Columns["Группа"];
  2791. this.columnКурс = base.Columns["Курс"];
  2792. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  2793. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  2794. this.columnТелефон = base.Columns["Телефон"];
  2795. this.columnНазвание_специальности = base.Columns["Название специальности"];
  2796. this.columnОписание_специальности = base.Columns["Описание специальности"];
  2797. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  2798. this.columnДата_поступления = base.Columns["Дата поступления"];
  2799. }
  2800. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2801. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2802. private void InitClass() {
  2803. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  2804. base.Columns.Add(this.columnФИО);
  2805. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  2806. base.Columns.Add(this.columnПол);
  2807. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2808. base.Columns.Add(this.columnДата_рождения);
  2809. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  2810. base.Columns.Add(this.columnРодители);
  2811. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  2812. base.Columns.Add(this.columnАдрес);
  2813. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  2814. base.Columns.Add(this.columnГруппа);
  2815. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  2816. base.Columns.Add(this.columnКурс);
  2817. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  2818. base.Columns.Add(this.columnНомер_зачетки);
  2819. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  2820. base.Columns.Add(this.columnПаспортные_данные);
  2821. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  2822. base.Columns.Add(this.columnТелефон);
  2823. this.columnНазвание_специальности = new global::System.Data.DataColumn("Название специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2824. base.Columns.Add(this.columnНазвание_специальности);
  2825. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2826. base.Columns.Add(this.columnОписание_специальности);
  2827. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  2828. base.Columns.Add(this.columnОчная_форма_обучения);
  2829. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2830. base.Columns.Add(this.columnДата_поступления);
  2831. this.columnФИО.MaxLength = 50;
  2832. this.columnПол.MaxLength = 50;
  2833. this.columnРодители.MaxLength = 50;
  2834. this.columnАдрес.MaxLength = 2147483647;
  2835. this.columnГруппа.MaxLength = 10;
  2836. this.columnПаспортные_данные.MaxLength = 2147483647;
  2837. this.columnТелефон.MaxLength = 15;
  2838. this.columnНазвание_специальности.MaxLength = 50;
  2839. this.columnОписание_специальности.MaxLength = 2147483647;
  2840. }
  2841. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2842. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2843. public Фильтр_ММRow NewФильтр_ММRow() {
  2844. return ((Фильтр_ММRow)(this.NewRow()));
  2845. }
  2846. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2847. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2848. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2849. return new Фильтр_ММRow(builder);
  2850. }
  2851. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2852. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2853. protected override global::System.Type GetRowType() {
  2854. return typeof(Фильтр_ММRow);
  2855. }
  2856. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2857. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2858. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2859. base.OnRowChanged(e);
  2860. if ((this.Фильтр_ММRowChanged != null)) {
  2861. this.Фильтр_ММRowChanged(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2862. }
  2863. }
  2864. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2865. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2866. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2867. base.OnRowChanging(e);
  2868. if ((this.Фильтр_ММRowChanging != null)) {
  2869. this.Фильтр_ММRowChanging(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2870. }
  2871. }
  2872. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2873. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2874. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2875. base.OnRowDeleted(e);
  2876. if ((this.Фильтр_ММRowDeleted != null)) {
  2877. this.Фильтр_ММRowDeleted(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2878. }
  2879. }
  2880. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2881. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2882. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2883. base.OnRowDeleting(e);
  2884. if ((this.Фильтр_ММRowDeleting != null)) {
  2885. this.Фильтр_ММRowDeleting(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2886. }
  2887. }
  2888. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2889. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2890. public void RemoveФильтр_ММRow(Фильтр_ММRow row) {
  2891. this.Rows.Remove(row);
  2892. }
  2893. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2894. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2895. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2896. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2897. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2898. РожковDataSet ds = new РожковDataSet();
  2899. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2900. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2901. any1.MinOccurs = new decimal(0);
  2902. any1.MaxOccurs = decimal.MaxValue;
  2903. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2904. sequence.Items.Add(any1);
  2905. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2906. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2907. any2.MinOccurs = new decimal(1);
  2908. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2909. sequence.Items.Add(any2);
  2910. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2911. attribute1.Name = "namespace";
  2912. attribute1.FixedValue = ds.Namespace;
  2913. type.Attributes.Add(attribute1);
  2914. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2915. attribute2.Name = "tableTypeName";
  2916. attribute2.FixedValue = "Фильтр_ММDataTable";
  2917. type.Attributes.Add(attribute2);
  2918. type.Particle = sequence;
  2919. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2920. if (xs.Contains(dsSchema.TargetNamespace)) {
  2921. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2922. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2923. try {
  2924. global::System.Xml.Schema.XmlSchema schema = null;
  2925. dsSchema.Write(s1);
  2926. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2927. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2928. s2.SetLength(0);
  2929. schema.Write(s2);
  2930. if ((s1.Length == s2.Length)) {
  2931. s1.Position = 0;
  2932. s2.Position = 0;
  2933. for (; ((s1.Position != s1.Length)
  2934. && (s1.ReadByte() == s2.ReadByte())); ) {
  2935. ;
  2936. }
  2937. if ((s1.Position == s1.Length)) {
  2938. return type;
  2939. }
  2940. }
  2941. }
  2942. }
  2943. finally {
  2944. if ((s1 != null)) {
  2945. s1.Close();
  2946. }
  2947. if ((s2 != null)) {
  2948. s2.Close();
  2949. }
  2950. }
  2951. }
  2952. xs.Add(dsSchema);
  2953. return type;
  2954. }
  2955. }
  2956. /// <summary>
  2957. ///Represents the strongly named DataTable class.
  2958. ///</summary>
  2959. [global::System.Serializable()]
  2960. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2961. public partial class Фильтр_ПИDataTable : global::System.Data.TypedTableBase<Фильтр_ПИRow> {
  2962. private global::System.Data.DataColumn columnФИО;
  2963. private global::System.Data.DataColumn columnДата_рождения;
  2964. private global::System.Data.DataColumn columnРодители;
  2965. private global::System.Data.DataColumn columnПол;
  2966. private global::System.Data.DataColumn columnАдрес;
  2967. private global::System.Data.DataColumn columnТелефон;
  2968. private global::System.Data.DataColumn columnДата_поступления;
  2969. private global::System.Data.DataColumn columnНомер_зачетки;
  2970. private global::System.Data.DataColumn columnГруппа;
  2971. private global::System.Data.DataColumn columnКурс;
  2972. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2973. private global::System.Data.DataColumn columnПаспортные_данные;
  2974. private global::System.Data.DataColumn columnНазвание_специальности;
  2975. private global::System.Data.DataColumn columnОписание_специальности;
  2976. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2977. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2978. public Фильтр_ПИDataTable() {
  2979. this.TableName = "Фильтр ПИ";
  2980. this.BeginInit();
  2981. this.InitClass();
  2982. this.EndInit();
  2983. }
  2984. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2985. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2986. internal Фильтр_ПИDataTable(global::System.Data.DataTable table) {
  2987. this.TableName = table.TableName;
  2988. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2989. this.CaseSensitive = table.CaseSensitive;
  2990. }
  2991. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2992. this.Locale = table.Locale;
  2993. }
  2994. if ((table.Namespace != table.DataSet.Namespace)) {
  2995. this.Namespace = table.Namespace;
  2996. }
  2997. this.Prefix = table.Prefix;
  2998. this.MinimumCapacity = table.MinimumCapacity;
  2999. }
  3000. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3001. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3002. protected Фильтр_ПИDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3003. base(info, context) {
  3004. this.InitVars();
  3005. }
  3006. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3008. public global::System.Data.DataColumn ФИОColumn {
  3009. get {
  3010. return this.columnФИО;
  3011. }
  3012. }
  3013. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3014. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3015. public global::System.Data.DataColumn Дата_рожденияColumn {
  3016. get {
  3017. return this.columnДата_рождения;
  3018. }
  3019. }
  3020. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3021. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3022. public global::System.Data.DataColumn РодителиColumn {
  3023. get {
  3024. return this.columnРодители;
  3025. }
  3026. }
  3027. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3028. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3029. public global::System.Data.DataColumn ПолColumn {
  3030. get {
  3031. return this.columnПол;
  3032. }
  3033. }
  3034. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3035. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3036. public global::System.Data.DataColumn АдресColumn {
  3037. get {
  3038. return this.columnАдрес;
  3039. }
  3040. }
  3041. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3042. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3043. public global::System.Data.DataColumn ТелефонColumn {
  3044. get {
  3045. return this.columnТелефон;
  3046. }
  3047. }
  3048. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3049. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3050. public global::System.Data.DataColumn Дата_поступленияColumn {
  3051. get {
  3052. return this.columnДата_поступления;
  3053. }
  3054. }
  3055. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3056. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3057. public global::System.Data.DataColumn Номер_зачеткиColumn {
  3058. get {
  3059. return this.columnНомер_зачетки;
  3060. }
  3061. }
  3062. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3063. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3064. public global::System.Data.DataColumn ГруппаColumn {
  3065. get {
  3066. return this.columnГруппа;
  3067. }
  3068. }
  3069. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3070. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3071. public global::System.Data.DataColumn КурсColumn {
  3072. get {
  3073. return this.columnКурс;
  3074. }
  3075. }
  3076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3078. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  3079. get {
  3080. return this.columnОчная_форма_обучения;
  3081. }
  3082. }
  3083. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3084. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3085. public global::System.Data.DataColumn Паспортные_данныеColumn {
  3086. get {
  3087. return this.columnПаспортные_данные;
  3088. }
  3089. }
  3090. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3091. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3092. public global::System.Data.DataColumn Название_специальностиColumn {
  3093. get {
  3094. return this.columnНазвание_специальности;
  3095. }
  3096. }
  3097. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3098. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3099. public global::System.Data.DataColumn Описание_специальностиColumn {
  3100. get {
  3101. return this.columnОписание_специальности;
  3102. }
  3103. }
  3104. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3105. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3106. [global::System.ComponentModel.Browsable(false)]
  3107. public int Count {
  3108. get {
  3109. return this.Rows.Count;
  3110. }
  3111. }
  3112. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3113. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3114. public Фильтр_ПИRow this[int index] {
  3115. get {
  3116. return ((Фильтр_ПИRow)(this.Rows[index]));
  3117. }
  3118. }
  3119. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3120. public event Фильтр_ПИRowChangeEventHandler Фильтр_ПИRowChanging;
  3121. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3122. public event Фильтр_ПИRowChangeEventHandler Фильтр_ПИRowChanged;
  3123. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3124. public event Фильтр_ПИRowChangeEventHandler Фильтр_ПИRowDeleting;
  3125. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3126. public event Фильтр_ПИRowChangeEventHandler Фильтр_ПИRowDeleted;
  3127. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3128. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3129. public void AddФильтр_ПИRow(Фильтр_ПИRow row) {
  3130. this.Rows.Add(row);
  3131. }
  3132. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3134. public Фильтр_ПИRow AddФильтр_ПИRow(string ФИО, System.DateTime Дата_рождения, string Родители, string Пол, string Адрес, string Телефон, System.DateTime Дата_поступления, long Номер_зачетки, string Группа, byte Курс, bool Очная_форма_обучения, string Паспортные_данные, string Название_специальности, string Описание_специальности) {
  3135. Фильтр_ПИRow rowФильтр_ПИRow = ((Фильтр_ПИRow)(this.NewRow()));
  3136. object[] columnValuesArray = new object[] {
  3137. ФИО,
  3138. Дата_рождения,
  3139. Родители,
  3140. Пол,
  3141. Адрес,
  3142. Телефон,
  3143. Дата_поступления,
  3144. Номер_зачетки,
  3145. Группа,
  3146. Курс,
  3147. Очная_форма_обучения,
  3148. Паспортные_данные,
  3149. Название_специальности,
  3150. Описание_специальности};
  3151. rowФильтр_ПИRow.ItemArray = columnValuesArray;
  3152. this.Rows.Add(rowФильтр_ПИRow);
  3153. return rowФильтр_ПИRow;
  3154. }
  3155. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3156. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3157. public override global::System.Data.DataTable Clone() {
  3158. Фильтр_ПИDataTable cln = ((Фильтр_ПИDataTable)(base.Clone()));
  3159. cln.InitVars();
  3160. return cln;
  3161. }
  3162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3164. protected override global::System.Data.DataTable CreateInstance() {
  3165. return new Фильтр_ПИDataTable();
  3166. }
  3167. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3168. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3169. internal void InitVars() {
  3170. this.columnФИО = base.Columns["ФИО"];
  3171. this.columnДата_рождения = base.Columns["Дата рождения"];
  3172. this.columnРодители = base.Columns["Родители"];
  3173. this.columnПол = base.Columns["Пол"];
  3174. this.columnАдрес = base.Columns["Адрес"];
  3175. this.columnТелефон = base.Columns["Телефон"];
  3176. this.columnДата_поступления = base.Columns["Дата поступления"];
  3177. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  3178. this.columnГруппа = base.Columns["Группа"];
  3179. this.columnКурс = base.Columns["Курс"];
  3180. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  3181. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  3182. this.columnНазвание_специальности = base.Columns["Название специальности"];
  3183. this.columnОписание_специальности = base.Columns["Описание специальности"];
  3184. }
  3185. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3186. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3187. private void InitClass() {
  3188. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  3189. base.Columns.Add(this.columnФИО);
  3190. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3191. base.Columns.Add(this.columnДата_рождения);
  3192. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  3193. base.Columns.Add(this.columnРодители);
  3194. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  3195. base.Columns.Add(this.columnПол);
  3196. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  3197. base.Columns.Add(this.columnАдрес);
  3198. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  3199. base.Columns.Add(this.columnТелефон);
  3200. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3201. base.Columns.Add(this.columnДата_поступления);
  3202. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  3203. base.Columns.Add(this.columnНомер_зачетки);
  3204. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  3205. base.Columns.Add(this.columnГруппа);
  3206. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  3207. base.Columns.Add(this.columnКурс);
  3208. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  3209. base.Columns.Add(this.columnОчная_форма_обучения);
  3210. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  3211. base.Columns.Add(this.columnПаспортные_данные);
  3212. this.columnНазвание_специальности = new global::System.Data.DataColumn("Название специальности", typeof(string), null, global::System.Data.MappingType.Element);
  3213. base.Columns.Add(this.columnНазвание_специальности);
  3214. this.columnОписание_специальности = new global::System.Data.DataColumn("Описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  3215. base.Columns.Add(this.columnОписание_специальности);
  3216. this.columnФИО.MaxLength = 50;
  3217. this.columnРодители.MaxLength = 50;
  3218. this.columnПол.MaxLength = 50;
  3219. this.columnАдрес.MaxLength = 2147483647;
  3220. this.columnТелефон.MaxLength = 15;
  3221. this.columnГруппа.MaxLength = 10;
  3222. this.columnПаспортные_данные.MaxLength = 2147483647;
  3223. this.columnНазвание_специальности.MaxLength = 50;
  3224. this.columnОписание_специальности.MaxLength = 2147483647;
  3225. }
  3226. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3227. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3228. public Фильтр_ПИRow NewФильтр_ПИRow() {
  3229. return ((Фильтр_ПИRow)(this.NewRow()));
  3230. }
  3231. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3232. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3233. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3234. return new Фильтр_ПИRow(builder);
  3235. }
  3236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3237. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3238. protected override global::System.Type GetRowType() {
  3239. return typeof(Фильтр_ПИRow);
  3240. }
  3241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3243. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3244. base.OnRowChanged(e);
  3245. if ((this.Фильтр_ПИRowChanged != null)) {
  3246. this.Фильтр_ПИRowChanged(this, new Фильтр_ПИRowChangeEvent(((Фильтр_ПИRow)(e.Row)), e.Action));
  3247. }
  3248. }
  3249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3251. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3252. base.OnRowChanging(e);
  3253. if ((this.Фильтр_ПИRowChanging != null)) {
  3254. this.Фильтр_ПИRowChanging(this, new Фильтр_ПИRowChangeEvent(((Фильтр_ПИRow)(e.Row)), e.Action));
  3255. }
  3256. }
  3257. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3258. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3259. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3260. base.OnRowDeleted(e);
  3261. if ((this.Фильтр_ПИRowDeleted != null)) {
  3262. this.Фильтр_ПИRowDeleted(this, new Фильтр_ПИRowChangeEvent(((Фильтр_ПИRow)(e.Row)), e.Action));
  3263. }
  3264. }
  3265. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3266. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3267. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3268. base.OnRowDeleting(e);
  3269. if ((this.Фильтр_ПИRowDeleting != null)) {
  3270. this.Фильтр_ПИRowDeleting(this, new Фильтр_ПИRowChangeEvent(((Фильтр_ПИRow)(e.Row)), e.Action));
  3271. }
  3272. }
  3273. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3274. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3275. public void RemoveФильтр_ПИRow(Фильтр_ПИRow row) {
  3276. this.Rows.Remove(row);
  3277. }
  3278. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3279. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3280. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3281. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3282. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3283. РожковDataSet ds = new РожковDataSet();
  3284. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3285. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3286. any1.MinOccurs = new decimal(0);
  3287. any1.MaxOccurs = decimal.MaxValue;
  3288. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3289. sequence.Items.Add(any1);
  3290. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3291. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3292. any2.MinOccurs = new decimal(1);
  3293. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3294. sequence.Items.Add(any2);
  3295. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3296. attribute1.Name = "namespace";
  3297. attribute1.FixedValue = ds.Namespace;
  3298. type.Attributes.Add(attribute1);
  3299. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3300. attribute2.Name = "tableTypeName";
  3301. attribute2.FixedValue = "Фильтр_ПИDataTable";
  3302. type.Attributes.Add(attribute2);
  3303. type.Particle = sequence;
  3304. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3305. if (xs.Contains(dsSchema.TargetNamespace)) {
  3306. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3307. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3308. try {
  3309. global::System.Xml.Schema.XmlSchema schema = null;
  3310. dsSchema.Write(s1);
  3311. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3312. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3313. s2.SetLength(0);
  3314. schema.Write(s2);
  3315. if ((s1.Length == s2.Length)) {
  3316. s1.Position = 0;
  3317. s2.Position = 0;
  3318. for (; ((s1.Position != s1.Length)
  3319. && (s1.ReadByte() == s2.ReadByte())); ) {
  3320. ;
  3321. }
  3322. if ((s1.Position == s1.Length)) {
  3323. return type;
  3324. }
  3325. }
  3326. }
  3327. }
  3328. finally {
  3329. if ((s1 != null)) {
  3330. s1.Close();
  3331. }
  3332. if ((s2 != null)) {
  3333. s2.Close();
  3334. }
  3335. }
  3336. }
  3337. xs.Add(dsSchema);
  3338. return type;
  3339. }
  3340. }
  3341. /// <summary>
  3342. ///Represents the strongly named DataTable class.
  3343. ///</summary>
  3344. [global::System.Serializable()]
  3345. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3346. public partial class Отображение_студентов_по_возрастуDataTable : global::System.Data.TypedTableBase<Отображение_студентов_по_возрастуRow> {
  3347. private global::System.Data.DataColumn columnФИО;
  3348. private global::System.Data.DataColumn columnДата_рождения;
  3349. private global::System.Data.DataColumn columnВозраст;
  3350. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3351. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3352. public Отображение_студентов_по_возрастуDataTable() {
  3353. this.TableName = "Отображение студентов по возрасту";
  3354. this.BeginInit();
  3355. this.InitClass();
  3356. this.EndInit();
  3357. }
  3358. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3359. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3360. internal Отображение_студентов_по_возрастуDataTable(global::System.Data.DataTable table) {
  3361. this.TableName = table.TableName;
  3362. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3363. this.CaseSensitive = table.CaseSensitive;
  3364. }
  3365. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3366. this.Locale = table.Locale;
  3367. }
  3368. if ((table.Namespace != table.DataSet.Namespace)) {
  3369. this.Namespace = table.Namespace;
  3370. }
  3371. this.Prefix = table.Prefix;
  3372. this.MinimumCapacity = table.MinimumCapacity;
  3373. }
  3374. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3375. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3376. protected Отображение_студентов_по_возрастуDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3377. base(info, context) {
  3378. this.InitVars();
  3379. }
  3380. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3381. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3382. public global::System.Data.DataColumn ФИОColumn {
  3383. get {
  3384. return this.columnФИО;
  3385. }
  3386. }
  3387. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3388. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3389. public global::System.Data.DataColumn Дата_рожденияColumn {
  3390. get {
  3391. return this.columnДата_рождения;
  3392. }
  3393. }
  3394. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3395. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3396. public global::System.Data.DataColumn ВозрастColumn {
  3397. get {
  3398. return this.columnВозраст;
  3399. }
  3400. }
  3401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3403. [global::System.ComponentModel.Browsable(false)]
  3404. public int Count {
  3405. get {
  3406. return this.Rows.Count;
  3407. }
  3408. }
  3409. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3410. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3411. public Отображение_студентов_по_возрастуRow this[int index] {
  3412. get {
  3413. return ((Отображение_студентов_по_возрастуRow)(this.Rows[index]));
  3414. }
  3415. }
  3416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3417. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowChanging;
  3418. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3419. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowChanged;
  3420. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3421. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowDeleting;
  3422. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3423. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowDeleted;
  3424. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3425. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3426. public void AddОтображение_студентов_по_возрастуRow(Отображение_студентов_по_возрастуRow row) {
  3427. this.Rows.Add(row);
  3428. }
  3429. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3430. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3431. public Отображение_студентов_по_возрастуRow AddОтображение_студентов_по_возрастуRow(string ФИО, System.DateTime Дата_рождения, int Возраст) {
  3432. Отображение_студентов_по_возрастуRow rowОтображение_студентов_по_возрастуRow = ((Отображение_студентов_по_возрастуRow)(this.NewRow()));
  3433. object[] columnValuesArray = new object[] {
  3434. ФИО,
  3435. Дата_рождения,
  3436. Возраст};
  3437. rowОтображение_студентов_по_возрастуRow.ItemArray = columnValuesArray;
  3438. this.Rows.Add(rowОтображение_студентов_по_возрастуRow);
  3439. return rowОтображение_студентов_по_возрастуRow;
  3440. }
  3441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3442. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3443. public override global::System.Data.DataTable Clone() {
  3444. Отображение_студентов_по_возрастуDataTable cln = ((Отображение_студентов_по_возрастуDataTable)(base.Clone()));
  3445. cln.InitVars();
  3446. return cln;
  3447. }
  3448. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3449. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3450. protected override global::System.Data.DataTable CreateInstance() {
  3451. return new Отображение_студентов_по_возрастуDataTable();
  3452. }
  3453. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3454. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3455. internal void InitVars() {
  3456. this.columnФИО = base.Columns["ФИО"];
  3457. this.columnДата_рождения = base.Columns["Дата рождения"];
  3458. this.columnВозраст = base.Columns["Возраст"];
  3459. }
  3460. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3461. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3462. private void InitClass() {
  3463. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  3464. base.Columns.Add(this.columnФИО);
  3465. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3466. base.Columns.Add(this.columnДата_рождения);
  3467. this.columnВозраст = new global::System.Data.DataColumn("Возраст", typeof(int), null, global::System.Data.MappingType.Element);
  3468. base.Columns.Add(this.columnВозраст);
  3469. this.columnФИО.MaxLength = 50;
  3470. this.columnВозраст.ReadOnly = true;
  3471. }
  3472. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3473. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3474. public Отображение_студентов_по_возрастуRow NewОтображение_студентов_по_возрастуRow() {
  3475. return ((Отображение_студентов_по_возрастуRow)(this.NewRow()));
  3476. }
  3477. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3478. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3479. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3480. return new Отображение_студентов_по_возрастуRow(builder);
  3481. }
  3482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3484. protected override global::System.Type GetRowType() {
  3485. return typeof(Отображение_студентов_по_возрастуRow);
  3486. }
  3487. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3488. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3489. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3490. base.OnRowChanged(e);
  3491. if ((this.Отображение_студентов_по_возрастуRowChanged != null)) {
  3492. this.Отображение_студентов_по_возрастуRowChanged(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3493. }
  3494. }
  3495. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3496. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3497. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3498. base.OnRowChanging(e);
  3499. if ((this.Отображение_студентов_по_возрастуRowChanging != null)) {
  3500. this.Отображение_студентов_по_возрастуRowChanging(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3501. }
  3502. }
  3503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3505. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3506. base.OnRowDeleted(e);
  3507. if ((this.Отображение_студентов_по_возрастуRowDeleted != null)) {
  3508. this.Отображение_студентов_по_возрастуRowDeleted(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3509. }
  3510. }
  3511. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3512. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3513. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3514. base.OnRowDeleting(e);
  3515. if ((this.Отображение_студентов_по_возрастуRowDeleting != null)) {
  3516. this.Отображение_студентов_по_возрастуRowDeleting(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3517. }
  3518. }
  3519. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3520. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3521. public void RemoveОтображение_студентов_по_возрастуRow(Отображение_студентов_по_возрастуRow row) {
  3522. this.Rows.Remove(row);
  3523. }
  3524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3526. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3527. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3528. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3529. РожковDataSet ds = new РожковDataSet();
  3530. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3531. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3532. any1.MinOccurs = new decimal(0);
  3533. any1.MaxOccurs = decimal.MaxValue;
  3534. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3535. sequence.Items.Add(any1);
  3536. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3537. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3538. any2.MinOccurs = new decimal(1);
  3539. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3540. sequence.Items.Add(any2);
  3541. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3542. attribute1.Name = "namespace";
  3543. attribute1.FixedValue = ds.Namespace;
  3544. type.Attributes.Add(attribute1);
  3545. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3546. attribute2.Name = "tableTypeName";
  3547. attribute2.FixedValue = "Отображение_студентов_по_возрастуDataTable";
  3548. type.Attributes.Add(attribute2);
  3549. type.Particle = sequence;
  3550. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3551. if (xs.Contains(dsSchema.TargetNamespace)) {
  3552. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3553. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3554. try {
  3555. global::System.Xml.Schema.XmlSchema schema = null;
  3556. dsSchema.Write(s1);
  3557. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3558. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3559. s2.SetLength(0);
  3560. schema.Write(s2);
  3561. if ((s1.Length == s2.Length)) {
  3562. s1.Position = 0;
  3563. s2.Position = 0;
  3564. for (; ((s1.Position != s1.Length)
  3565. && (s1.ReadByte() == s2.ReadByte())); ) {
  3566. ;
  3567. }
  3568. if ((s1.Position == s1.Length)) {
  3569. return type;
  3570. }
  3571. }
  3572. }
  3573. }
  3574. finally {
  3575. if ((s1 != null)) {
  3576. s1.Close();
  3577. }
  3578. if ((s2 != null)) {
  3579. s2.Close();
  3580. }
  3581. }
  3582. }
  3583. xs.Add(dsSchema);
  3584. return type;
  3585. }
  3586. }
  3587. /// <summary>
  3588. ///Represents the strongly named DataTable class.
  3589. ///</summary>
  3590. [global::System.Serializable()]
  3591. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3592. public partial class Отображение_студентов_по_среднему_баллуDataTable : global::System.Data.TypedTableBase<Отображение_студентов_по_среднему_баллуRow> {
  3593. private global::System.Data.DataColumn columnФИО_студента;
  3594. private global::System.Data.DataColumn columnДата_первого_экзамена;
  3595. private global::System.Data.DataColumn columnНаименование_предмета_первого_экзамена;
  3596. private global::System.Data.DataColumn columnОценка_первого_экзамена;
  3597. private global::System.Data.DataColumn columnДата_второго_экзамена;
  3598. private global::System.Data.DataColumn columnНаименование_предмета_второго_экзамена;
  3599. private global::System.Data.DataColumn columnОценка_второго_экзамена;
  3600. private global::System.Data.DataColumn columnНаименование_предмета_третьего_экзамена;
  3601. private global::System.Data.DataColumn columnОценка_третьего_экзамена;
  3602. private global::System.Data.DataColumn columnДата_третьего_экзамена;
  3603. private global::System.Data.DataColumn columnСредний_балл_студента_за_сесию;
  3604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3606. public Отображение_студентов_по_среднему_баллуDataTable() {
  3607. this.TableName = "Отображение студентов по среднему баллу";
  3608. this.BeginInit();
  3609. this.InitClass();
  3610. this.EndInit();
  3611. }
  3612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3614. internal Отображение_студентов_по_среднему_баллуDataTable(global::System.Data.DataTable table) {
  3615. this.TableName = table.TableName;
  3616. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3617. this.CaseSensitive = table.CaseSensitive;
  3618. }
  3619. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3620. this.Locale = table.Locale;
  3621. }
  3622. if ((table.Namespace != table.DataSet.Namespace)) {
  3623. this.Namespace = table.Namespace;
  3624. }
  3625. this.Prefix = table.Prefix;
  3626. this.MinimumCapacity = table.MinimumCapacity;
  3627. }
  3628. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3629. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3630. protected Отображение_студентов_по_среднему_баллуDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3631. base(info, context) {
  3632. this.InitVars();
  3633. }
  3634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3636. public global::System.Data.DataColumn ФИО_студентаColumn {
  3637. get {
  3638. return this.columnФИО_студента;
  3639. }
  3640. }
  3641. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3642. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3643. public global::System.Data.DataColumn Дата_первого_экзаменаColumn {
  3644. get {
  3645. return this.columnДата_первого_экзамена;
  3646. }
  3647. }
  3648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3650. public global::System.Data.DataColumn Наименование_предмета_первого_экзаменаColumn {
  3651. get {
  3652. return this.columnНаименование_предмета_первого_экзамена;
  3653. }
  3654. }
  3655. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3656. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3657. public global::System.Data.DataColumn Оценка_первого_экзаменаColumn {
  3658. get {
  3659. return this.columnОценка_первого_экзамена;
  3660. }
  3661. }
  3662. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3663. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3664. public global::System.Data.DataColumn Дата_второго_экзаменаColumn {
  3665. get {
  3666. return this.columnДата_второго_экзамена;
  3667. }
  3668. }
  3669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3671. public global::System.Data.DataColumn Наименование_предмета_второго_экзаменаColumn {
  3672. get {
  3673. return this.columnНаименование_предмета_второго_экзамена;
  3674. }
  3675. }
  3676. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3677. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3678. public global::System.Data.DataColumn Оценка_второго_экзаменаColumn {
  3679. get {
  3680. return this.columnОценка_второго_экзамена;
  3681. }
  3682. }
  3683. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3684. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3685. public global::System.Data.DataColumn Наименование_предмета_третьего_экзаменаColumn {
  3686. get {
  3687. return this.columnНаименование_предмета_третьего_экзамена;
  3688. }
  3689. }
  3690. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3691. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3692. public global::System.Data.DataColumn Оценка_третьего_экзаменаColumn {
  3693. get {
  3694. return this.columnОценка_третьего_экзамена;
  3695. }
  3696. }
  3697. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3698. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3699. public global::System.Data.DataColumn Дата_третьего_экзаменаColumn {
  3700. get {
  3701. return this.columnДата_третьего_экзамена;
  3702. }
  3703. }
  3704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3706. public global::System.Data.DataColumn Средний_балл_студента_за_сесиюColumn {
  3707. get {
  3708. return this.columnСредний_балл_студента_за_сесию;
  3709. }
  3710. }
  3711. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3712. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3713. [global::System.ComponentModel.Browsable(false)]
  3714. public int Count {
  3715. get {
  3716. return this.Rows.Count;
  3717. }
  3718. }
  3719. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3720. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3721. public Отображение_студентов_по_среднему_баллуRow this[int index] {
  3722. get {
  3723. return ((Отображение_студентов_по_среднему_баллуRow)(this.Rows[index]));
  3724. }
  3725. }
  3726. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3727. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowChanging;
  3728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3729. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowChanged;
  3730. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3731. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowDeleting;
  3732. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3733. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowDeleted;
  3734. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3735. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3736. public void AddОтображение_студентов_по_среднему_баллуRow(Отображение_студентов_по_среднему_баллуRow row) {
  3737. this.Rows.Add(row);
  3738. }
  3739. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3740. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3741. public Отображение_студентов_по_среднему_баллуRow AddОтображение_студентов_по_среднему_баллуRow(string ФИО_студента, System.DateTime Дата_первого_экзамена, string Наименование_предмета_первого_экзамена, byte Оценка_первого_экзамена, System.DateTime Дата_второго_экзамена, string Наименование_предмета_второго_экзамена, byte Оценка_второго_экзамена, string Наименование_предмета_третьего_экзамена, byte Оценка_третьего_экзамена, System.DateTime Дата_третьего_экзамена, float Средний_балл_студента_за_сесию) {
  3742. Отображение_студентов_по_среднему_баллуRow rowОтображение_студентов_по_среднему_баллуRow = ((Отображение_студентов_по_среднему_баллуRow)(this.NewRow()));
  3743. object[] columnValuesArray = new object[] {
  3744. ФИО_студента,
  3745. Дата_первого_экзамена,
  3746. Наименование_предмета_первого_экзамена,
  3747. Оценка_первого_экзамена,
  3748. Дата_второго_экзамена,
  3749. Наименование_предмета_второго_экзамена,
  3750. Оценка_второго_экзамена,
  3751. Наименование_предмета_третьего_экзамена,
  3752. Оценка_третьего_экзамена,
  3753. Дата_третьего_экзамена,
  3754. Средний_балл_студента_за_сесию};
  3755. rowОтображение_студентов_по_среднему_баллуRow.ItemArray = columnValuesArray;
  3756. this.Rows.Add(rowОтображение_студентов_по_среднему_баллуRow);
  3757. return rowОтображение_студентов_по_среднему_баллуRow;
  3758. }
  3759. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3760. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3761. public override global::System.Data.DataTable Clone() {
  3762. Отображение_студентов_по_среднему_баллуDataTable cln = ((Отображение_студентов_по_среднему_баллуDataTable)(base.Clone()));
  3763. cln.InitVars();
  3764. return cln;
  3765. }
  3766. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3767. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3768. protected override global::System.Data.DataTable CreateInstance() {
  3769. return new Отображение_студентов_по_среднему_баллуDataTable();
  3770. }
  3771. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3772. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3773. internal void InitVars() {
  3774. this.columnФИО_студента = base.Columns["ФИО студента"];
  3775. this.columnДата_первого_экзамена = base.Columns["Дата первого экзамена"];
  3776. this.columnНаименование_предмета_первого_экзамена = base.Columns["Наименование предмета первого экзамена"];
  3777. this.columnОценка_первого_экзамена = base.Columns["Оценка первого экзамена"];
  3778. this.columnДата_второго_экзамена = base.Columns["Дата второго экзамена"];
  3779. this.columnНаименование_предмета_второго_экзамена = base.Columns["Наименование предмета второго экзамена"];
  3780. this.columnОценка_второго_экзамена = base.Columns["Оценка второго экзамена"];
  3781. this.columnНаименование_предмета_третьего_экзамена = base.Columns["Наименование предмета третьего экзамена"];
  3782. this.columnОценка_третьего_экзамена = base.Columns["Оценка третьего экзамена"];
  3783. this.columnДата_третьего_экзамена = base.Columns["Дата третьего экзамена"];
  3784. this.columnСредний_балл_студента_за_сесию = base.Columns["Средний балл студента за сесию"];
  3785. }
  3786. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3787. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3788. private void InitClass() {
  3789. this.columnФИО_студента = new global::System.Data.DataColumn("ФИО студента", typeof(string), null, global::System.Data.MappingType.Element);
  3790. base.Columns.Add(this.columnФИО_студента);
  3791. this.columnДата_первого_экзамена = new global::System.Data.DataColumn("Дата первого экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3792. base.Columns.Add(this.columnДата_первого_экзамена);
  3793. this.columnНаименование_предмета_первого_экзамена = new global::System.Data.DataColumn("Наименование предмета первого экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  3794. base.Columns.Add(this.columnНаименование_предмета_первого_экзамена);
  3795. this.columnОценка_первого_экзамена = new global::System.Data.DataColumn("Оценка первого экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  3796. base.Columns.Add(this.columnОценка_первого_экзамена);
  3797. this.columnДата_второго_экзамена = new global::System.Data.DataColumn("Дата второго экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3798. base.Columns.Add(this.columnДата_второго_экзамена);
  3799. this.columnНаименование_предмета_второго_экзамена = new global::System.Data.DataColumn("Наименование предмета второго экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  3800. base.Columns.Add(this.columnНаименование_предмета_второго_экзамена);
  3801. this.columnОценка_второго_экзамена = new global::System.Data.DataColumn("Оценка второго экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  3802. base.Columns.Add(this.columnОценка_второго_экзамена);
  3803. this.columnНаименование_предмета_третьего_экзамена = new global::System.Data.DataColumn("Наименование предмета третьего экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  3804. base.Columns.Add(this.columnНаименование_предмета_третьего_экзамена);
  3805. this.columnОценка_третьего_экзамена = new global::System.Data.DataColumn("Оценка третьего экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  3806. base.Columns.Add(this.columnОценка_третьего_экзамена);
  3807. this.columnДата_третьего_экзамена = new global::System.Data.DataColumn("Дата третьего экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3808. base.Columns.Add(this.columnДата_третьего_экзамена);
  3809. this.columnСредний_балл_студента_за_сесию = new global::System.Data.DataColumn("Средний балл студента за сесию", typeof(float), null, global::System.Data.MappingType.Element);
  3810. base.Columns.Add(this.columnСредний_балл_студента_за_сесию);
  3811. this.columnФИО_студента.MaxLength = 50;
  3812. this.columnНаименование_предмета_первого_экзамена.MaxLength = 50;
  3813. this.columnНаименование_предмета_второго_экзамена.MaxLength = 50;
  3814. this.columnНаименование_предмета_третьего_экзамена.MaxLength = 50;
  3815. }
  3816. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3817. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3818. public Отображение_студентов_по_среднему_баллуRow NewОтображение_студентов_по_среднему_баллуRow() {
  3819. return ((Отображение_студентов_по_среднему_баллуRow)(this.NewRow()));
  3820. }
  3821. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3822. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3823. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3824. return new Отображение_студентов_по_среднему_баллуRow(builder);
  3825. }
  3826. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3827. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3828. protected override global::System.Type GetRowType() {
  3829. return typeof(Отображение_студентов_по_среднему_баллуRow);
  3830. }
  3831. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3832. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3833. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3834. base.OnRowChanged(e);
  3835. if ((this.Отображение_студентов_по_среднему_баллуRowChanged != null)) {
  3836. this.Отображение_студентов_по_среднему_баллуRowChanged(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  3837. }
  3838. }
  3839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3841. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3842. base.OnRowChanging(e);
  3843. if ((this.Отображение_студентов_по_среднему_баллуRowChanging != null)) {
  3844. this.Отображение_студентов_по_среднему_баллуRowChanging(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  3845. }
  3846. }
  3847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3849. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3850. base.OnRowDeleted(e);
  3851. if ((this.Отображение_студентов_по_среднему_баллуRowDeleted != null)) {
  3852. this.Отображение_студентов_по_среднему_баллуRowDeleted(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  3853. }
  3854. }
  3855. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3856. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3857. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3858. base.OnRowDeleting(e);
  3859. if ((this.Отображение_студентов_по_среднему_баллуRowDeleting != null)) {
  3860. this.Отображение_студентов_по_среднему_баллуRowDeleting(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  3861. }
  3862. }
  3863. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3864. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3865. public void RemoveОтображение_студентов_по_среднему_баллуRow(Отображение_студентов_по_среднему_баллуRow row) {
  3866. this.Rows.Remove(row);
  3867. }
  3868. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3869. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3870. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3871. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3872. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3873. РожковDataSet ds = new РожковDataSet();
  3874. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3875. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3876. any1.MinOccurs = new decimal(0);
  3877. any1.MaxOccurs = decimal.MaxValue;
  3878. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3879. sequence.Items.Add(any1);
  3880. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3881. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3882. any2.MinOccurs = new decimal(1);
  3883. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3884. sequence.Items.Add(any2);
  3885. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3886. attribute1.Name = "namespace";
  3887. attribute1.FixedValue = ds.Namespace;
  3888. type.Attributes.Add(attribute1);
  3889. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3890. attribute2.Name = "tableTypeName";
  3891. attribute2.FixedValue = "Отображение_студентов_по_среднему_баллуDataTable";
  3892. type.Attributes.Add(attribute2);
  3893. type.Particle = sequence;
  3894. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3895. if (xs.Contains(dsSchema.TargetNamespace)) {
  3896. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3897. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3898. try {
  3899. global::System.Xml.Schema.XmlSchema schema = null;
  3900. dsSchema.Write(s1);
  3901. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3902. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3903. s2.SetLength(0);
  3904. schema.Write(s2);
  3905. if ((s1.Length == s2.Length)) {
  3906. s1.Position = 0;
  3907. s2.Position = 0;
  3908. for (; ((s1.Position != s1.Length)
  3909. && (s1.ReadByte() == s2.ReadByte())); ) {
  3910. ;
  3911. }
  3912. if ((s1.Position == s1.Length)) {
  3913. return type;
  3914. }
  3915. }
  3916. }
  3917. }
  3918. finally {
  3919. if ((s1 != null)) {
  3920. s1.Close();
  3921. }
  3922. if ((s2 != null)) {
  3923. s2.Close();
  3924. }
  3925. }
  3926. }
  3927. xs.Add(dsSchema);
  3928. return type;
  3929. }
  3930. }
  3931. /// <summary>
  3932. ///Represents the strongly named DataTable class.
  3933. ///</summary>
  3934. [global::System.Serializable()]
  3935. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3936. public partial class Отображение_студентов_по_ФИОDataTable : global::System.Data.TypedTableBase<Отображение_студентов_по_ФИОRow> {
  3937. private global::System.Data.DataColumn columnКод_студента;
  3938. private global::System.Data.DataColumn columnФИО;
  3939. private global::System.Data.DataColumn columnПол;
  3940. private global::System.Data.DataColumn columnДата_рождения;
  3941. private global::System.Data.DataColumn columnРодители;
  3942. private global::System.Data.DataColumn columnАдрес;
  3943. private global::System.Data.DataColumn columnТелефон;
  3944. private global::System.Data.DataColumn columnПаспортные_данные;
  3945. private global::System.Data.DataColumn columnНомер_зачетки;
  3946. private global::System.Data.DataColumn columnДата_поступления;
  3947. private global::System.Data.DataColumn columnГруппа;
  3948. private global::System.Data.DataColumn columnКурс;
  3949. private global::System.Data.DataColumn columnКод_специальности;
  3950. private global::System.Data.DataColumn columnОчная_форма_обучения;
  3951. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3952. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3953. public Отображение_студентов_по_ФИОDataTable() {
  3954. this.TableName = "Отображение студентов по ФИО";
  3955. this.BeginInit();
  3956. this.InitClass();
  3957. this.EndInit();
  3958. }
  3959. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3960. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3961. internal Отображение_студентов_по_ФИОDataTable(global::System.Data.DataTable table) {
  3962. this.TableName = table.TableName;
  3963. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3964. this.CaseSensitive = table.CaseSensitive;
  3965. }
  3966. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3967. this.Locale = table.Locale;
  3968. }
  3969. if ((table.Namespace != table.DataSet.Namespace)) {
  3970. this.Namespace = table.Namespace;
  3971. }
  3972. this.Prefix = table.Prefix;
  3973. this.MinimumCapacity = table.MinimumCapacity;
  3974. }
  3975. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3976. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3977. protected Отображение_студентов_по_ФИОDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3978. base(info, context) {
  3979. this.InitVars();
  3980. }
  3981. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3982. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3983. public global::System.Data.DataColumn Код_студентаColumn {
  3984. get {
  3985. return this.columnКод_студента;
  3986. }
  3987. }
  3988. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3989. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3990. public global::System.Data.DataColumn ФИОColumn {
  3991. get {
  3992. return this.columnФИО;
  3993. }
  3994. }
  3995. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3996. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3997. public global::System.Data.DataColumn ПолColumn {
  3998. get {
  3999. return this.columnПол;
  4000. }
  4001. }
  4002. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4003. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4004. public global::System.Data.DataColumn Дата_рожденияColumn {
  4005. get {
  4006. return this.columnДата_рождения;
  4007. }
  4008. }
  4009. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4010. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4011. public global::System.Data.DataColumn РодителиColumn {
  4012. get {
  4013. return this.columnРодители;
  4014. }
  4015. }
  4016. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4017. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4018. public global::System.Data.DataColumn АдресColumn {
  4019. get {
  4020. return this.columnАдрес;
  4021. }
  4022. }
  4023. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4024. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4025. public global::System.Data.DataColumn ТелефонColumn {
  4026. get {
  4027. return this.columnТелефон;
  4028. }
  4029. }
  4030. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4031. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4032. public global::System.Data.DataColumn Паспортные_данныеColumn {
  4033. get {
  4034. return this.columnПаспортные_данные;
  4035. }
  4036. }
  4037. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4038. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4039. public global::System.Data.DataColumn Номер_зачеткиColumn {
  4040. get {
  4041. return this.columnНомер_зачетки;
  4042. }
  4043. }
  4044. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4045. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4046. public global::System.Data.DataColumn Дата_поступленияColumn {
  4047. get {
  4048. return this.columnДата_поступления;
  4049. }
  4050. }
  4051. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4052. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4053. public global::System.Data.DataColumn ГруппаColumn {
  4054. get {
  4055. return this.columnГруппа;
  4056. }
  4057. }
  4058. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4059. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4060. public global::System.Data.DataColumn КурсColumn {
  4061. get {
  4062. return this.columnКурс;
  4063. }
  4064. }
  4065. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4066. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4067. public global::System.Data.DataColumn Код_специальностиColumn {
  4068. get {
  4069. return this.columnКод_специальности;
  4070. }
  4071. }
  4072. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4073. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4074. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  4075. get {
  4076. return this.columnОчная_форма_обучения;
  4077. }
  4078. }
  4079. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4080. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4081. [global::System.ComponentModel.Browsable(false)]
  4082. public int Count {
  4083. get {
  4084. return this.Rows.Count;
  4085. }
  4086. }
  4087. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4088. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4089. public Отображение_студентов_по_ФИОRow this[int index] {
  4090. get {
  4091. return ((Отображение_студентов_по_ФИОRow)(this.Rows[index]));
  4092. }
  4093. }
  4094. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4095. public event Отображение_студентов_по_ФИОRowChangeEventHandler Отображение_студентов_по_ФИОRowChanging;
  4096. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4097. public event Отображение_студентов_по_ФИОRowChangeEventHandler Отображение_студентов_по_ФИОRowChanged;
  4098. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4099. public event Отображение_студентов_по_ФИОRowChangeEventHandler Отображение_студентов_по_ФИОRowDeleting;
  4100. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4101. public event Отображение_студентов_по_ФИОRowChangeEventHandler Отображение_студентов_по_ФИОRowDeleted;
  4102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4104. public void AddОтображение_студентов_по_ФИОRow(Отображение_студентов_по_ФИОRow row) {
  4105. this.Rows.Add(row);
  4106. }
  4107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4108. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4109. public Отображение_студентов_по_ФИОRow AddОтображение_студентов_по_ФИОRow(string ФИО, string Пол, System.DateTime Дата_рождения, string Родители, string Адрес, string Телефон, string Паспортные_данные, long Номер_зачетки, System.DateTime Дата_поступления, string Группа, byte Курс, long Код_специальности, bool Очная_форма_обучения) {
  4110. Отображение_студентов_по_ФИОRow rowОтображение_студентов_по_ФИОRow = ((Отображение_студентов_по_ФИОRow)(this.NewRow()));
  4111. object[] columnValuesArray = new object[] {
  4112. null,
  4113. ФИО,
  4114. Пол,
  4115. Дата_рождения,
  4116. Родители,
  4117. Адрес,
  4118. Телефон,
  4119. Паспортные_данные,
  4120. Номер_зачетки,
  4121. Дата_поступления,
  4122. Группа,
  4123. Курс,
  4124. Код_специальности,
  4125. Очная_форма_обучения};
  4126. rowОтображение_студентов_по_ФИОRow.ItemArray = columnValuesArray;
  4127. this.Rows.Add(rowОтображение_студентов_по_ФИОRow);
  4128. return rowОтображение_студентов_по_ФИОRow;
  4129. }
  4130. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4131. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4132. public Отображение_студентов_по_ФИОRow FindByКод_студента(long Код_студента) {
  4133. return ((Отображение_студентов_по_ФИОRow)(this.Rows.Find(new object[] {
  4134. Код_студента})));
  4135. }
  4136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4137. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4138. public override global::System.Data.DataTable Clone() {
  4139. Отображение_студентов_по_ФИОDataTable cln = ((Отображение_студентов_по_ФИОDataTable)(base.Clone()));
  4140. cln.InitVars();
  4141. return cln;
  4142. }
  4143. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4144. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4145. protected override global::System.Data.DataTable CreateInstance() {
  4146. return new Отображение_студентов_по_ФИОDataTable();
  4147. }
  4148. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4149. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4150. internal void InitVars() {
  4151. this.columnКод_студента = base.Columns["Код студента"];
  4152. this.columnФИО = base.Columns["ФИО"];
  4153. this.columnПол = base.Columns["Пол"];
  4154. this.columnДата_рождения = base.Columns["Дата рождения"];
  4155. this.columnРодители = base.Columns["Родители"];
  4156. this.columnАдрес = base.Columns["Адрес"];
  4157. this.columnТелефон = base.Columns["Телефон"];
  4158. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  4159. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  4160. this.columnДата_поступления = base.Columns["Дата поступления"];
  4161. this.columnГруппа = base.Columns["Группа"];
  4162. this.columnКурс = base.Columns["Курс"];
  4163. this.columnКод_специальности = base.Columns["Код специальности"];
  4164. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  4165. }
  4166. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4167. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4168. private void InitClass() {
  4169. this.columnКод_студента = new global::System.Data.DataColumn("Код студента", typeof(long), null, global::System.Data.MappingType.Element);
  4170. base.Columns.Add(this.columnКод_студента);
  4171. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  4172. base.Columns.Add(this.columnФИО);
  4173. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  4174. base.Columns.Add(this.columnПол);
  4175. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  4176. base.Columns.Add(this.columnДата_рождения);
  4177. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  4178. base.Columns.Add(this.columnРодители);
  4179. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  4180. base.Columns.Add(this.columnАдрес);
  4181. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  4182. base.Columns.Add(this.columnТелефон);
  4183. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  4184. base.Columns.Add(this.columnПаспортные_данные);
  4185. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  4186. base.Columns.Add(this.columnНомер_зачетки);
  4187. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  4188. base.Columns.Add(this.columnДата_поступления);
  4189. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  4190. base.Columns.Add(this.columnГруппа);
  4191. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  4192. base.Columns.Add(this.columnКурс);
  4193. this.columnКод_специальности = new global::System.Data.DataColumn("Код специальности", typeof(long), null, global::System.Data.MappingType.Element);
  4194. base.Columns.Add(this.columnКод_специальности);
  4195. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  4196. base.Columns.Add(this.columnОчная_форма_обучения);
  4197. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  4198. this.columnКод_студента}, true));
  4199. this.columnКод_студента.AutoIncrement = true;
  4200. this.columnКод_студента.AllowDBNull = false;
  4201. this.columnКод_студента.ReadOnly = true;
  4202. this.columnКод_студента.Unique = true;
  4203. this.columnФИО.MaxLength = 50;
  4204. this.columnПол.MaxLength = 50;
  4205. this.columnРодители.MaxLength = 50;
  4206. this.columnАдрес.MaxLength = 2147483647;
  4207. this.columnТелефон.MaxLength = 15;
  4208. this.columnПаспортные_данные.MaxLength = 2147483647;
  4209. this.columnГруппа.MaxLength = 10;
  4210. }
  4211. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4212. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4213. public Отображение_студентов_по_ФИОRow NewОтображение_студентов_по_ФИОRow() {
  4214. return ((Отображение_студентов_по_ФИОRow)(this.NewRow()));
  4215. }
  4216. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4217. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4218. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  4219. return new Отображение_студентов_по_ФИОRow(builder);
  4220. }
  4221. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4222. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4223. protected override global::System.Type GetRowType() {
  4224. return typeof(Отображение_студентов_по_ФИОRow);
  4225. }
  4226. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4227. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4228. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  4229. base.OnRowChanged(e);
  4230. if ((this.Отображение_студентов_по_ФИОRowChanged != null)) {
  4231. this.Отображение_студентов_по_ФИОRowChanged(this, new Отображение_студентов_по_ФИОRowChangeEvent(((Отображение_студентов_по_ФИОRow)(e.Row)), e.Action));
  4232. }
  4233. }
  4234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4236. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  4237. base.OnRowChanging(e);
  4238. if ((this.Отображение_студентов_по_ФИОRowChanging != null)) {
  4239. this.Отображение_студентов_по_ФИОRowChanging(this, new Отображение_студентов_по_ФИОRowChangeEvent(((Отображение_студентов_по_ФИОRow)(e.Row)), e.Action));
  4240. }
  4241. }
  4242. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4243. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4244. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  4245. base.OnRowDeleted(e);
  4246. if ((this.Отображение_студентов_по_ФИОRowDeleted != null)) {
  4247. this.Отображение_студентов_по_ФИОRowDeleted(this, new Отображение_студентов_по_ФИОRowChangeEvent(((Отображение_студентов_по_ФИОRow)(e.Row)), e.Action));
  4248. }
  4249. }
  4250. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4251. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4252. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  4253. base.OnRowDeleting(e);
  4254. if ((this.Отображение_студентов_по_ФИОRowDeleting != null)) {
  4255. this.Отображение_студентов_по_ФИОRowDeleting(this, new Отображение_студентов_по_ФИОRowChangeEvent(((Отображение_студентов_по_ФИОRow)(e.Row)), e.Action));
  4256. }
  4257. }
  4258. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4259. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4260. public void RemoveОтображение_студентов_по_ФИОRow(Отображение_студентов_по_ФИОRow row) {
  4261. this.Rows.Remove(row);
  4262. }
  4263. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4264. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4265. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  4266. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  4267. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  4268. РожковDataSet ds = new РожковDataSet();
  4269. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  4270. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  4271. any1.MinOccurs = new decimal(0);
  4272. any1.MaxOccurs = decimal.MaxValue;
  4273. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4274. sequence.Items.Add(any1);
  4275. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  4276. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  4277. any2.MinOccurs = new decimal(1);
  4278. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4279. sequence.Items.Add(any2);
  4280. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4281. attribute1.Name = "namespace";
  4282. attribute1.FixedValue = ds.Namespace;
  4283. type.Attributes.Add(attribute1);
  4284. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4285. attribute2.Name = "tableTypeName";
  4286. attribute2.FixedValue = "Отображение_студентов_по_ФИОDataTable";
  4287. type.Attributes.Add(attribute2);
  4288. type.Particle = sequence;
  4289. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  4290. if (xs.Contains(dsSchema.TargetNamespace)) {
  4291. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  4292. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  4293. try {
  4294. global::System.Xml.Schema.XmlSchema schema = null;
  4295. dsSchema.Write(s1);
  4296. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  4297. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  4298. s2.SetLength(0);
  4299. schema.Write(s2);
  4300. if ((s1.Length == s2.Length)) {
  4301. s1.Position = 0;
  4302. s2.Position = 0;
  4303. for (; ((s1.Position != s1.Length)
  4304. && (s1.ReadByte() == s2.ReadByte())); ) {
  4305. ;
  4306. }
  4307. if ((s1.Position == s1.Length)) {
  4308. return type;
  4309. }
  4310. }
  4311. }
  4312. }
  4313. finally {
  4314. if ((s1 != null)) {
  4315. s1.Close();
  4316. }
  4317. if ((s2 != null)) {
  4318. s2.Close();
  4319. }
  4320. }
  4321. }
  4322. xs.Add(dsSchema);
  4323. return type;
  4324. }
  4325. }
  4326. /// <summary>
  4327. ///Represents the strongly named DataTable class.
  4328. ///</summary>
  4329. [global::System.Serializable()]
  4330. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  4331. public partial class Среднее_трёх_величинDataTable : global::System.Data.TypedTableBase<Среднее_трёх_величинRow> {
  4332. private global::System.Data.DataColumn columnСреднее_значение;
  4333. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4334. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4335. public Среднее_трёх_величинDataTable() {
  4336. this.TableName = "Среднее трёх величин";
  4337. this.BeginInit();
  4338. this.InitClass();
  4339. this.EndInit();
  4340. }
  4341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4343. internal Среднее_трёх_величинDataTable(global::System.Data.DataTable table) {
  4344. this.TableName = table.TableName;
  4345. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  4346. this.CaseSensitive = table.CaseSensitive;
  4347. }
  4348. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  4349. this.Locale = table.Locale;
  4350. }
  4351. if ((table.Namespace != table.DataSet.Namespace)) {
  4352. this.Namespace = table.Namespace;
  4353. }
  4354. this.Prefix = table.Prefix;
  4355. this.MinimumCapacity = table.MinimumCapacity;
  4356. }
  4357. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4358. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4359. protected Среднее_трёх_величинDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  4360. base(info, context) {
  4361. this.InitVars();
  4362. }
  4363. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4364. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4365. public global::System.Data.DataColumn Среднее_значениеColumn {
  4366. get {
  4367. return this.columnСреднее_значение;
  4368. }
  4369. }
  4370. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4371. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4372. [global::System.ComponentModel.Browsable(false)]
  4373. public int Count {
  4374. get {
  4375. return this.Rows.Count;
  4376. }
  4377. }
  4378. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4379. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4380. public Среднее_трёх_величинRow this[int index] {
  4381. get {
  4382. return ((Среднее_трёх_величинRow)(this.Rows[index]));
  4383. }
  4384. }
  4385. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4386. public event Среднее_трёх_величинRowChangeEventHandler Среднее_трёх_величинRowChanging;
  4387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4388. public event Среднее_трёх_величинRowChangeEventHandler Среднее_трёх_величинRowChanged;
  4389. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4390. public event Среднее_трёх_величинRowChangeEventHandler Среднее_трёх_величинRowDeleting;
  4391. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4392. public event Среднее_трёх_величинRowChangeEventHandler Среднее_трёх_величинRowDeleted;
  4393. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4394. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4395. public void AddСреднее_трёх_величинRow(Среднее_трёх_величинRow row) {
  4396. this.Rows.Add(row);
  4397. }
  4398. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4399. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4400. public Среднее_трёх_величинRow AddСреднее_трёх_величинRow(float Среднее_значение) {
  4401. Среднее_трёх_величинRow rowСреднее_трёх_величинRow = ((Среднее_трёх_величинRow)(this.NewRow()));
  4402. object[] columnValuesArray = new object[] {
  4403. Среднее_значение};
  4404. rowСреднее_трёх_величинRow.ItemArray = columnValuesArray;
  4405. this.Rows.Add(rowСреднее_трёх_величинRow);
  4406. return rowСреднее_трёх_величинRow;
  4407. }
  4408. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4409. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4410. public override global::System.Data.DataTable Clone() {
  4411. Среднее_трёх_величинDataTable cln = ((Среднее_трёх_величинDataTable)(base.Clone()));
  4412. cln.InitVars();
  4413. return cln;
  4414. }
  4415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4417. protected override global::System.Data.DataTable CreateInstance() {
  4418. return new Среднее_трёх_величинDataTable();
  4419. }
  4420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4422. internal void InitVars() {
  4423. this.columnСреднее_значение = base.Columns["Среднее значение"];
  4424. }
  4425. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4426. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4427. private void InitClass() {
  4428. this.columnСреднее_значение = new global::System.Data.DataColumn("Среднее значение", typeof(float), null, global::System.Data.MappingType.Element);
  4429. base.Columns.Add(this.columnСреднее_значение);
  4430. this.columnСреднее_значение.ReadOnly = true;
  4431. }
  4432. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4433. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4434. public Среднее_трёх_величинRow NewСреднее_трёх_величинRow() {
  4435. return ((Среднее_трёх_величинRow)(this.NewRow()));
  4436. }
  4437. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4438. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4439. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  4440. return new Среднее_трёх_величинRow(builder);
  4441. }
  4442. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4443. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4444. protected override global::System.Type GetRowType() {
  4445. return typeof(Среднее_трёх_величинRow);
  4446. }
  4447. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4448. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4449. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  4450. base.OnRowChanged(e);
  4451. if ((this.Среднее_трёх_величинRowChanged != null)) {
  4452. this.Среднее_трёх_величинRowChanged(this, new Среднее_трёх_величинRowChangeEvent(((Среднее_трёх_величинRow)(e.Row)), e.Action));
  4453. }
  4454. }
  4455. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4456. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4457. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  4458. base.OnRowChanging(e);
  4459. if ((this.Среднее_трёх_величинRowChanging != null)) {
  4460. this.Среднее_трёх_величинRowChanging(this, new Среднее_трёх_величинRowChangeEvent(((Среднее_трёх_величинRow)(e.Row)), e.Action));
  4461. }
  4462. }
  4463. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4464. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4465. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  4466. base.OnRowDeleted(e);
  4467. if ((this.Среднее_трёх_величинRowDeleted != null)) {
  4468. this.Среднее_трёх_величинRowDeleted(this, new Среднее_трёх_величинRowChangeEvent(((Среднее_трёх_величинRow)(e.Row)), e.Action));
  4469. }
  4470. }
  4471. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4472. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4473. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  4474. base.OnRowDeleting(e);
  4475. if ((this.Среднее_трёх_величинRowDeleting != null)) {
  4476. this.Среднее_трёх_величинRowDeleting(this, new Среднее_трёх_величинRowChangeEvent(((Среднее_трёх_величинRow)(e.Row)), e.Action));
  4477. }
  4478. }
  4479. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4480. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4481. public void RemoveСреднее_трёх_величинRow(Среднее_трёх_величинRow row) {
  4482. this.Rows.Remove(row);
  4483. }
  4484. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4485. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4486. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  4487. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  4488. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  4489. РожковDataSet ds = new РожковDataSet();
  4490. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  4491. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  4492. any1.MinOccurs = new decimal(0);
  4493. any1.MaxOccurs = decimal.MaxValue;
  4494. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4495. sequence.Items.Add(any1);
  4496. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  4497. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  4498. any2.MinOccurs = new decimal(1);
  4499. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4500. sequence.Items.Add(any2);
  4501. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4502. attribute1.Name = "namespace";
  4503. attribute1.FixedValue = ds.Namespace;
  4504. type.Attributes.Add(attribute1);
  4505. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4506. attribute2.Name = "tableTypeName";
  4507. attribute2.FixedValue = "Среднее_трёх_величинDataTable";
  4508. type.Attributes.Add(attribute2);
  4509. type.Particle = sequence;
  4510. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  4511. if (xs.Contains(dsSchema.TargetNamespace)) {
  4512. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  4513. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  4514. try {
  4515. global::System.Xml.Schema.XmlSchema schema = null;
  4516. dsSchema.Write(s1);
  4517. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  4518. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  4519. s2.SetLength(0);
  4520. schema.Write(s2);
  4521. if ((s1.Length == s2.Length)) {
  4522. s1.Position = 0;
  4523. s2.Position = 0;
  4524. for (; ((s1.Position != s1.Length)
  4525. && (s1.ReadByte() == s2.ReadByte())); ) {
  4526. ;
  4527. }
  4528. if ((s1.Position == s1.Length)) {
  4529. return type;
  4530. }
  4531. }
  4532. }
  4533. }
  4534. finally {
  4535. if ((s1 != null)) {
  4536. s1.Close();
  4537. }
  4538. if ((s2 != null)) {
  4539. s2.Close();
  4540. }
  4541. }
  4542. }
  4543. xs.Add(dsSchema);
  4544. return type;
  4545. }
  4546. }
  4547. /// <summary>
  4548. ///Represents strongly named DataRow class.
  4549. ///</summary>
  4550. public partial class ОценкиRow : global::System.Data.DataRow {
  4551. private ОценкиDataTable tableОценки;
  4552. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4554. internal ОценкиRow(global::System.Data.DataRowBuilder rb) :
  4555. base(rb) {
  4556. this.tableОценки = ((ОценкиDataTable)(this.Table));
  4557. }
  4558. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4559. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4560. public long Код_студента {
  4561. get {
  4562. try {
  4563. return ((long)(this[this.tableОценки.Код_студентаColumn]));
  4564. }
  4565. catch (global::System.InvalidCastException e) {
  4566. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код студента\' в таблице \'Оценки\' равно DBNull.", e);
  4567. }
  4568. }
  4569. set {
  4570. this[this.tableОценки.Код_студентаColumn] = value;
  4571. }
  4572. }
  4573. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4575. public System.DateTime Дата_экзамена1 {
  4576. get {
  4577. try {
  4578. return ((global::System.DateTime)(this[this.tableОценки.Дата_экзамена1Column]));
  4579. }
  4580. catch (global::System.InvalidCastException e) {
  4581. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата экзамена1\' в таблице \'Оценки\' равно DBNull.", e);
  4582. }
  4583. }
  4584. set {
  4585. this[this.tableОценки.Дата_экзамена1Column] = value;
  4586. }
  4587. }
  4588. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4589. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4590. public long Код_предмета1 {
  4591. get {
  4592. try {
  4593. return ((long)(this[this.tableОценки.Код_предмета1Column]));
  4594. }
  4595. catch (global::System.InvalidCastException e) {
  4596. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код предмета1\' в таблице \'Оценки\' равно DBNull.", e);
  4597. }
  4598. }
  4599. set {
  4600. this[this.tableОценки.Код_предмета1Column] = value;
  4601. }
  4602. }
  4603. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4604. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4605. public byte Оценка_1 {
  4606. get {
  4607. try {
  4608. return ((byte)(this[this.tableОценки.Оценка_1Column]));
  4609. }
  4610. catch (global::System.InvalidCastException e) {
  4611. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка 1\' в таблице \'Оценки\' равно DBNull.", e);
  4612. }
  4613. }
  4614. set {
  4615. this[this.tableОценки.Оценка_1Column] = value;
  4616. }
  4617. }
  4618. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4619. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4620. public System.DateTime Дата_экзамена_2 {
  4621. get {
  4622. try {
  4623. return ((global::System.DateTime)(this[this.tableОценки.Дата_экзамена_2Column]));
  4624. }
  4625. catch (global::System.InvalidCastException e) {
  4626. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата экзамена 2\' в таблице \'Оценки\' равно DBNull.", e);
  4627. }
  4628. }
  4629. set {
  4630. this[this.tableОценки.Дата_экзамена_2Column] = value;
  4631. }
  4632. }
  4633. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4634. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4635. public long Код_предмета2 {
  4636. get {
  4637. try {
  4638. return ((long)(this[this.tableОценки.Код_предмета2Column]));
  4639. }
  4640. catch (global::System.InvalidCastException e) {
  4641. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код предмета2\' в таблице \'Оценки\' равно DBNull.", e);
  4642. }
  4643. }
  4644. set {
  4645. this[this.tableОценки.Код_предмета2Column] = value;
  4646. }
  4647. }
  4648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4650. public byte Оценка_2 {
  4651. get {
  4652. try {
  4653. return ((byte)(this[this.tableОценки.Оценка_2Column]));
  4654. }
  4655. catch (global::System.InvalidCastException e) {
  4656. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка 2\' в таблице \'Оценки\' равно DBNull.", e);
  4657. }
  4658. }
  4659. set {
  4660. this[this.tableОценки.Оценка_2Column] = value;
  4661. }
  4662. }
  4663. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4664. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4665. public System.DateTime Дата_экзамена_3 {
  4666. get {
  4667. try {
  4668. return ((global::System.DateTime)(this[this.tableОценки.Дата_экзамена_3Column]));
  4669. }
  4670. catch (global::System.InvalidCastException e) {
  4671. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата экзамена 3\' в таблице \'Оценки\' равно DBNull.", e);
  4672. }
  4673. }
  4674. set {
  4675. this[this.tableОценки.Дата_экзамена_3Column] = value;
  4676. }
  4677. }
  4678. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4679. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4680. public long Код_предмета_3 {
  4681. get {
  4682. try {
  4683. return ((long)(this[this.tableОценки.Код_предмета_3Column]));
  4684. }
  4685. catch (global::System.InvalidCastException e) {
  4686. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код предмета 3\' в таблице \'Оценки\' равно DBNull.", e);
  4687. }
  4688. }
  4689. set {
  4690. this[this.tableОценки.Код_предмета_3Column] = value;
  4691. }
  4692. }
  4693. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4694. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4695. public byte Оценка_3 {
  4696. get {
  4697. try {
  4698. return ((byte)(this[this.tableОценки.Оценка_3Column]));
  4699. }
  4700. catch (global::System.InvalidCastException e) {
  4701. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка 3\' в таблице \'Оценки\' равно DBNull.", e);
  4702. }
  4703. }
  4704. set {
  4705. this[this.tableОценки.Оценка_3Column] = value;
  4706. }
  4707. }
  4708. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4709. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4710. public float Средний_балл {
  4711. get {
  4712. try {
  4713. return ((float)(this[this.tableОценки.Средний_баллColumn]));
  4714. }
  4715. catch (global::System.InvalidCastException e) {
  4716. throw new global::System.Data.StrongTypingException("Значение для столбца \'Средний балл\' в таблице \'Оценки\' равно DBNull.", e);
  4717. }
  4718. }
  4719. set {
  4720. this[this.tableОценки.Средний_баллColumn] = value;
  4721. }
  4722. }
  4723. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4724. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4725. public bool IsКод_студентаNull() {
  4726. return this.IsNull(this.tableОценки.Код_студентаColumn);
  4727. }
  4728. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4729. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4730. public void SetКод_студентаNull() {
  4731. this[this.tableОценки.Код_студентаColumn] = global::System.Convert.DBNull;
  4732. }
  4733. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4734. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4735. public bool IsДата_экзамена1Null() {
  4736. return this.IsNull(this.tableОценки.Дата_экзамена1Column);
  4737. }
  4738. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4739. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4740. public void SetДата_экзамена1Null() {
  4741. this[this.tableОценки.Дата_экзамена1Column] = global::System.Convert.DBNull;
  4742. }
  4743. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4744. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4745. public bool IsКод_предмета1Null() {
  4746. return this.IsNull(this.tableОценки.Код_предмета1Column);
  4747. }
  4748. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4749. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4750. public void SetКод_предмета1Null() {
  4751. this[this.tableОценки.Код_предмета1Column] = global::System.Convert.DBNull;
  4752. }
  4753. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4754. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4755. public bool IsОценка_1Null() {
  4756. return this.IsNull(this.tableОценки.Оценка_1Column);
  4757. }
  4758. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4759. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4760. public void SetОценка_1Null() {
  4761. this[this.tableОценки.Оценка_1Column] = global::System.Convert.DBNull;
  4762. }
  4763. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4764. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4765. public bool IsДата_экзамена_2Null() {
  4766. return this.IsNull(this.tableОценки.Дата_экзамена_2Column);
  4767. }
  4768. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4769. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4770. public void SetДата_экзамена_2Null() {
  4771. this[this.tableОценки.Дата_экзамена_2Column] = global::System.Convert.DBNull;
  4772. }
  4773. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4774. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4775. public bool IsКод_предмета2Null() {
  4776. return this.IsNull(this.tableОценки.Код_предмета2Column);
  4777. }
  4778. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4779. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4780. public void SetКод_предмета2Null() {
  4781. this[this.tableОценки.Код_предмета2Column] = global::System.Convert.DBNull;
  4782. }
  4783. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4784. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4785. public bool IsОценка_2Null() {
  4786. return this.IsNull(this.tableОценки.Оценка_2Column);
  4787. }
  4788. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4790. public void SetОценка_2Null() {
  4791. this[this.tableОценки.Оценка_2Column] = global::System.Convert.DBNull;
  4792. }
  4793. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4794. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4795. public bool IsДата_экзамена_3Null() {
  4796. return this.IsNull(this.tableОценки.Дата_экзамена_3Column);
  4797. }
  4798. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4800. public void SetДата_экзамена_3Null() {
  4801. this[this.tableОценки.Дата_экзамена_3Column] = global::System.Convert.DBNull;
  4802. }
  4803. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4804. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4805. public bool IsКод_предмета_3Null() {
  4806. return this.IsNull(this.tableОценки.Код_предмета_3Column);
  4807. }
  4808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4810. public void SetКод_предмета_3Null() {
  4811. this[this.tableОценки.Код_предмета_3Column] = global::System.Convert.DBNull;
  4812. }
  4813. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4814. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4815. public bool IsОценка_3Null() {
  4816. return this.IsNull(this.tableОценки.Оценка_3Column);
  4817. }
  4818. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4819. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4820. public void SetОценка_3Null() {
  4821. this[this.tableОценки.Оценка_3Column] = global::System.Convert.DBNull;
  4822. }
  4823. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4824. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4825. public bool IsСредний_баллNull() {
  4826. return this.IsNull(this.tableОценки.Средний_баллColumn);
  4827. }
  4828. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4829. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4830. public void SetСредний_баллNull() {
  4831. this[this.tableОценки.Средний_баллColumn] = global::System.Convert.DBNull;
  4832. }
  4833. }
  4834. /// <summary>
  4835. ///Represents strongly named DataRow class.
  4836. ///</summary>
  4837. public partial class ПредметыRow : global::System.Data.DataRow {
  4838. private ПредметыDataTable tableПредметы;
  4839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4841. internal ПредметыRow(global::System.Data.DataRowBuilder rb) :
  4842. base(rb) {
  4843. this.tableПредметы = ((ПредметыDataTable)(this.Table));
  4844. }
  4845. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4846. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4847. public long Код_предмета {
  4848. get {
  4849. return ((long)(this[this.tableПредметы.Код_предметаColumn]));
  4850. }
  4851. set {
  4852. this[this.tableПредметы.Код_предметаColumn] = value;
  4853. }
  4854. }
  4855. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4856. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4857. public string Наименование_предмета {
  4858. get {
  4859. try {
  4860. return ((string)(this[this.tableПредметы.Наименование_предметаColumn]));
  4861. }
  4862. catch (global::System.InvalidCastException e) {
  4863. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета\' в таблице \'Предметы\' равно DBNull.", e);
  4864. }
  4865. }
  4866. set {
  4867. this[this.tableПредметы.Наименование_предметаColumn] = value;
  4868. }
  4869. }
  4870. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4871. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4872. public string Описание_предмета {
  4873. get {
  4874. try {
  4875. return ((string)(this[this.tableПредметы.Описание_предметаColumn]));
  4876. }
  4877. catch (global::System.InvalidCastException e) {
  4878. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание предмета\' в таблице \'Предметы\' равно DBNull.", e);
  4879. }
  4880. }
  4881. set {
  4882. this[this.tableПредметы.Описание_предметаColumn] = value;
  4883. }
  4884. }
  4885. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4886. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4887. public bool IsНаименование_предметаNull() {
  4888. return this.IsNull(this.tableПредметы.Наименование_предметаColumn);
  4889. }
  4890. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4891. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4892. public void SetНаименование_предметаNull() {
  4893. this[this.tableПредметы.Наименование_предметаColumn] = global::System.Convert.DBNull;
  4894. }
  4895. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4896. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4897. public bool IsОписание_предметаNull() {
  4898. return this.IsNull(this.tableПредметы.Описание_предметаColumn);
  4899. }
  4900. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4901. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4902. public void SetОписание_предметаNull() {
  4903. this[this.tableПредметы.Описание_предметаColumn] = global::System.Convert.DBNull;
  4904. }
  4905. }
  4906. /// <summary>
  4907. ///Represents strongly named DataRow class.
  4908. ///</summary>
  4909. public partial class СпециальностиRow : global::System.Data.DataRow {
  4910. private СпециальностиDataTable tableСпециальности;
  4911. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4912. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4913. internal СпециальностиRow(global::System.Data.DataRowBuilder rb) :
  4914. base(rb) {
  4915. this.tableСпециальности = ((СпециальностиDataTable)(this.Table));
  4916. }
  4917. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4918. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4919. public long Код_специальности {
  4920. get {
  4921. return ((long)(this[this.tableСпециальности.Код_специальностиColumn]));
  4922. }
  4923. set {
  4924. this[this.tableСпециальности.Код_специальностиColumn] = value;
  4925. }
  4926. }
  4927. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4928. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4929. public string Название_специальности {
  4930. get {
  4931. try {
  4932. return ((string)(this[this.tableСпециальности.Название_специальностиColumn]));
  4933. }
  4934. catch (global::System.InvalidCastException e) {
  4935. throw new global::System.Data.StrongTypingException("Значение для столбца \'Название специальности\' в таблице \'Специальности\' равно DBN" +
  4936. "ull.", e);
  4937. }
  4938. }
  4939. set {
  4940. this[this.tableСпециальности.Название_специальностиColumn] = value;
  4941. }
  4942. }
  4943. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4944. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4945. public string Описание_специальности {
  4946. get {
  4947. try {
  4948. return ((string)(this[this.tableСпециальности.Описание_специальностиColumn]));
  4949. }
  4950. catch (global::System.InvalidCastException e) {
  4951. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'Специальности\' равно DBN" +
  4952. "ull.", e);
  4953. }
  4954. }
  4955. set {
  4956. this[this.tableСпециальности.Описание_специальностиColumn] = value;
  4957. }
  4958. }
  4959. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4960. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4961. public bool IsНазвание_специальностиNull() {
  4962. return this.IsNull(this.tableСпециальности.Название_специальностиColumn);
  4963. }
  4964. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4965. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4966. public void SetНазвание_специальностиNull() {
  4967. this[this.tableСпециальности.Название_специальностиColumn] = global::System.Convert.DBNull;
  4968. }
  4969. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4970. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4971. public bool IsОписание_специальностиNull() {
  4972. return this.IsNull(this.tableСпециальности.Описание_специальностиColumn);
  4973. }
  4974. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4975. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4976. public void SetОписание_специальностиNull() {
  4977. this[this.tableСпециальности.Описание_специальностиColumn] = global::System.Convert.DBNull;
  4978. }
  4979. }
  4980. /// <summary>
  4981. ///Represents strongly named DataRow class.
  4982. ///</summary>
  4983. public partial class СтудентыRow : global::System.Data.DataRow {
  4984. private СтудентыDataTable tableСтуденты;
  4985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4986. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4987. internal СтудентыRow(global::System.Data.DataRowBuilder rb) :
  4988. base(rb) {
  4989. this.tableСтуденты = ((СтудентыDataTable)(this.Table));
  4990. }
  4991. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4992. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4993. public long Код_студента {
  4994. get {
  4995. return ((long)(this[this.tableСтуденты.Код_студентаColumn]));
  4996. }
  4997. set {
  4998. this[this.tableСтуденты.Код_студентаColumn] = value;
  4999. }
  5000. }
  5001. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5002. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5003. public string ФИО {
  5004. get {
  5005. try {
  5006. return ((string)(this[this.tableСтуденты.ФИОColumn]));
  5007. }
  5008. catch (global::System.InvalidCastException e) {
  5009. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Студенты\' равно DBNull.", e);
  5010. }
  5011. }
  5012. set {
  5013. this[this.tableСтуденты.ФИОColumn] = value;
  5014. }
  5015. }
  5016. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5017. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5018. public string Пол {
  5019. get {
  5020. try {
  5021. return ((string)(this[this.tableСтуденты.ПолColumn]));
  5022. }
  5023. catch (global::System.InvalidCastException e) {
  5024. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Студенты\' равно DBNull.", e);
  5025. }
  5026. }
  5027. set {
  5028. this[this.tableСтуденты.ПолColumn] = value;
  5029. }
  5030. }
  5031. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5032. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5033. public System.DateTime Дата_рождения {
  5034. get {
  5035. try {
  5036. return ((global::System.DateTime)(this[this.tableСтуденты.Дата_рожденияColumn]));
  5037. }
  5038. catch (global::System.InvalidCastException e) {
  5039. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Студенты\' равно DBNull.", e);
  5040. }
  5041. }
  5042. set {
  5043. this[this.tableСтуденты.Дата_рожденияColumn] = value;
  5044. }
  5045. }
  5046. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5048. public string Родители {
  5049. get {
  5050. try {
  5051. return ((string)(this[this.tableСтуденты.РодителиColumn]));
  5052. }
  5053. catch (global::System.InvalidCastException e) {
  5054. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Студенты\' равно DBNull.", e);
  5055. }
  5056. }
  5057. set {
  5058. this[this.tableСтуденты.РодителиColumn] = value;
  5059. }
  5060. }
  5061. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5062. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5063. public string Адрес {
  5064. get {
  5065. try {
  5066. return ((string)(this[this.tableСтуденты.АдресColumn]));
  5067. }
  5068. catch (global::System.InvalidCastException e) {
  5069. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Студенты\' равно DBNull.", e);
  5070. }
  5071. }
  5072. set {
  5073. this[this.tableСтуденты.АдресColumn] = value;
  5074. }
  5075. }
  5076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5078. public string Телефон {
  5079. get {
  5080. try {
  5081. return ((string)(this[this.tableСтуденты.ТелефонColumn]));
  5082. }
  5083. catch (global::System.InvalidCastException e) {
  5084. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Студенты\' равно DBNull.", e);
  5085. }
  5086. }
  5087. set {
  5088. this[this.tableСтуденты.ТелефонColumn] = value;
  5089. }
  5090. }
  5091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5092. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5093. public string Паспортные_данные {
  5094. get {
  5095. try {
  5096. return ((string)(this[this.tableСтуденты.Паспортные_данныеColumn]));
  5097. }
  5098. catch (global::System.InvalidCastException e) {
  5099. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Студенты\' равно DBNull.", e);
  5100. }
  5101. }
  5102. set {
  5103. this[this.tableСтуденты.Паспортные_данныеColumn] = value;
  5104. }
  5105. }
  5106. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5107. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5108. public long Номер_зачетки {
  5109. get {
  5110. try {
  5111. return ((long)(this[this.tableСтуденты.Номер_зачеткиColumn]));
  5112. }
  5113. catch (global::System.InvalidCastException e) {
  5114. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Студенты\' равно DBNull.", e);
  5115. }
  5116. }
  5117. set {
  5118. this[this.tableСтуденты.Номер_зачеткиColumn] = value;
  5119. }
  5120. }
  5121. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5122. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5123. public System.DateTime Дата_поступления {
  5124. get {
  5125. try {
  5126. return ((global::System.DateTime)(this[this.tableСтуденты.Дата_поступленияColumn]));
  5127. }
  5128. catch (global::System.InvalidCastException e) {
  5129. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Студенты\' равно DBNull.", e);
  5130. }
  5131. }
  5132. set {
  5133. this[this.tableСтуденты.Дата_поступленияColumn] = value;
  5134. }
  5135. }
  5136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5137. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5138. public string Группа {
  5139. get {
  5140. try {
  5141. return ((string)(this[this.tableСтуденты.ГруппаColumn]));
  5142. }
  5143. catch (global::System.InvalidCastException e) {
  5144. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Студенты\' равно DBNull.", e);
  5145. }
  5146. }
  5147. set {
  5148. this[this.tableСтуденты.ГруппаColumn] = value;
  5149. }
  5150. }
  5151. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5152. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5153. public byte Курс {
  5154. get {
  5155. try {
  5156. return ((byte)(this[this.tableСтуденты.КурсColumn]));
  5157. }
  5158. catch (global::System.InvalidCastException e) {
  5159. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Студенты\' равно DBNull.", e);
  5160. }
  5161. }
  5162. set {
  5163. this[this.tableСтуденты.КурсColumn] = value;
  5164. }
  5165. }
  5166. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5167. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5168. public long Код_специальности {
  5169. get {
  5170. try {
  5171. return ((long)(this[this.tableСтуденты.Код_специальностиColumn]));
  5172. }
  5173. catch (global::System.InvalidCastException e) {
  5174. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код специальности\' в таблице \'Студенты\' равно DBNull.", e);
  5175. }
  5176. }
  5177. set {
  5178. this[this.tableСтуденты.Код_специальностиColumn] = value;
  5179. }
  5180. }
  5181. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5182. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5183. public bool Очная_форма_обучения {
  5184. get {
  5185. try {
  5186. return ((bool)(this[this.tableСтуденты.Очная_форма_обученияColumn]));
  5187. }
  5188. catch (global::System.InvalidCastException e) {
  5189. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Студенты\' равно DBNull.", e);
  5190. }
  5191. }
  5192. set {
  5193. this[this.tableСтуденты.Очная_форма_обученияColumn] = value;
  5194. }
  5195. }
  5196. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5197. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5198. public bool IsФИОNull() {
  5199. return this.IsNull(this.tableСтуденты.ФИОColumn);
  5200. }
  5201. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5202. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5203. public void SetФИОNull() {
  5204. this[this.tableСтуденты.ФИОColumn] = global::System.Convert.DBNull;
  5205. }
  5206. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5207. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5208. public bool IsПолNull() {
  5209. return this.IsNull(this.tableСтуденты.ПолColumn);
  5210. }
  5211. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5212. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5213. public void SetПолNull() {
  5214. this[this.tableСтуденты.ПолColumn] = global::System.Convert.DBNull;
  5215. }
  5216. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5217. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5218. public bool IsДата_рожденияNull() {
  5219. return this.IsNull(this.tableСтуденты.Дата_рожденияColumn);
  5220. }
  5221. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5222. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5223. public void SetДата_рожденияNull() {
  5224. this[this.tableСтуденты.Дата_рожденияColumn] = global::System.Convert.DBNull;
  5225. }
  5226. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5227. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5228. public bool IsРодителиNull() {
  5229. return this.IsNull(this.tableСтуденты.РодителиColumn);
  5230. }
  5231. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5232. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5233. public void SetРодителиNull() {
  5234. this[this.tableСтуденты.РодителиColumn] = global::System.Convert.DBNull;
  5235. }
  5236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5237. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5238. public bool IsАдресNull() {
  5239. return this.IsNull(this.tableСтуденты.АдресColumn);
  5240. }
  5241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5243. public void SetАдресNull() {
  5244. this[this.tableСтуденты.АдресColumn] = global::System.Convert.DBNull;
  5245. }
  5246. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5247. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5248. public bool IsТелефонNull() {
  5249. return this.IsNull(this.tableСтуденты.ТелефонColumn);
  5250. }
  5251. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5252. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5253. public void SetТелефонNull() {
  5254. this[this.tableСтуденты.ТелефонColumn] = global::System.Convert.DBNull;
  5255. }
  5256. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5257. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5258. public bool IsПаспортные_данныеNull() {
  5259. return this.IsNull(this.tableСтуденты.Паспортные_данныеColumn);
  5260. }
  5261. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5262. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5263. public void SetПаспортные_данныеNull() {
  5264. this[this.tableСтуденты.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  5265. }
  5266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5267. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5268. public bool IsНомер_зачеткиNull() {
  5269. return this.IsNull(this.tableСтуденты.Номер_зачеткиColumn);
  5270. }
  5271. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5272. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5273. public void SetНомер_зачеткиNull() {
  5274. this[this.tableСтуденты.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  5275. }
  5276. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5277. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5278. public bool IsДата_поступленияNull() {
  5279. return this.IsNull(this.tableСтуденты.Дата_поступленияColumn);
  5280. }
  5281. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5282. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5283. public void SetДата_поступленияNull() {
  5284. this[this.tableСтуденты.Дата_поступленияColumn] = global::System.Convert.DBNull;
  5285. }
  5286. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5287. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5288. public bool IsГруппаNull() {
  5289. return this.IsNull(this.tableСтуденты.ГруппаColumn);
  5290. }
  5291. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5292. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5293. public void SetГруппаNull() {
  5294. this[this.tableСтуденты.ГруппаColumn] = global::System.Convert.DBNull;
  5295. }
  5296. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5297. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5298. public bool IsКурсNull() {
  5299. return this.IsNull(this.tableСтуденты.КурсColumn);
  5300. }
  5301. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5302. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5303. public void SetКурсNull() {
  5304. this[this.tableСтуденты.КурсColumn] = global::System.Convert.DBNull;
  5305. }
  5306. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5307. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5308. public bool IsКод_специальностиNull() {
  5309. return this.IsNull(this.tableСтуденты.Код_специальностиColumn);
  5310. }
  5311. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5312. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5313. public void SetКод_специальностиNull() {
  5314. this[this.tableСтуденты.Код_специальностиColumn] = global::System.Convert.DBNull;
  5315. }
  5316. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5317. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5318. public bool IsОчная_форма_обученияNull() {
  5319. return this.IsNull(this.tableСтуденты.Очная_форма_обученияColumn);
  5320. }
  5321. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5322. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5323. public void SetОчная_форма_обученияNull() {
  5324. this[this.tableСтуденты.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  5325. }
  5326. }
  5327. /// <summary>
  5328. ///Represents strongly named DataRow class.
  5329. ///</summary>
  5330. public partial class _Запрос_Студенты_ОценкиRow : global::System.Data.DataRow {
  5331. private _Запрос_Студенты_ОценкиDataTable _tableЗапрос_Студенты_Оценки;
  5332. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5333. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5334. internal _Запрос_Студенты_ОценкиRow(global::System.Data.DataRowBuilder rb) :
  5335. base(rb) {
  5336. this._tableЗапрос_Студенты_Оценки = ((_Запрос_Студенты_ОценкиDataTable)(this.Table));
  5337. }
  5338. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5339. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5340. public string ФИО_студента {
  5341. get {
  5342. try {
  5343. return ((string)(this[this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn]));
  5344. }
  5345. catch (global::System.InvalidCastException e) {
  5346. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО студента\' в таблице \'Запрос Студенты+Оценки\' равно DBNu" +
  5347. "ll.", e);
  5348. }
  5349. }
  5350. set {
  5351. this[this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn] = value;
  5352. }
  5353. }
  5354. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5355. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5356. public System.DateTime Дата_первого_экзамена {
  5357. get {
  5358. try {
  5359. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Оценки.Дата_первого_экзаменаColumn]));
  5360. }
  5361. catch (global::System.InvalidCastException e) {
  5362. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата первого экзамена\' в таблице \'Запрос Студенты+Оценки\' р" +
  5363. "авно DBNull.", e);
  5364. }
  5365. }
  5366. set {
  5367. this[this._tableЗапрос_Студенты_Оценки.Дата_первого_экзаменаColumn] = value;
  5368. }
  5369. }
  5370. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5371. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5372. public string Наименование_предмета_первого_экзамена {
  5373. get {
  5374. try {
  5375. return ((string)(this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_первого_экзаменаColumn]));
  5376. }
  5377. catch (global::System.InvalidCastException e) {
  5378. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета первого экзамена\' в таблице \'Запрос С" +
  5379. "туденты+Оценки\' равно DBNull.", e);
  5380. }
  5381. }
  5382. set {
  5383. this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_первого_экзаменаColumn] = value;
  5384. }
  5385. }
  5386. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5388. public byte Оценка_первого_экзамена {
  5389. get {
  5390. try {
  5391. return ((byte)(this[this._tableЗапрос_Студенты_Оценки.Оценка_первого_экзаменаColumn]));
  5392. }
  5393. catch (global::System.InvalidCastException e) {
  5394. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка первого экзамена\' в таблице \'Запрос Студенты+Оценки\'" +
  5395. " равно DBNull.", e);
  5396. }
  5397. }
  5398. set {
  5399. this[this._tableЗапрос_Студенты_Оценки.Оценка_первого_экзаменаColumn] = value;
  5400. }
  5401. }
  5402. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5403. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5404. public System.DateTime Дата_второго_экзамена {
  5405. get {
  5406. try {
  5407. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Оценки.Дата_второго_экзаменаColumn]));
  5408. }
  5409. catch (global::System.InvalidCastException e) {
  5410. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата второго экзамена\' в таблице \'Запрос Студенты+Оценки\' р" +
  5411. "авно DBNull.", e);
  5412. }
  5413. }
  5414. set {
  5415. this[this._tableЗапрос_Студенты_Оценки.Дата_второго_экзаменаColumn] = value;
  5416. }
  5417. }
  5418. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5419. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5420. public string Наименование_предмета_второго_экзамена {
  5421. get {
  5422. try {
  5423. return ((string)(this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_второго_экзаменаColumn]));
  5424. }
  5425. catch (global::System.InvalidCastException e) {
  5426. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета второго экзамена\' в таблице \'Запрос С" +
  5427. "туденты+Оценки\' равно DBNull.", e);
  5428. }
  5429. }
  5430. set {
  5431. this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_второго_экзаменаColumn] = value;
  5432. }
  5433. }
  5434. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5435. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5436. public byte Оценка_второго_экзамена {
  5437. get {
  5438. try {
  5439. return ((byte)(this[this._tableЗапрос_Студенты_Оценки.Оценка_второго_экзаменаColumn]));
  5440. }
  5441. catch (global::System.InvalidCastException e) {
  5442. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка второго экзамена\' в таблице \'Запрос Студенты+Оценки\'" +
  5443. " равно DBNull.", e);
  5444. }
  5445. }
  5446. set {
  5447. this[this._tableЗапрос_Студенты_Оценки.Оценка_второго_экзаменаColumn] = value;
  5448. }
  5449. }
  5450. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5451. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5452. public string Наименование_предмета_третьего_экзамена {
  5453. get {
  5454. try {
  5455. return ((string)(this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_третьего_экзаменаColumn]));
  5456. }
  5457. catch (global::System.InvalidCastException e) {
  5458. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета третьего экзамена\' в таблице \'Запрос " +
  5459. "Студенты+Оценки\' равно DBNull.", e);
  5460. }
  5461. }
  5462. set {
  5463. this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_третьего_экзаменаColumn] = value;
  5464. }
  5465. }
  5466. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5467. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5468. public byte Оценка_третьего_экзамена {
  5469. get {
  5470. try {
  5471. return ((byte)(this[this._tableЗапрос_Студенты_Оценки.Оценка_третьего_экзаменаColumn]));
  5472. }
  5473. catch (global::System.InvalidCastException e) {
  5474. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка третьего экзамена\' в таблице \'Запрос Студенты+Оценки" +
  5475. "\' равно DBNull.", e);
  5476. }
  5477. }
  5478. set {
  5479. this[this._tableЗапрос_Студенты_Оценки.Оценка_третьего_экзаменаColumn] = value;
  5480. }
  5481. }
  5482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5484. public System.DateTime Дата_третьего_экзамена {
  5485. get {
  5486. try {
  5487. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Оценки.Дата_третьего_экзаменаColumn]));
  5488. }
  5489. catch (global::System.InvalidCastException e) {
  5490. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата третьего экзамена\' в таблице \'Запрос Студенты+Оценки\' " +
  5491. "равно DBNull.", e);
  5492. }
  5493. }
  5494. set {
  5495. this[this._tableЗапрос_Студенты_Оценки.Дата_третьего_экзаменаColumn] = value;
  5496. }
  5497. }
  5498. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5499. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5500. public float Средний_балл_студента_за_сесию {
  5501. get {
  5502. try {
  5503. return ((float)(this[this._tableЗапрос_Студенты_Оценки.Средний_балл_студента_за_сесиюColumn]));
  5504. }
  5505. catch (global::System.InvalidCastException e) {
  5506. throw new global::System.Data.StrongTypingException("Значение для столбца \'Средний балл студента за сесию\' в таблице \'Запрос Студенты+" +
  5507. "Оценки\' равно DBNull.", e);
  5508. }
  5509. }
  5510. set {
  5511. this[this._tableЗапрос_Студенты_Оценки.Средний_балл_студента_за_сесиюColumn] = value;
  5512. }
  5513. }
  5514. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5515. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5516. public bool IsФИО_студентаNull() {
  5517. return this.IsNull(this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn);
  5518. }
  5519. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5520. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5521. public void SetФИО_студентаNull() {
  5522. this[this._tableЗапрос_Студенты_Оценки.ФИО_студентаColumn] = global::System.Convert.DBNull;
  5523. }
  5524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5526. public bool IsДата_первого_экзаменаNull() {
  5527. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Дата_первого_экзаменаColumn);
  5528. }
  5529. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5530. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5531. public void SetДата_первого_экзаменаNull() {
  5532. this[this._tableЗапрос_Студенты_Оценки.Дата_первого_экзаменаColumn] = global::System.Convert.DBNull;
  5533. }
  5534. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5535. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5536. public bool IsНаименование_предмета_первого_экзаменаNull() {
  5537. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Наименование_предмета_первого_экзаменаColumn);
  5538. }
  5539. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5540. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5541. public void SetНаименование_предмета_первого_экзаменаNull() {
  5542. this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_первого_экзаменаColumn] = global::System.Convert.DBNull;
  5543. }
  5544. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5545. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5546. public bool IsОценка_первого_экзаменаNull() {
  5547. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Оценка_первого_экзаменаColumn);
  5548. }
  5549. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5550. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5551. public void SetОценка_первого_экзаменаNull() {
  5552. this[this._tableЗапрос_Студенты_Оценки.Оценка_первого_экзаменаColumn] = global::System.Convert.DBNull;
  5553. }
  5554. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5555. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5556. public bool IsДата_второго_экзаменаNull() {
  5557. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Дата_второго_экзаменаColumn);
  5558. }
  5559. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5560. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5561. public void SetДата_второго_экзаменаNull() {
  5562. this[this._tableЗапрос_Студенты_Оценки.Дата_второго_экзаменаColumn] = global::System.Convert.DBNull;
  5563. }
  5564. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5565. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5566. public bool IsНаименование_предмета_второго_экзаменаNull() {
  5567. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Наименование_предмета_второго_экзаменаColumn);
  5568. }
  5569. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5570. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5571. public void SetНаименование_предмета_второго_экзаменаNull() {
  5572. this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_второго_экзаменаColumn] = global::System.Convert.DBNull;
  5573. }
  5574. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5575. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5576. public bool IsОценка_второго_экзаменаNull() {
  5577. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Оценка_второго_экзаменаColumn);
  5578. }
  5579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5581. public void SetОценка_второго_экзаменаNull() {
  5582. this[this._tableЗапрос_Студенты_Оценки.Оценка_второго_экзаменаColumn] = global::System.Convert.DBNull;
  5583. }
  5584. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5585. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5586. public bool IsНаименование_предмета_третьего_экзаменаNull() {
  5587. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Наименование_предмета_третьего_экзаменаColumn);
  5588. }
  5589. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5590. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5591. public void SetНаименование_предмета_третьего_экзаменаNull() {
  5592. this[this._tableЗапрос_Студенты_Оценки.Наименование_предмета_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  5593. }
  5594. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5595. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5596. public bool IsОценка_третьего_экзаменаNull() {
  5597. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Оценка_третьего_экзаменаColumn);
  5598. }
  5599. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5600. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5601. public void SetОценка_третьего_экзаменаNull() {
  5602. this[this._tableЗапрос_Студенты_Оценки.Оценка_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  5603. }
  5604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5606. public bool IsДата_третьего_экзаменаNull() {
  5607. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Дата_третьего_экзаменаColumn);
  5608. }
  5609. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5610. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5611. public void SetДата_третьего_экзаменаNull() {
  5612. this[this._tableЗапрос_Студенты_Оценки.Дата_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  5613. }
  5614. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5615. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5616. public bool IsСредний_балл_студента_за_сесиюNull() {
  5617. return this.IsNull(this._tableЗапрос_Студенты_Оценки.Средний_балл_студента_за_сесиюColumn);
  5618. }
  5619. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5620. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5621. public void SetСредний_балл_студента_за_сесиюNull() {
  5622. this[this._tableЗапрос_Студенты_Оценки.Средний_балл_студента_за_сесиюColumn] = global::System.Convert.DBNull;
  5623. }
  5624. }
  5625. /// <summary>
  5626. ///Represents strongly named DataRow class.
  5627. ///</summary>
  5628. public partial class _Запрос_Студенты_СпециальностиRow : global::System.Data.DataRow {
  5629. private _Запрос_Студенты_СпециальностиDataTable _tableЗапрос_Студенты_Специальности;
  5630. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5631. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5632. internal _Запрос_Студенты_СпециальностиRow(global::System.Data.DataRowBuilder rb) :
  5633. base(rb) {
  5634. this._tableЗапрос_Студенты_Специальности = ((_Запрос_Студенты_СпециальностиDataTable)(this.Table));
  5635. }
  5636. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5637. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5638. public string ФИО {
  5639. get {
  5640. try {
  5641. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ФИОColumn]));
  5642. }
  5643. catch (global::System.InvalidCastException e) {
  5644. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Запрос Студенты+Специальности\' равно DBNull" +
  5645. ".", e);
  5646. }
  5647. }
  5648. set {
  5649. this[this._tableЗапрос_Студенты_Специальности.ФИОColumn] = value;
  5650. }
  5651. }
  5652. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5653. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5654. public string Пол {
  5655. get {
  5656. try {
  5657. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ПолColumn]));
  5658. }
  5659. catch (global::System.InvalidCastException e) {
  5660. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Запрос Студенты+Специальности\' равно DBNull" +
  5661. ".", e);
  5662. }
  5663. }
  5664. set {
  5665. this[this._tableЗапрос_Студенты_Специальности.ПолColumn] = value;
  5666. }
  5667. }
  5668. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5669. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5670. public System.DateTime Дата_рождения {
  5671. get {
  5672. try {
  5673. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn]));
  5674. }
  5675. catch (global::System.InvalidCastException e) {
  5676. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Запрос Студенты+Специальности\' ра" +
  5677. "вно DBNull.", e);
  5678. }
  5679. }
  5680. set {
  5681. this[this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn] = value;
  5682. }
  5683. }
  5684. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5685. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5686. public string Родители {
  5687. get {
  5688. try {
  5689. return ((string)(this[this._tableЗапрос_Студенты_Специальности.РодителиColumn]));
  5690. }
  5691. catch (global::System.InvalidCastException e) {
  5692. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Запрос Студенты+Специальности\' равно D" +
  5693. "BNull.", e);
  5694. }
  5695. }
  5696. set {
  5697. this[this._tableЗапрос_Студенты_Специальности.РодителиColumn] = value;
  5698. }
  5699. }
  5700. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5701. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5702. public string Адрес {
  5703. get {
  5704. try {
  5705. return ((string)(this[this._tableЗапрос_Студенты_Специальности.АдресColumn]));
  5706. }
  5707. catch (global::System.InvalidCastException e) {
  5708. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Запрос Студенты+Специальности\' равно DBNu" +
  5709. "ll.", e);
  5710. }
  5711. }
  5712. set {
  5713. this[this._tableЗапрос_Студенты_Специальности.АдресColumn] = value;
  5714. }
  5715. }
  5716. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5717. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5718. public string Телефон {
  5719. get {
  5720. try {
  5721. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ТелефонColumn]));
  5722. }
  5723. catch (global::System.InvalidCastException e) {
  5724. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Запрос Студенты+Специальности\' равно DB" +
  5725. "Null.", e);
  5726. }
  5727. }
  5728. set {
  5729. this[this._tableЗапрос_Студенты_Специальности.ТелефонColumn] = value;
  5730. }
  5731. }
  5732. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5733. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5734. public string Паспортные_данные {
  5735. get {
  5736. try {
  5737. return ((string)(this[this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn]));
  5738. }
  5739. catch (global::System.InvalidCastException e) {
  5740. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Запрос Студенты+Специальности" +
  5741. "\' равно DBNull.", e);
  5742. }
  5743. }
  5744. set {
  5745. this[this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn] = value;
  5746. }
  5747. }
  5748. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5749. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5750. public long Номер_зачетки {
  5751. get {
  5752. try {
  5753. return ((long)(this[this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn]));
  5754. }
  5755. catch (global::System.InvalidCastException e) {
  5756. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Запрос Студенты+Специальности\' ра" +
  5757. "вно DBNull.", e);
  5758. }
  5759. }
  5760. set {
  5761. this[this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn] = value;
  5762. }
  5763. }
  5764. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5765. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5766. public System.DateTime Дата_поступления {
  5767. get {
  5768. try {
  5769. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Специальности.Дата_поступленияColumn]));
  5770. }
  5771. catch (global::System.InvalidCastException e) {
  5772. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Запрос Студенты+Специальности\'" +
  5773. " равно DBNull.", e);
  5774. }
  5775. }
  5776. set {
  5777. this[this._tableЗапрос_Студенты_Специальности.Дата_поступленияColumn] = value;
  5778. }
  5779. }
  5780. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5781. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5782. public string Группа {
  5783. get {
  5784. try {
  5785. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ГруппаColumn]));
  5786. }
  5787. catch (global::System.InvalidCastException e) {
  5788. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Запрос Студенты+Специальности\' равно DBN" +
  5789. "ull.", e);
  5790. }
  5791. }
  5792. set {
  5793. this[this._tableЗапрос_Студенты_Специальности.ГруппаColumn] = value;
  5794. }
  5795. }
  5796. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5797. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5798. public byte Курс {
  5799. get {
  5800. try {
  5801. return ((byte)(this[this._tableЗапрос_Студенты_Специальности.КурсColumn]));
  5802. }
  5803. catch (global::System.InvalidCastException e) {
  5804. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Запрос Студенты+Специальности\' равно DBNul" +
  5805. "l.", e);
  5806. }
  5807. }
  5808. set {
  5809. this[this._tableЗапрос_Студенты_Специальности.КурсColumn] = value;
  5810. }
  5811. }
  5812. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5813. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5814. public bool Очная_форма_обучения {
  5815. get {
  5816. try {
  5817. return ((bool)(this[this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn]));
  5818. }
  5819. catch (global::System.InvalidCastException e) {
  5820. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Запрос Студенты+Специально" +
  5821. "сти\' равно DBNull.", e);
  5822. }
  5823. }
  5824. set {
  5825. this[this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn] = value;
  5826. }
  5827. }
  5828. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5829. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5830. public string Название_специальности {
  5831. get {
  5832. try {
  5833. return ((string)(this[this._tableЗапрос_Студенты_Специальности.Название_специальностиColumn]));
  5834. }
  5835. catch (global::System.InvalidCastException e) {
  5836. throw new global::System.Data.StrongTypingException("Значение для столбца \'Название специальности\' в таблице \'Запрос Студенты+Специаль" +
  5837. "ности\' равно DBNull.", e);
  5838. }
  5839. }
  5840. set {
  5841. this[this._tableЗапрос_Студенты_Специальности.Название_специальностиColumn] = value;
  5842. }
  5843. }
  5844. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5845. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5846. public string Описание_специальности {
  5847. get {
  5848. try {
  5849. return ((string)(this[this._tableЗапрос_Студенты_Специальности.Описание_специальностиColumn]));
  5850. }
  5851. catch (global::System.InvalidCastException e) {
  5852. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'Запрос Студенты+Специаль" +
  5853. "ности\' равно DBNull.", e);
  5854. }
  5855. }
  5856. set {
  5857. this[this._tableЗапрос_Студенты_Специальности.Описание_специальностиColumn] = value;
  5858. }
  5859. }
  5860. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5861. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5862. public bool IsФИОNull() {
  5863. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ФИОColumn);
  5864. }
  5865. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5866. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5867. public void SetФИОNull() {
  5868. this[this._tableЗапрос_Студенты_Специальности.ФИОColumn] = global::System.Convert.DBNull;
  5869. }
  5870. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5871. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5872. public bool IsПолNull() {
  5873. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ПолColumn);
  5874. }
  5875. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5876. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5877. public void SetПолNull() {
  5878. this[this._tableЗапрос_Студенты_Специальности.ПолColumn] = global::System.Convert.DBNull;
  5879. }
  5880. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5881. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5882. public bool IsДата_рожденияNull() {
  5883. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn);
  5884. }
  5885. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5886. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5887. public void SetДата_рожденияNull() {
  5888. this[this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn] = global::System.Convert.DBNull;
  5889. }
  5890. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5891. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5892. public bool IsРодителиNull() {
  5893. return this.IsNull(this._tableЗапрос_Студенты_Специальности.РодителиColumn);
  5894. }
  5895. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5896. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5897. public void SetРодителиNull() {
  5898. this[this._tableЗапрос_Студенты_Специальности.РодителиColumn] = global::System.Convert.DBNull;
  5899. }
  5900. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5901. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5902. public bool IsАдресNull() {
  5903. return this.IsNull(this._tableЗапрос_Студенты_Специальности.АдресColumn);
  5904. }
  5905. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5906. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5907. public void SetАдресNull() {
  5908. this[this._tableЗапрос_Студенты_Специальности.АдресColumn] = global::System.Convert.DBNull;
  5909. }
  5910. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5911. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5912. public bool IsТелефонNull() {
  5913. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ТелефонColumn);
  5914. }
  5915. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5916. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5917. public void SetТелефонNull() {
  5918. this[this._tableЗапрос_Студенты_Специальности.ТелефонColumn] = global::System.Convert.DBNull;
  5919. }
  5920. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5921. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5922. public bool IsПаспортные_данныеNull() {
  5923. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn);
  5924. }
  5925. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5926. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5927. public void SetПаспортные_данныеNull() {
  5928. this[this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  5929. }
  5930. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5931. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5932. public bool IsНомер_зачеткиNull() {
  5933. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn);
  5934. }
  5935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5937. public void SetНомер_зачеткиNull() {
  5938. this[this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  5939. }
  5940. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5941. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5942. public bool IsДата_поступленияNull() {
  5943. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Дата_поступленияColumn);
  5944. }
  5945. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5946. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5947. public void SetДата_поступленияNull() {
  5948. this[this._tableЗапрос_Студенты_Специальности.Дата_поступленияColumn] = global::System.Convert.DBNull;
  5949. }
  5950. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5951. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5952. public bool IsГруппаNull() {
  5953. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ГруппаColumn);
  5954. }
  5955. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5956. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5957. public void SetГруппаNull() {
  5958. this[this._tableЗапрос_Студенты_Специальности.ГруппаColumn] = global::System.Convert.DBNull;
  5959. }
  5960. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5961. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5962. public bool IsКурсNull() {
  5963. return this.IsNull(this._tableЗапрос_Студенты_Специальности.КурсColumn);
  5964. }
  5965. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5966. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5967. public void SetКурсNull() {
  5968. this[this._tableЗапрос_Студенты_Специальности.КурсColumn] = global::System.Convert.DBNull;
  5969. }
  5970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5972. public bool IsОчная_форма_обученияNull() {
  5973. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn);
  5974. }
  5975. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5976. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5977. public void SetОчная_форма_обученияNull() {
  5978. this[this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  5979. }
  5980. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5981. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5982. public bool IsНазвание_специальностиNull() {
  5983. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Название_специальностиColumn);
  5984. }
  5985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5986. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5987. public void SetНазвание_специальностиNull() {
  5988. this[this._tableЗапрос_Студенты_Специальности.Название_специальностиColumn] = global::System.Convert.DBNull;
  5989. }
  5990. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5991. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5992. public bool IsОписание_специальностиNull() {
  5993. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Описание_специальностиColumn);
  5994. }
  5995. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5996. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5997. public void SetОписание_специальностиNull() {
  5998. this[this._tableЗапрос_Студенты_Специальности.Описание_специальностиColumn] = global::System.Convert.DBNull;
  5999. }
  6000. }
  6001. /// <summary>
  6002. ///Represents strongly named DataRow class.
  6003. ///</summary>
  6004. public partial class Фильтр_ММRow : global::System.Data.DataRow {
  6005. private Фильтр_ММDataTable tableФильтр_ММ;
  6006. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6008. internal Фильтр_ММRow(global::System.Data.DataRowBuilder rb) :
  6009. base(rb) {
  6010. this.tableФильтр_ММ = ((Фильтр_ММDataTable)(this.Table));
  6011. }
  6012. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6013. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6014. public string ФИО {
  6015. get {
  6016. try {
  6017. return ((string)(this[this.tableФильтр_ММ.ФИОColumn]));
  6018. }
  6019. catch (global::System.InvalidCastException e) {
  6020. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6021. }
  6022. }
  6023. set {
  6024. this[this.tableФильтр_ММ.ФИОColumn] = value;
  6025. }
  6026. }
  6027. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6028. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6029. public string Пол {
  6030. get {
  6031. try {
  6032. return ((string)(this[this.tableФильтр_ММ.ПолColumn]));
  6033. }
  6034. catch (global::System.InvalidCastException e) {
  6035. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6036. }
  6037. }
  6038. set {
  6039. this[this.tableФильтр_ММ.ПолColumn] = value;
  6040. }
  6041. }
  6042. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6043. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6044. public System.DateTime Дата_рождения {
  6045. get {
  6046. try {
  6047. return ((global::System.DateTime)(this[this.tableФильтр_ММ.Дата_рожденияColumn]));
  6048. }
  6049. catch (global::System.InvalidCastException e) {
  6050. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6051. }
  6052. }
  6053. set {
  6054. this[this.tableФильтр_ММ.Дата_рожденияColumn] = value;
  6055. }
  6056. }
  6057. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6058. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6059. public string Родители {
  6060. get {
  6061. try {
  6062. return ((string)(this[this.tableФильтр_ММ.РодителиColumn]));
  6063. }
  6064. catch (global::System.InvalidCastException e) {
  6065. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6066. }
  6067. }
  6068. set {
  6069. this[this.tableФильтр_ММ.РодителиColumn] = value;
  6070. }
  6071. }
  6072. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6073. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6074. public string Адрес {
  6075. get {
  6076. try {
  6077. return ((string)(this[this.tableФильтр_ММ.АдресColumn]));
  6078. }
  6079. catch (global::System.InvalidCastException e) {
  6080. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6081. }
  6082. }
  6083. set {
  6084. this[this.tableФильтр_ММ.АдресColumn] = value;
  6085. }
  6086. }
  6087. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6088. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6089. public string Группа {
  6090. get {
  6091. try {
  6092. return ((string)(this[this.tableФильтр_ММ.ГруппаColumn]));
  6093. }
  6094. catch (global::System.InvalidCastException e) {
  6095. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6096. }
  6097. }
  6098. set {
  6099. this[this.tableФильтр_ММ.ГруппаColumn] = value;
  6100. }
  6101. }
  6102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6104. public byte Курс {
  6105. get {
  6106. try {
  6107. return ((byte)(this[this.tableФильтр_ММ.КурсColumn]));
  6108. }
  6109. catch (global::System.InvalidCastException e) {
  6110. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6111. }
  6112. }
  6113. set {
  6114. this[this.tableФильтр_ММ.КурсColumn] = value;
  6115. }
  6116. }
  6117. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6118. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6119. public long Номер_зачетки {
  6120. get {
  6121. try {
  6122. return ((long)(this[this.tableФильтр_ММ.Номер_зачеткиColumn]));
  6123. }
  6124. catch (global::System.InvalidCastException e) {
  6125. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6126. }
  6127. }
  6128. set {
  6129. this[this.tableФильтр_ММ.Номер_зачеткиColumn] = value;
  6130. }
  6131. }
  6132. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6134. public string Паспортные_данные {
  6135. get {
  6136. try {
  6137. return ((string)(this[this.tableФильтр_ММ.Паспортные_данныеColumn]));
  6138. }
  6139. catch (global::System.InvalidCastException e) {
  6140. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6141. }
  6142. }
  6143. set {
  6144. this[this.tableФильтр_ММ.Паспортные_данныеColumn] = value;
  6145. }
  6146. }
  6147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6148. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6149. public string Телефон {
  6150. get {
  6151. try {
  6152. return ((string)(this[this.tableФильтр_ММ.ТелефонColumn]));
  6153. }
  6154. catch (global::System.InvalidCastException e) {
  6155. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6156. }
  6157. }
  6158. set {
  6159. this[this.tableФильтр_ММ.ТелефонColumn] = value;
  6160. }
  6161. }
  6162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6164. public string Название_специальности {
  6165. get {
  6166. try {
  6167. return ((string)(this[this.tableФильтр_ММ.Название_специальностиColumn]));
  6168. }
  6169. catch (global::System.InvalidCastException e) {
  6170. throw new global::System.Data.StrongTypingException("Значение для столбца \'Название специальности\' в таблице \'Фильтр ММ\' равно DBNull." +
  6171. "", e);
  6172. }
  6173. }
  6174. set {
  6175. this[this.tableФильтр_ММ.Название_специальностиColumn] = value;
  6176. }
  6177. }
  6178. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6179. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6180. public string Описание_специальности {
  6181. get {
  6182. try {
  6183. return ((string)(this[this.tableФильтр_ММ.Описание_специальностиColumn]));
  6184. }
  6185. catch (global::System.InvalidCastException e) {
  6186. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'Фильтр ММ\' равно DBNull." +
  6187. "", e);
  6188. }
  6189. }
  6190. set {
  6191. this[this.tableФильтр_ММ.Описание_специальностиColumn] = value;
  6192. }
  6193. }
  6194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6196. public bool Очная_форма_обучения {
  6197. get {
  6198. try {
  6199. return ((bool)(this[this.tableФильтр_ММ.Очная_форма_обученияColumn]));
  6200. }
  6201. catch (global::System.InvalidCastException e) {
  6202. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6203. }
  6204. }
  6205. set {
  6206. this[this.tableФильтр_ММ.Очная_форма_обученияColumn] = value;
  6207. }
  6208. }
  6209. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6210. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6211. public System.DateTime Дата_поступления {
  6212. get {
  6213. try {
  6214. return ((global::System.DateTime)(this[this.tableФильтр_ММ.Дата_поступленияColumn]));
  6215. }
  6216. catch (global::System.InvalidCastException e) {
  6217. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  6218. }
  6219. }
  6220. set {
  6221. this[this.tableФильтр_ММ.Дата_поступленияColumn] = value;
  6222. }
  6223. }
  6224. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6225. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6226. public bool IsФИОNull() {
  6227. return this.IsNull(this.tableФильтр_ММ.ФИОColumn);
  6228. }
  6229. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6230. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6231. public void SetФИОNull() {
  6232. this[this.tableФильтр_ММ.ФИОColumn] = global::System.Convert.DBNull;
  6233. }
  6234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6236. public bool IsПолNull() {
  6237. return this.IsNull(this.tableФильтр_ММ.ПолColumn);
  6238. }
  6239. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6240. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6241. public void SetПолNull() {
  6242. this[this.tableФильтр_ММ.ПолColumn] = global::System.Convert.DBNull;
  6243. }
  6244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6246. public bool IsДата_рожденияNull() {
  6247. return this.IsNull(this.tableФильтр_ММ.Дата_рожденияColumn);
  6248. }
  6249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6251. public void SetДата_рожденияNull() {
  6252. this[this.tableФильтр_ММ.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6253. }
  6254. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6255. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6256. public bool IsРодителиNull() {
  6257. return this.IsNull(this.tableФильтр_ММ.РодителиColumn);
  6258. }
  6259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6261. public void SetРодителиNull() {
  6262. this[this.tableФильтр_ММ.РодителиColumn] = global::System.Convert.DBNull;
  6263. }
  6264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6266. public bool IsАдресNull() {
  6267. return this.IsNull(this.tableФильтр_ММ.АдресColumn);
  6268. }
  6269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6271. public void SetАдресNull() {
  6272. this[this.tableФильтр_ММ.АдресColumn] = global::System.Convert.DBNull;
  6273. }
  6274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6276. public bool IsГруппаNull() {
  6277. return this.IsNull(this.tableФильтр_ММ.ГруппаColumn);
  6278. }
  6279. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6280. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6281. public void SetГруппаNull() {
  6282. this[this.tableФильтр_ММ.ГруппаColumn] = global::System.Convert.DBNull;
  6283. }
  6284. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6285. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6286. public bool IsКурсNull() {
  6287. return this.IsNull(this.tableФильтр_ММ.КурсColumn);
  6288. }
  6289. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6290. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6291. public void SetКурсNull() {
  6292. this[this.tableФильтр_ММ.КурсColumn] = global::System.Convert.DBNull;
  6293. }
  6294. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6295. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6296. public bool IsНомер_зачеткиNull() {
  6297. return this.IsNull(this.tableФильтр_ММ.Номер_зачеткиColumn);
  6298. }
  6299. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6300. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6301. public void SetНомер_зачеткиNull() {
  6302. this[this.tableФильтр_ММ.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  6303. }
  6304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6306. public bool IsПаспортные_данныеNull() {
  6307. return this.IsNull(this.tableФильтр_ММ.Паспортные_данныеColumn);
  6308. }
  6309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6311. public void SetПаспортные_данныеNull() {
  6312. this[this.tableФильтр_ММ.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  6313. }
  6314. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6315. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6316. public bool IsТелефонNull() {
  6317. return this.IsNull(this.tableФильтр_ММ.ТелефонColumn);
  6318. }
  6319. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6320. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6321. public void SetТелефонNull() {
  6322. this[this.tableФильтр_ММ.ТелефонColumn] = global::System.Convert.DBNull;
  6323. }
  6324. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6325. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6326. public bool IsНазвание_специальностиNull() {
  6327. return this.IsNull(this.tableФильтр_ММ.Название_специальностиColumn);
  6328. }
  6329. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6330. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6331. public void SetНазвание_специальностиNull() {
  6332. this[this.tableФильтр_ММ.Название_специальностиColumn] = global::System.Convert.DBNull;
  6333. }
  6334. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6335. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6336. public bool IsОписание_специальностиNull() {
  6337. return this.IsNull(this.tableФильтр_ММ.Описание_специальностиColumn);
  6338. }
  6339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6341. public void SetОписание_специальностиNull() {
  6342. this[this.tableФильтр_ММ.Описание_специальностиColumn] = global::System.Convert.DBNull;
  6343. }
  6344. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6345. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6346. public bool IsОчная_форма_обученияNull() {
  6347. return this.IsNull(this.tableФильтр_ММ.Очная_форма_обученияColumn);
  6348. }
  6349. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6350. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6351. public void SetОчная_форма_обученияNull() {
  6352. this[this.tableФильтр_ММ.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  6353. }
  6354. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6355. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6356. public bool IsДата_поступленияNull() {
  6357. return this.IsNull(this.tableФильтр_ММ.Дата_поступленияColumn);
  6358. }
  6359. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6360. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6361. public void SetДата_поступленияNull() {
  6362. this[this.tableФильтр_ММ.Дата_поступленияColumn] = global::System.Convert.DBNull;
  6363. }
  6364. }
  6365. /// <summary>
  6366. ///Represents strongly named DataRow class.
  6367. ///</summary>
  6368. public partial class Фильтр_ПИRow : global::System.Data.DataRow {
  6369. private Фильтр_ПИDataTable tableФильтр_ПИ;
  6370. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6371. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6372. internal Фильтр_ПИRow(global::System.Data.DataRowBuilder rb) :
  6373. base(rb) {
  6374. this.tableФильтр_ПИ = ((Фильтр_ПИDataTable)(this.Table));
  6375. }
  6376. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6377. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6378. public string ФИО {
  6379. get {
  6380. try {
  6381. return ((string)(this[this.tableФильтр_ПИ.ФИОColumn]));
  6382. }
  6383. catch (global::System.InvalidCastException e) {
  6384. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6385. }
  6386. }
  6387. set {
  6388. this[this.tableФильтр_ПИ.ФИОColumn] = value;
  6389. }
  6390. }
  6391. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6392. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6393. public System.DateTime Дата_рождения {
  6394. get {
  6395. try {
  6396. return ((global::System.DateTime)(this[this.tableФильтр_ПИ.Дата_рожденияColumn]));
  6397. }
  6398. catch (global::System.InvalidCastException e) {
  6399. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6400. }
  6401. }
  6402. set {
  6403. this[this.tableФильтр_ПИ.Дата_рожденияColumn] = value;
  6404. }
  6405. }
  6406. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6407. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6408. public string Родители {
  6409. get {
  6410. try {
  6411. return ((string)(this[this.tableФильтр_ПИ.РодителиColumn]));
  6412. }
  6413. catch (global::System.InvalidCastException e) {
  6414. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6415. }
  6416. }
  6417. set {
  6418. this[this.tableФильтр_ПИ.РодителиColumn] = value;
  6419. }
  6420. }
  6421. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6422. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6423. public string Пол {
  6424. get {
  6425. try {
  6426. return ((string)(this[this.tableФильтр_ПИ.ПолColumn]));
  6427. }
  6428. catch (global::System.InvalidCastException e) {
  6429. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6430. }
  6431. }
  6432. set {
  6433. this[this.tableФильтр_ПИ.ПолColumn] = value;
  6434. }
  6435. }
  6436. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6437. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6438. public string Адрес {
  6439. get {
  6440. try {
  6441. return ((string)(this[this.tableФильтр_ПИ.АдресColumn]));
  6442. }
  6443. catch (global::System.InvalidCastException e) {
  6444. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6445. }
  6446. }
  6447. set {
  6448. this[this.tableФильтр_ПИ.АдресColumn] = value;
  6449. }
  6450. }
  6451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6452. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6453. public string Телефон {
  6454. get {
  6455. try {
  6456. return ((string)(this[this.tableФильтр_ПИ.ТелефонColumn]));
  6457. }
  6458. catch (global::System.InvalidCastException e) {
  6459. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6460. }
  6461. }
  6462. set {
  6463. this[this.tableФильтр_ПИ.ТелефонColumn] = value;
  6464. }
  6465. }
  6466. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6467. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6468. public System.DateTime Дата_поступления {
  6469. get {
  6470. try {
  6471. return ((global::System.DateTime)(this[this.tableФильтр_ПИ.Дата_поступленияColumn]));
  6472. }
  6473. catch (global::System.InvalidCastException e) {
  6474. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6475. }
  6476. }
  6477. set {
  6478. this[this.tableФильтр_ПИ.Дата_поступленияColumn] = value;
  6479. }
  6480. }
  6481. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6482. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6483. public long Номер_зачетки {
  6484. get {
  6485. try {
  6486. return ((long)(this[this.tableФильтр_ПИ.Номер_зачеткиColumn]));
  6487. }
  6488. catch (global::System.InvalidCastException e) {
  6489. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6490. }
  6491. }
  6492. set {
  6493. this[this.tableФильтр_ПИ.Номер_зачеткиColumn] = value;
  6494. }
  6495. }
  6496. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6497. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6498. public string Группа {
  6499. get {
  6500. try {
  6501. return ((string)(this[this.tableФильтр_ПИ.ГруппаColumn]));
  6502. }
  6503. catch (global::System.InvalidCastException e) {
  6504. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6505. }
  6506. }
  6507. set {
  6508. this[this.tableФильтр_ПИ.ГруппаColumn] = value;
  6509. }
  6510. }
  6511. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6512. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6513. public byte Курс {
  6514. get {
  6515. try {
  6516. return ((byte)(this[this.tableФильтр_ПИ.КурсColumn]));
  6517. }
  6518. catch (global::System.InvalidCastException e) {
  6519. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6520. }
  6521. }
  6522. set {
  6523. this[this.tableФильтр_ПИ.КурсColumn] = value;
  6524. }
  6525. }
  6526. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6527. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6528. public bool Очная_форма_обучения {
  6529. get {
  6530. try {
  6531. return ((bool)(this[this.tableФильтр_ПИ.Очная_форма_обученияColumn]));
  6532. }
  6533. catch (global::System.InvalidCastException e) {
  6534. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6535. }
  6536. }
  6537. set {
  6538. this[this.tableФильтр_ПИ.Очная_форма_обученияColumn] = value;
  6539. }
  6540. }
  6541. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6542. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6543. public string Паспортные_данные {
  6544. get {
  6545. try {
  6546. return ((string)(this[this.tableФильтр_ПИ.Паспортные_данныеColumn]));
  6547. }
  6548. catch (global::System.InvalidCastException e) {
  6549. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Фильтр ПИ\' равно DBNull.", e);
  6550. }
  6551. }
  6552. set {
  6553. this[this.tableФильтр_ПИ.Паспортные_данныеColumn] = value;
  6554. }
  6555. }
  6556. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6557. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6558. public string Название_специальности {
  6559. get {
  6560. try {
  6561. return ((string)(this[this.tableФильтр_ПИ.Название_специальностиColumn]));
  6562. }
  6563. catch (global::System.InvalidCastException e) {
  6564. throw new global::System.Data.StrongTypingException("Значение для столбца \'Название специальности\' в таблице \'Фильтр ПИ\' равно DBNull." +
  6565. "", e);
  6566. }
  6567. }
  6568. set {
  6569. this[this.tableФильтр_ПИ.Название_специальностиColumn] = value;
  6570. }
  6571. }
  6572. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6573. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6574. public string Описание_специальности {
  6575. get {
  6576. try {
  6577. return ((string)(this[this.tableФильтр_ПИ.Описание_специальностиColumn]));
  6578. }
  6579. catch (global::System.InvalidCastException e) {
  6580. throw new global::System.Data.StrongTypingException("Значение для столбца \'Описание специальности\' в таблице \'Фильтр ПИ\' равно DBNull." +
  6581. "", e);
  6582. }
  6583. }
  6584. set {
  6585. this[this.tableФильтр_ПИ.Описание_специальностиColumn] = value;
  6586. }
  6587. }
  6588. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6589. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6590. public bool IsФИОNull() {
  6591. return this.IsNull(this.tableФильтр_ПИ.ФИОColumn);
  6592. }
  6593. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6594. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6595. public void SetФИОNull() {
  6596. this[this.tableФильтр_ПИ.ФИОColumn] = global::System.Convert.DBNull;
  6597. }
  6598. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6599. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6600. public bool IsДата_рожденияNull() {
  6601. return this.IsNull(this.tableФильтр_ПИ.Дата_рожденияColumn);
  6602. }
  6603. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6604. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6605. public void SetДата_рожденияNull() {
  6606. this[this.tableФильтр_ПИ.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6607. }
  6608. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6609. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6610. public bool IsРодителиNull() {
  6611. return this.IsNull(this.tableФильтр_ПИ.РодителиColumn);
  6612. }
  6613. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6614. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6615. public void SetРодителиNull() {
  6616. this[this.tableФильтр_ПИ.РодителиColumn] = global::System.Convert.DBNull;
  6617. }
  6618. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6619. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6620. public bool IsПолNull() {
  6621. return this.IsNull(this.tableФильтр_ПИ.ПолColumn);
  6622. }
  6623. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6624. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6625. public void SetПолNull() {
  6626. this[this.tableФильтр_ПИ.ПолColumn] = global::System.Convert.DBNull;
  6627. }
  6628. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6629. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6630. public bool IsАдресNull() {
  6631. return this.IsNull(this.tableФильтр_ПИ.АдресColumn);
  6632. }
  6633. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6634. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6635. public void SetАдресNull() {
  6636. this[this.tableФильтр_ПИ.АдресColumn] = global::System.Convert.DBNull;
  6637. }
  6638. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6639. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6640. public bool IsТелефонNull() {
  6641. return this.IsNull(this.tableФильтр_ПИ.ТелефонColumn);
  6642. }
  6643. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6644. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6645. public void SetТелефонNull() {
  6646. this[this.tableФильтр_ПИ.ТелефонColumn] = global::System.Convert.DBNull;
  6647. }
  6648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6650. public bool IsДата_поступленияNull() {
  6651. return this.IsNull(this.tableФильтр_ПИ.Дата_поступленияColumn);
  6652. }
  6653. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6654. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6655. public void SetДата_поступленияNull() {
  6656. this[this.tableФильтр_ПИ.Дата_поступленияColumn] = global::System.Convert.DBNull;
  6657. }
  6658. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6659. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6660. public bool IsНомер_зачеткиNull() {
  6661. return this.IsNull(this.tableФильтр_ПИ.Номер_зачеткиColumn);
  6662. }
  6663. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6664. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6665. public void SetНомер_зачеткиNull() {
  6666. this[this.tableФильтр_ПИ.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  6667. }
  6668. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6669. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6670. public bool IsГруппаNull() {
  6671. return this.IsNull(this.tableФильтр_ПИ.ГруппаColumn);
  6672. }
  6673. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6674. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6675. public void SetГруппаNull() {
  6676. this[this.tableФильтр_ПИ.ГруппаColumn] = global::System.Convert.DBNull;
  6677. }
  6678. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6679. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6680. public bool IsКурсNull() {
  6681. return this.IsNull(this.tableФильтр_ПИ.КурсColumn);
  6682. }
  6683. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6684. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6685. public void SetКурсNull() {
  6686. this[this.tableФильтр_ПИ.КурсColumn] = global::System.Convert.DBNull;
  6687. }
  6688. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6689. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6690. public bool IsОчная_форма_обученияNull() {
  6691. return this.IsNull(this.tableФильтр_ПИ.Очная_форма_обученияColumn);
  6692. }
  6693. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6694. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6695. public void SetОчная_форма_обученияNull() {
  6696. this[this.tableФильтр_ПИ.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  6697. }
  6698. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6699. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6700. public bool IsПаспортные_данныеNull() {
  6701. return this.IsNull(this.tableФильтр_ПИ.Паспортные_данныеColumn);
  6702. }
  6703. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6704. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6705. public void SetПаспортные_данныеNull() {
  6706. this[this.tableФильтр_ПИ.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  6707. }
  6708. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6709. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6710. public bool IsНазвание_специальностиNull() {
  6711. return this.IsNull(this.tableФильтр_ПИ.Название_специальностиColumn);
  6712. }
  6713. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6714. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6715. public void SetНазвание_специальностиNull() {
  6716. this[this.tableФильтр_ПИ.Название_специальностиColumn] = global::System.Convert.DBNull;
  6717. }
  6718. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6719. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6720. public bool IsОписание_специальностиNull() {
  6721. return this.IsNull(this.tableФильтр_ПИ.Описание_специальностиColumn);
  6722. }
  6723. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6724. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6725. public void SetОписание_специальностиNull() {
  6726. this[this.tableФильтр_ПИ.Описание_специальностиColumn] = global::System.Convert.DBNull;
  6727. }
  6728. }
  6729. /// <summary>
  6730. ///Represents strongly named DataRow class.
  6731. ///</summary>
  6732. public partial class Отображение_студентов_по_возрастуRow : global::System.Data.DataRow {
  6733. private Отображение_студентов_по_возрастуDataTable tableОтображение_студентов_по_возрасту;
  6734. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6735. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6736. internal Отображение_студентов_по_возрастуRow(global::System.Data.DataRowBuilder rb) :
  6737. base(rb) {
  6738. this.tableОтображение_студентов_по_возрасту = ((Отображение_студентов_по_возрастуDataTable)(this.Table));
  6739. }
  6740. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6741. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6742. public string ФИО {
  6743. get {
  6744. try {
  6745. return ((string)(this[this.tableОтображение_студентов_по_возрасту.ФИОColumn]));
  6746. }
  6747. catch (global::System.InvalidCastException e) {
  6748. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Отображение студентов по возрасту\' равно DB" +
  6749. "Null.", e);
  6750. }
  6751. }
  6752. set {
  6753. this[this.tableОтображение_студентов_по_возрасту.ФИОColumn] = value;
  6754. }
  6755. }
  6756. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6757. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6758. public System.DateTime Дата_рождения {
  6759. get {
  6760. try {
  6761. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn]));
  6762. }
  6763. catch (global::System.InvalidCastException e) {
  6764. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Отображение студентов по возрасту" +
  6765. "\' равно DBNull.", e);
  6766. }
  6767. }
  6768. set {
  6769. this[this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn] = value;
  6770. }
  6771. }
  6772. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6773. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6774. public int Возраст {
  6775. get {
  6776. try {
  6777. return ((int)(this[this.tableОтображение_студентов_по_возрасту.ВозрастColumn]));
  6778. }
  6779. catch (global::System.InvalidCastException e) {
  6780. throw new global::System.Data.StrongTypingException("Значение для столбца \'Возраст\' в таблице \'Отображение студентов по возрасту\' равн" +
  6781. "о DBNull.", e);
  6782. }
  6783. }
  6784. set {
  6785. this[this.tableОтображение_студентов_по_возрасту.ВозрастColumn] = value;
  6786. }
  6787. }
  6788. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6790. public bool IsФИОNull() {
  6791. return this.IsNull(this.tableОтображение_студентов_по_возрасту.ФИОColumn);
  6792. }
  6793. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6794. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6795. public void SetФИОNull() {
  6796. this[this.tableОтображение_студентов_по_возрасту.ФИОColumn] = global::System.Convert.DBNull;
  6797. }
  6798. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6799. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6800. public bool IsДата_рожденияNull() {
  6801. return this.IsNull(this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn);
  6802. }
  6803. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6804. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6805. public void SetДата_рожденияNull() {
  6806. this[this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6807. }
  6808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6810. public bool IsВозрастNull() {
  6811. return this.IsNull(this.tableОтображение_студентов_по_возрасту.ВозрастColumn);
  6812. }
  6813. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6814. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6815. public void SetВозрастNull() {
  6816. this[this.tableОтображение_студентов_по_возрасту.ВозрастColumn] = global::System.Convert.DBNull;
  6817. }
  6818. }
  6819. /// <summary>
  6820. ///Represents strongly named DataRow class.
  6821. ///</summary>
  6822. public partial class Отображение_студентов_по_среднему_баллуRow : global::System.Data.DataRow {
  6823. private Отображение_студентов_по_среднему_баллуDataTable tableОтображение_студентов_по_среднему_баллу;
  6824. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6825. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6826. internal Отображение_студентов_по_среднему_баллуRow(global::System.Data.DataRowBuilder rb) :
  6827. base(rb) {
  6828. this.tableОтображение_студентов_по_среднему_баллу = ((Отображение_студентов_по_среднему_баллуDataTable)(this.Table));
  6829. }
  6830. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6831. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6832. public string ФИО_студента {
  6833. get {
  6834. try {
  6835. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.ФИО_студентаColumn]));
  6836. }
  6837. catch (global::System.InvalidCastException e) {
  6838. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО студента\' в таблице \'Отображение студентов по среднему " +
  6839. "баллу\' равно DBNull.", e);
  6840. }
  6841. }
  6842. set {
  6843. this[this.tableОтображение_студентов_по_среднему_баллу.ФИО_студентаColumn] = value;
  6844. }
  6845. }
  6846. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6847. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6848. public System.DateTime Дата_первого_экзамена {
  6849. get {
  6850. try {
  6851. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_среднему_баллу.Дата_первого_экзаменаColumn]));
  6852. }
  6853. catch (global::System.InvalidCastException e) {
  6854. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата первого экзамена\' в таблице \'Отображение студентов по " +
  6855. "среднему баллу\' равно DBNull.", e);
  6856. }
  6857. }
  6858. set {
  6859. this[this.tableОтображение_студентов_по_среднему_баллу.Дата_первого_экзаменаColumn] = value;
  6860. }
  6861. }
  6862. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6863. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6864. public string Наименование_предмета_первого_экзамена {
  6865. get {
  6866. try {
  6867. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_первого_экзаменаColumn]));
  6868. }
  6869. catch (global::System.InvalidCastException e) {
  6870. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета первого экзамена\' в таблице \'Отображе" +
  6871. "ние студентов по среднему баллу\' равно DBNull.", e);
  6872. }
  6873. }
  6874. set {
  6875. this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_первого_экзаменаColumn] = value;
  6876. }
  6877. }
  6878. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6879. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6880. public byte Оценка_первого_экзамена {
  6881. get {
  6882. try {
  6883. return ((byte)(this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_первого_экзаменаColumn]));
  6884. }
  6885. catch (global::System.InvalidCastException e) {
  6886. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка первого экзамена\' в таблице \'Отображение студентов п" +
  6887. "о среднему баллу\' равно DBNull.", e);
  6888. }
  6889. }
  6890. set {
  6891. this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_первого_экзаменаColumn] = value;
  6892. }
  6893. }
  6894. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6895. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6896. public System.DateTime Дата_второго_экзамена {
  6897. get {
  6898. try {
  6899. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_среднему_баллу.Дата_второго_экзаменаColumn]));
  6900. }
  6901. catch (global::System.InvalidCastException e) {
  6902. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата второго экзамена\' в таблице \'Отображение студентов по " +
  6903. "среднему баллу\' равно DBNull.", e);
  6904. }
  6905. }
  6906. set {
  6907. this[this.tableОтображение_студентов_по_среднему_баллу.Дата_второго_экзаменаColumn] = value;
  6908. }
  6909. }
  6910. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6911. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6912. public string Наименование_предмета_второго_экзамена {
  6913. get {
  6914. try {
  6915. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_второго_экзаменаColumn]));
  6916. }
  6917. catch (global::System.InvalidCastException e) {
  6918. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета второго экзамена\' в таблице \'Отображе" +
  6919. "ние студентов по среднему баллу\' равно DBNull.", e);
  6920. }
  6921. }
  6922. set {
  6923. this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_второго_экзаменаColumn] = value;
  6924. }
  6925. }
  6926. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6927. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6928. public byte Оценка_второго_экзамена {
  6929. get {
  6930. try {
  6931. return ((byte)(this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_второго_экзаменаColumn]));
  6932. }
  6933. catch (global::System.InvalidCastException e) {
  6934. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка второго экзамена\' в таблице \'Отображение студентов п" +
  6935. "о среднему баллу\' равно DBNull.", e);
  6936. }
  6937. }
  6938. set {
  6939. this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_второго_экзаменаColumn] = value;
  6940. }
  6941. }
  6942. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6943. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6944. public string Наименование_предмета_третьего_экзамена {
  6945. get {
  6946. try {
  6947. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_третьего_экзаменаColumn]));
  6948. }
  6949. catch (global::System.InvalidCastException e) {
  6950. throw new global::System.Data.StrongTypingException("Значение для столбца \'Наименование предмета третьего экзамена\' в таблице \'Отображ" +
  6951. "ение студентов по среднему баллу\' равно DBNull.", e);
  6952. }
  6953. }
  6954. set {
  6955. this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_третьего_экзаменаColumn] = value;
  6956. }
  6957. }
  6958. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6959. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6960. public byte Оценка_третьего_экзамена {
  6961. get {
  6962. try {
  6963. return ((byte)(this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_третьего_экзаменаColumn]));
  6964. }
  6965. catch (global::System.InvalidCastException e) {
  6966. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка третьего экзамена\' в таблице \'Отображение студентов " +
  6967. "по среднему баллу\' равно DBNull.", e);
  6968. }
  6969. }
  6970. set {
  6971. this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_третьего_экзаменаColumn] = value;
  6972. }
  6973. }
  6974. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6975. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6976. public System.DateTime Дата_третьего_экзамена {
  6977. get {
  6978. try {
  6979. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_среднему_баллу.Дата_третьего_экзаменаColumn]));
  6980. }
  6981. catch (global::System.InvalidCastException e) {
  6982. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата третьего экзамена\' в таблице \'Отображение студентов по" +
  6983. " среднему баллу\' равно DBNull.", e);
  6984. }
  6985. }
  6986. set {
  6987. this[this.tableОтображение_студентов_по_среднему_баллу.Дата_третьего_экзаменаColumn] = value;
  6988. }
  6989. }
  6990. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6991. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6992. public float Средний_балл_студента_за_сесию {
  6993. get {
  6994. try {
  6995. return ((float)(this[this.tableОтображение_студентов_по_среднему_баллу.Средний_балл_студента_за_сесиюColumn]));
  6996. }
  6997. catch (global::System.InvalidCastException e) {
  6998. throw new global::System.Data.StrongTypingException("Значение для столбца \'Средний балл студента за сесию\' в таблице \'Отображение студ" +
  6999. "ентов по среднему баллу\' равно DBNull.", e);
  7000. }
  7001. }
  7002. set {
  7003. this[this.tableОтображение_студентов_по_среднему_баллу.Средний_балл_студента_за_сесиюColumn] = value;
  7004. }
  7005. }
  7006. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7008. public bool IsФИО_студентаNull() {
  7009. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.ФИО_студентаColumn);
  7010. }
  7011. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7012. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7013. public void SetФИО_студентаNull() {
  7014. this[this.tableОтображение_студентов_по_среднему_баллу.ФИО_студентаColumn] = global::System.Convert.DBNull;
  7015. }
  7016. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7017. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7018. public bool IsДата_первого_экзаменаNull() {
  7019. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Дата_первого_экзаменаColumn);
  7020. }
  7021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7022. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7023. public void SetДата_первого_экзаменаNull() {
  7024. this[this.tableОтображение_студентов_по_среднему_баллу.Дата_первого_экзаменаColumn] = global::System.Convert.DBNull;
  7025. }
  7026. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7027. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7028. public bool IsНаименование_предмета_первого_экзаменаNull() {
  7029. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_первого_экзаменаColumn);
  7030. }
  7031. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7032. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7033. public void SetНаименование_предмета_первого_экзаменаNull() {
  7034. this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_первого_экзаменаColumn] = global::System.Convert.DBNull;
  7035. }
  7036. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7037. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7038. public bool IsОценка_первого_экзаменаNull() {
  7039. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Оценка_первого_экзаменаColumn);
  7040. }
  7041. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7042. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7043. public void SetОценка_первого_экзаменаNull() {
  7044. this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_первого_экзаменаColumn] = global::System.Convert.DBNull;
  7045. }
  7046. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7048. public bool IsДата_второго_экзаменаNull() {
  7049. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Дата_второго_экзаменаColumn);
  7050. }
  7051. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7052. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7053. public void SetДата_второго_экзаменаNull() {
  7054. this[this.tableОтображение_студентов_по_среднему_баллу.Дата_второго_экзаменаColumn] = global::System.Convert.DBNull;
  7055. }
  7056. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7057. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7058. public bool IsНаименование_предмета_второго_экзаменаNull() {
  7059. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_второго_экзаменаColumn);
  7060. }
  7061. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7062. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7063. public void SetНаименование_предмета_второго_экзаменаNull() {
  7064. this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_второго_экзаменаColumn] = global::System.Convert.DBNull;
  7065. }
  7066. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7067. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7068. public bool IsОценка_второго_экзаменаNull() {
  7069. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Оценка_второго_экзаменаColumn);
  7070. }
  7071. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7072. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7073. public void SetОценка_второго_экзаменаNull() {
  7074. this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_второго_экзаменаColumn] = global::System.Convert.DBNull;
  7075. }
  7076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7078. public bool IsНаименование_предмета_третьего_экзаменаNull() {
  7079. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_третьего_экзаменаColumn);
  7080. }
  7081. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7082. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7083. public void SetНаименование_предмета_третьего_экзаменаNull() {
  7084. this[this.tableОтображение_студентов_по_среднему_баллу.Наименование_предмета_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  7085. }
  7086. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7087. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7088. public bool IsОценка_третьего_экзаменаNull() {
  7089. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Оценка_третьего_экзаменаColumn);
  7090. }
  7091. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7092. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7093. public void SetОценка_третьего_экзаменаNull() {
  7094. this[this.tableОтображение_студентов_по_среднему_баллу.Оценка_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  7095. }
  7096. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7097. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7098. public bool IsДата_третьего_экзаменаNull() {
  7099. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Дата_третьего_экзаменаColumn);
  7100. }
  7101. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7102. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7103. public void SetДата_третьего_экзаменаNull() {
  7104. this[this.tableОтображение_студентов_по_среднему_баллу.Дата_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  7105. }
  7106. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7107. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7108. public bool IsСредний_балл_студента_за_сесиюNull() {
  7109. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.Средний_балл_студента_за_сесиюColumn);
  7110. }
  7111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7113. public void SetСредний_балл_студента_за_сесиюNull() {
  7114. this[this.tableОтображение_студентов_по_среднему_баллу.Средний_балл_студента_за_сесиюColumn] = global::System.Convert.DBNull;
  7115. }
  7116. }
  7117. /// <summary>
  7118. ///Represents strongly named DataRow class.
  7119. ///</summary>
  7120. public partial class Отображение_студентов_по_ФИОRow : global::System.Data.DataRow {
  7121. private Отображение_студентов_по_ФИОDataTable tableОтображение_студентов_по_ФИО;
  7122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7123. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7124. internal Отображение_студентов_по_ФИОRow(global::System.Data.DataRowBuilder rb) :
  7125. base(rb) {
  7126. this.tableОтображение_студентов_по_ФИО = ((Отображение_студентов_по_ФИОDataTable)(this.Table));
  7127. }
  7128. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7129. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7130. public long Код_студента {
  7131. get {
  7132. return ((long)(this[this.tableОтображение_студентов_по_ФИО.Код_студентаColumn]));
  7133. }
  7134. set {
  7135. this[this.tableОтображение_студентов_по_ФИО.Код_студентаColumn] = value;
  7136. }
  7137. }
  7138. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7139. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7140. public string ФИО {
  7141. get {
  7142. try {
  7143. return ((string)(this[this.tableОтображение_студентов_по_ФИО.ФИОColumn]));
  7144. }
  7145. catch (global::System.InvalidCastException e) {
  7146. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Отображение студентов по ФИО\' равно DBNull." +
  7147. "", e);
  7148. }
  7149. }
  7150. set {
  7151. this[this.tableОтображение_студентов_по_ФИО.ФИОColumn] = value;
  7152. }
  7153. }
  7154. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7155. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7156. public string Пол {
  7157. get {
  7158. try {
  7159. return ((string)(this[this.tableОтображение_студентов_по_ФИО.ПолColumn]));
  7160. }
  7161. catch (global::System.InvalidCastException e) {
  7162. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Отображение студентов по ФИО\' равно DBNull." +
  7163. "", e);
  7164. }
  7165. }
  7166. set {
  7167. this[this.tableОтображение_студентов_по_ФИО.ПолColumn] = value;
  7168. }
  7169. }
  7170. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7171. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7172. public System.DateTime Дата_рождения {
  7173. get {
  7174. try {
  7175. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_ФИО.Дата_рожденияColumn]));
  7176. }
  7177. catch (global::System.InvalidCastException e) {
  7178. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Отображение студентов по ФИО\' рав" +
  7179. "но DBNull.", e);
  7180. }
  7181. }
  7182. set {
  7183. this[this.tableОтображение_студентов_по_ФИО.Дата_рожденияColumn] = value;
  7184. }
  7185. }
  7186. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7187. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7188. public string Родители {
  7189. get {
  7190. try {
  7191. return ((string)(this[this.tableОтображение_студентов_по_ФИО.РодителиColumn]));
  7192. }
  7193. catch (global::System.InvalidCastException e) {
  7194. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Отображение студентов по ФИО\' равно DB" +
  7195. "Null.", e);
  7196. }
  7197. }
  7198. set {
  7199. this[this.tableОтображение_студентов_по_ФИО.РодителиColumn] = value;
  7200. }
  7201. }
  7202. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7203. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7204. public string Адрес {
  7205. get {
  7206. try {
  7207. return ((string)(this[this.tableОтображение_студентов_по_ФИО.АдресColumn]));
  7208. }
  7209. catch (global::System.InvalidCastException e) {
  7210. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Отображение студентов по ФИО\' равно DBNul" +
  7211. "l.", e);
  7212. }
  7213. }
  7214. set {
  7215. this[this.tableОтображение_студентов_по_ФИО.АдресColumn] = value;
  7216. }
  7217. }
  7218. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7219. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7220. public string Телефон {
  7221. get {
  7222. try {
  7223. return ((string)(this[this.tableОтображение_студентов_по_ФИО.ТелефонColumn]));
  7224. }
  7225. catch (global::System.InvalidCastException e) {
  7226. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Отображение студентов по ФИО\' равно DBN" +
  7227. "ull.", e);
  7228. }
  7229. }
  7230. set {
  7231. this[this.tableОтображение_студентов_по_ФИО.ТелефонColumn] = value;
  7232. }
  7233. }
  7234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7236. public string Паспортные_данные {
  7237. get {
  7238. try {
  7239. return ((string)(this[this.tableОтображение_студентов_по_ФИО.Паспортные_данныеColumn]));
  7240. }
  7241. catch (global::System.InvalidCastException e) {
  7242. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Отображение студентов по ФИО\'" +
  7243. " равно DBNull.", e);
  7244. }
  7245. }
  7246. set {
  7247. this[this.tableОтображение_студентов_по_ФИО.Паспортные_данныеColumn] = value;
  7248. }
  7249. }
  7250. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7251. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7252. public long Номер_зачетки {
  7253. get {
  7254. try {
  7255. return ((long)(this[this.tableОтображение_студентов_по_ФИО.Номер_зачеткиColumn]));
  7256. }
  7257. catch (global::System.InvalidCastException e) {
  7258. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Отображение студентов по ФИО\' рав" +
  7259. "но DBNull.", e);
  7260. }
  7261. }
  7262. set {
  7263. this[this.tableОтображение_студентов_по_ФИО.Номер_зачеткиColumn] = value;
  7264. }
  7265. }
  7266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7267. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7268. public System.DateTime Дата_поступления {
  7269. get {
  7270. try {
  7271. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_ФИО.Дата_поступленияColumn]));
  7272. }
  7273. catch (global::System.InvalidCastException e) {
  7274. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Отображение студентов по ФИО\' " +
  7275. "равно DBNull.", e);
  7276. }
  7277. }
  7278. set {
  7279. this[this.tableОтображение_студентов_по_ФИО.Дата_поступленияColumn] = value;
  7280. }
  7281. }
  7282. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7283. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7284. public string Группа {
  7285. get {
  7286. try {
  7287. return ((string)(this[this.tableОтображение_студентов_по_ФИО.ГруппаColumn]));
  7288. }
  7289. catch (global::System.InvalidCastException e) {
  7290. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Отображение студентов по ФИО\' равно DBNu" +
  7291. "ll.", e);
  7292. }
  7293. }
  7294. set {
  7295. this[this.tableОтображение_студентов_по_ФИО.ГруппаColumn] = value;
  7296. }
  7297. }
  7298. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7299. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7300. public byte Курс {
  7301. get {
  7302. try {
  7303. return ((byte)(this[this.tableОтображение_студентов_по_ФИО.КурсColumn]));
  7304. }
  7305. catch (global::System.InvalidCastException e) {
  7306. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Отображение студентов по ФИО\' равно DBNull" +
  7307. ".", e);
  7308. }
  7309. }
  7310. set {
  7311. this[this.tableОтображение_студентов_по_ФИО.КурсColumn] = value;
  7312. }
  7313. }
  7314. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7315. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7316. public long Код_специальности {
  7317. get {
  7318. try {
  7319. return ((long)(this[this.tableОтображение_студентов_по_ФИО.Код_специальностиColumn]));
  7320. }
  7321. catch (global::System.InvalidCastException e) {
  7322. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код специальности\' в таблице \'Отображение студентов по ФИО\'" +
  7323. " равно DBNull.", e);
  7324. }
  7325. }
  7326. set {
  7327. this[this.tableОтображение_студентов_по_ФИО.Код_специальностиColumn] = value;
  7328. }
  7329. }
  7330. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7331. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7332. public bool Очная_форма_обучения {
  7333. get {
  7334. try {
  7335. return ((bool)(this[this.tableОтображение_студентов_по_ФИО.Очная_форма_обученияColumn]));
  7336. }
  7337. catch (global::System.InvalidCastException e) {
  7338. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Отображение студентов по Ф" +
  7339. "ИО\' равно DBNull.", e);
  7340. }
  7341. }
  7342. set {
  7343. this[this.tableОтображение_студентов_по_ФИО.Очная_форма_обученияColumn] = value;
  7344. }
  7345. }
  7346. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7347. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7348. public bool IsФИОNull() {
  7349. return this.IsNull(this.tableОтображение_студентов_по_ФИО.ФИОColumn);
  7350. }
  7351. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7352. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7353. public void SetФИОNull() {
  7354. this[this.tableОтображение_студентов_по_ФИО.ФИОColumn] = global::System.Convert.DBNull;
  7355. }
  7356. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7357. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7358. public bool IsПолNull() {
  7359. return this.IsNull(this.tableОтображение_студентов_по_ФИО.ПолColumn);
  7360. }
  7361. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7362. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7363. public void SetПолNull() {
  7364. this[this.tableОтображение_студентов_по_ФИО.ПолColumn] = global::System.Convert.DBNull;
  7365. }
  7366. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7367. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7368. public bool IsДата_рожденияNull() {
  7369. return this.IsNull(this.tableОтображение_студентов_по_ФИО.Дата_рожденияColumn);
  7370. }
  7371. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7372. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7373. public void SetДата_рожденияNull() {
  7374. this[this.tableОтображение_студентов_по_ФИО.Дата_рожденияColumn] = global::System.Convert.DBNull;
  7375. }
  7376. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7377. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7378. public bool IsРодителиNull() {
  7379. return this.IsNull(this.tableОтображение_студентов_по_ФИО.РодителиColumn);
  7380. }
  7381. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7382. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7383. public void SetРодителиNull() {
  7384. this[this.tableОтображение_студентов_по_ФИО.РодителиColumn] = global::System.Convert.DBNull;
  7385. }
  7386. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7388. public bool IsАдресNull() {
  7389. return this.IsNull(this.tableОтображение_студентов_по_ФИО.АдресColumn);
  7390. }
  7391. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7392. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7393. public void SetАдресNull() {
  7394. this[this.tableОтображение_студентов_по_ФИО.АдресColumn] = global::System.Convert.DBNull;
  7395. }
  7396. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7397. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7398. public bool IsТелефонNull() {
  7399. return this.IsNull(this.tableОтображение_студентов_по_ФИО.ТелефонColumn);
  7400. }
  7401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7403. public void SetТелефонNull() {
  7404. this[this.tableОтображение_студентов_по_ФИО.ТелефонColumn] = global::System.Convert.DBNull;
  7405. }
  7406. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7407. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7408. public bool IsПаспортные_данныеNull() {
  7409. return this.IsNull(this.tableОтображение_студентов_по_ФИО.Паспортные_данныеColumn);
  7410. }
  7411. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7412. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7413. public void SetПаспортные_данныеNull() {
  7414. this[this.tableОтображение_студентов_по_ФИО.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  7415. }
  7416. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7417. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7418. public bool IsНомер_зачеткиNull() {
  7419. return this.IsNull(this.tableОтображение_студентов_по_ФИО.Номер_зачеткиColumn);
  7420. }
  7421. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7422. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7423. public void SetНомер_зачеткиNull() {
  7424. this[this.tableОтображение_студентов_по_ФИО.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  7425. }
  7426. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7427. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7428. public bool IsДата_поступленияNull() {
  7429. return this.IsNull(this.tableОтображение_студентов_по_ФИО.Дата_поступленияColumn);
  7430. }
  7431. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7432. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7433. public void SetДата_поступленияNull() {
  7434. this[this.tableОтображение_студентов_по_ФИО.Дата_поступленияColumn] = global::System.Convert.DBNull;
  7435. }
  7436. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7437. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7438. public bool IsГруппаNull() {
  7439. return this.IsNull(this.tableОтображение_студентов_по_ФИО.ГруппаColumn);
  7440. }
  7441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7442. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7443. public void SetГруппаNull() {
  7444. this[this.tableОтображение_студентов_по_ФИО.ГруппаColumn] = global::System.Convert.DBNull;
  7445. }
  7446. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7447. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7448. public bool IsКурсNull() {
  7449. return this.IsNull(this.tableОтображение_студентов_по_ФИО.КурсColumn);
  7450. }
  7451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7452. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7453. public void SetКурсNull() {
  7454. this[this.tableОтображение_студентов_по_ФИО.КурсColumn] = global::System.Convert.DBNull;
  7455. }
  7456. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7457. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7458. public bool IsКод_специальностиNull() {
  7459. return this.IsNull(this.tableОтображение_студентов_по_ФИО.Код_специальностиColumn);
  7460. }
  7461. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7462. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7463. public void SetКод_специальностиNull() {
  7464. this[this.tableОтображение_студентов_по_ФИО.Код_специальностиColumn] = global::System.Convert.DBNull;
  7465. }
  7466. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7467. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7468. public bool IsОчная_форма_обученияNull() {
  7469. return this.IsNull(this.tableОтображение_студентов_по_ФИО.Очная_форма_обученияColumn);
  7470. }
  7471. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7472. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7473. public void SetОчная_форма_обученияNull() {
  7474. this[this.tableОтображение_студентов_по_ФИО.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  7475. }
  7476. }
  7477. /// <summary>
  7478. ///Represents strongly named DataRow class.
  7479. ///</summary>
  7480. public partial class Среднее_трёх_величинRow : global::System.Data.DataRow {
  7481. private Среднее_трёх_величинDataTable tableСреднее_трёх_величин;
  7482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7484. internal Среднее_трёх_величинRow(global::System.Data.DataRowBuilder rb) :
  7485. base(rb) {
  7486. this.tableСреднее_трёх_величин = ((Среднее_трёх_величинDataTable)(this.Table));
  7487. }
  7488. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7489. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7490. public float Среднее_значение {
  7491. get {
  7492. try {
  7493. return ((float)(this[this.tableСреднее_трёх_величин.Среднее_значениеColumn]));
  7494. }
  7495. catch (global::System.InvalidCastException e) {
  7496. throw new global::System.Data.StrongTypingException("Значение для столбца \'Среднее значение\' в таблице \'Среднее трёх величин\' равно DB" +
  7497. "Null.", e);
  7498. }
  7499. }
  7500. set {
  7501. this[this.tableСреднее_трёх_величин.Среднее_значениеColumn] = value;
  7502. }
  7503. }
  7504. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7505. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7506. public bool IsСреднее_значениеNull() {
  7507. return this.IsNull(this.tableСреднее_трёх_величин.Среднее_значениеColumn);
  7508. }
  7509. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7510. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7511. public void SetСреднее_значениеNull() {
  7512. this[this.tableСреднее_трёх_величин.Среднее_значениеColumn] = global::System.Convert.DBNull;
  7513. }
  7514. }
  7515. /// <summary>
  7516. ///Row event argument class
  7517. ///</summary>
  7518. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7519. public class ОценкиRowChangeEvent : global::System.EventArgs {
  7520. private ОценкиRow eventRow;
  7521. private global::System.Data.DataRowAction eventAction;
  7522. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7523. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7524. public ОценкиRowChangeEvent(ОценкиRow row, global::System.Data.DataRowAction action) {
  7525. this.eventRow = row;
  7526. this.eventAction = action;
  7527. }
  7528. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7529. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7530. public ОценкиRow Row {
  7531. get {
  7532. return this.eventRow;
  7533. }
  7534. }
  7535. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7536. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7537. public global::System.Data.DataRowAction Action {
  7538. get {
  7539. return this.eventAction;
  7540. }
  7541. }
  7542. }
  7543. /// <summary>
  7544. ///Row event argument class
  7545. ///</summary>
  7546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7547. public class ПредметыRowChangeEvent : global::System.EventArgs {
  7548. private ПредметыRow eventRow;
  7549. private global::System.Data.DataRowAction eventAction;
  7550. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7551. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7552. public ПредметыRowChangeEvent(ПредметыRow row, global::System.Data.DataRowAction action) {
  7553. this.eventRow = row;
  7554. this.eventAction = action;
  7555. }
  7556. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7557. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7558. public ПредметыRow Row {
  7559. get {
  7560. return this.eventRow;
  7561. }
  7562. }
  7563. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7564. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7565. public global::System.Data.DataRowAction Action {
  7566. get {
  7567. return this.eventAction;
  7568. }
  7569. }
  7570. }
  7571. /// <summary>
  7572. ///Row event argument class
  7573. ///</summary>
  7574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7575. public class СпециальностиRowChangeEvent : global::System.EventArgs {
  7576. private СпециальностиRow eventRow;
  7577. private global::System.Data.DataRowAction eventAction;
  7578. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7579. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7580. public СпециальностиRowChangeEvent(СпециальностиRow row, global::System.Data.DataRowAction action) {
  7581. this.eventRow = row;
  7582. this.eventAction = action;
  7583. }
  7584. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7585. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7586. public СпециальностиRow Row {
  7587. get {
  7588. return this.eventRow;
  7589. }
  7590. }
  7591. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7592. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7593. public global::System.Data.DataRowAction Action {
  7594. get {
  7595. return this.eventAction;
  7596. }
  7597. }
  7598. }
  7599. /// <summary>
  7600. ///Row event argument class
  7601. ///</summary>
  7602. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7603. public class СтудентыRowChangeEvent : global::System.EventArgs {
  7604. private СтудентыRow eventRow;
  7605. private global::System.Data.DataRowAction eventAction;
  7606. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7607. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7608. public СтудентыRowChangeEvent(СтудентыRow row, global::System.Data.DataRowAction action) {
  7609. this.eventRow = row;
  7610. this.eventAction = action;
  7611. }
  7612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7614. public СтудентыRow Row {
  7615. get {
  7616. return this.eventRow;
  7617. }
  7618. }
  7619. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7620. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7621. public global::System.Data.DataRowAction Action {
  7622. get {
  7623. return this.eventAction;
  7624. }
  7625. }
  7626. }
  7627. /// <summary>
  7628. ///Row event argument class
  7629. ///</summary>
  7630. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7631. public class _Запрос_Студенты_ОценкиRowChangeEvent : global::System.EventArgs {
  7632. private _Запрос_Студенты_ОценкиRow eventRow;
  7633. private global::System.Data.DataRowAction eventAction;
  7634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7636. public _Запрос_Студенты_ОценкиRowChangeEvent(_Запрос_Студенты_ОценкиRow row, global::System.Data.DataRowAction action) {
  7637. this.eventRow = row;
  7638. this.eventAction = action;
  7639. }
  7640. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7641. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7642. public _Запрос_Студенты_ОценкиRow Row {
  7643. get {
  7644. return this.eventRow;
  7645. }
  7646. }
  7647. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7648. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7649. public global::System.Data.DataRowAction Action {
  7650. get {
  7651. return this.eventAction;
  7652. }
  7653. }
  7654. }
  7655. /// <summary>
  7656. ///Row event argument class
  7657. ///</summary>
  7658. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7659. public class _Запрос_Студенты_СпециальностиRowChangeEvent : global::System.EventArgs {
  7660. private _Запрос_Студенты_СпециальностиRow eventRow;
  7661. private global::System.Data.DataRowAction eventAction;
  7662. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7663. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7664. public _Запрос_Студенты_СпециальностиRowChangeEvent(_Запрос_Студенты_СпециальностиRow row, global::System.Data.DataRowAction action) {
  7665. this.eventRow = row;
  7666. this.eventAction = action;
  7667. }
  7668. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7669. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7670. public _Запрос_Студенты_СпециальностиRow Row {
  7671. get {
  7672. return this.eventRow;
  7673. }
  7674. }
  7675. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7676. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7677. public global::System.Data.DataRowAction Action {
  7678. get {
  7679. return this.eventAction;
  7680. }
  7681. }
  7682. }
  7683. /// <summary>
  7684. ///Row event argument class
  7685. ///</summary>
  7686. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7687. public class Фильтр_ММRowChangeEvent : global::System.EventArgs {
  7688. private Фильтр_ММRow eventRow;
  7689. private global::System.Data.DataRowAction eventAction;
  7690. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7691. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7692. public Фильтр_ММRowChangeEvent(Фильтр_ММRow row, global::System.Data.DataRowAction action) {
  7693. this.eventRow = row;
  7694. this.eventAction = action;
  7695. }
  7696. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7697. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7698. public Фильтр_ММRow Row {
  7699. get {
  7700. return this.eventRow;
  7701. }
  7702. }
  7703. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7704. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7705. public global::System.Data.DataRowAction Action {
  7706. get {
  7707. return this.eventAction;
  7708. }
  7709. }
  7710. }
  7711. /// <summary>
  7712. ///Row event argument class
  7713. ///</summary>
  7714. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7715. public class Фильтр_ПИRowChangeEvent : global::System.EventArgs {
  7716. private Фильтр_ПИRow eventRow;
  7717. private global::System.Data.DataRowAction eventAction;
  7718. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7719. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7720. public Фильтр_ПИRowChangeEvent(Фильтр_ПИRow row, global::System.Data.DataRowAction action) {
  7721. this.eventRow = row;
  7722. this.eventAction = action;
  7723. }
  7724. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7725. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7726. public Фильтр_ПИRow Row {
  7727. get {
  7728. return this.eventRow;
  7729. }
  7730. }
  7731. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7732. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7733. public global::System.Data.DataRowAction Action {
  7734. get {
  7735. return this.eventAction;
  7736. }
  7737. }
  7738. }
  7739. /// <summary>
  7740. ///Row event argument class
  7741. ///</summary>
  7742. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7743. public class Отображение_студентов_по_возрастуRowChangeEvent : global::System.EventArgs {
  7744. private Отображение_студентов_по_возрастуRow eventRow;
  7745. private global::System.Data.DataRowAction eventAction;
  7746. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7747. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7748. public Отображение_студентов_по_возрастуRowChangeEvent(Отображение_студентов_по_возрастуRow row, global::System.Data.DataRowAction action) {
  7749. this.eventRow = row;
  7750. this.eventAction = action;
  7751. }
  7752. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7753. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7754. public Отображение_студентов_по_возрастуRow Row {
  7755. get {
  7756. return this.eventRow;
  7757. }
  7758. }
  7759. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7760. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7761. public global::System.Data.DataRowAction Action {
  7762. get {
  7763. return this.eventAction;
  7764. }
  7765. }
  7766. }
  7767. /// <summary>
  7768. ///Row event argument class
  7769. ///</summary>
  7770. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7771. public class Отображение_студентов_по_среднему_баллуRowChangeEvent : global::System.EventArgs {
  7772. private Отображение_студентов_по_среднему_баллуRow eventRow;
  7773. private global::System.Data.DataRowAction eventAction;
  7774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7775. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7776. public Отображение_студентов_по_среднему_баллуRowChangeEvent(Отображение_студентов_по_среднему_баллуRow row, global::System.Data.DataRowAction action) {
  7777. this.eventRow = row;
  7778. this.eventAction = action;
  7779. }
  7780. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7781. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7782. public Отображение_студентов_по_среднему_баллуRow Row {
  7783. get {
  7784. return this.eventRow;
  7785. }
  7786. }
  7787. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7788. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7789. public global::System.Data.DataRowAction Action {
  7790. get {
  7791. return this.eventAction;
  7792. }
  7793. }
  7794. }
  7795. /// <summary>
  7796. ///Row event argument class
  7797. ///</summary>
  7798. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7799. public class Отображение_студентов_по_ФИОRowChangeEvent : global::System.EventArgs {
  7800. private Отображение_студентов_по_ФИОRow eventRow;
  7801. private global::System.Data.DataRowAction eventAction;
  7802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7803. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7804. public Отображение_студентов_по_ФИОRowChangeEvent(Отображение_студентов_по_ФИОRow row, global::System.Data.DataRowAction action) {
  7805. this.eventRow = row;
  7806. this.eventAction = action;
  7807. }
  7808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7810. public Отображение_студентов_по_ФИОRow Row {
  7811. get {
  7812. return this.eventRow;
  7813. }
  7814. }
  7815. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7816. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7817. public global::System.Data.DataRowAction Action {
  7818. get {
  7819. return this.eventAction;
  7820. }
  7821. }
  7822. }
  7823. /// <summary>
  7824. ///Row event argument class
  7825. ///</summary>
  7826. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7827. public class Среднее_трёх_величинRowChangeEvent : global::System.EventArgs {
  7828. private Среднее_трёх_величинRow eventRow;
  7829. private global::System.Data.DataRowAction eventAction;
  7830. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7831. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7832. public Среднее_трёх_величинRowChangeEvent(Среднее_трёх_величинRow row, global::System.Data.DataRowAction action) {
  7833. this.eventRow = row;
  7834. this.eventAction = action;
  7835. }
  7836. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7837. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7838. public Среднее_трёх_величинRow Row {
  7839. get {
  7840. return this.eventRow;
  7841. }
  7842. }
  7843. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7844. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7845. public global::System.Data.DataRowAction Action {
  7846. get {
  7847. return this.eventAction;
  7848. }
  7849. }
  7850. }
  7851. }
  7852. }
  7853. namespace WindowsFormsApp3.РожковDataSetTableAdapters {
  7854. /// <summary>
  7855. ///Represents the connection and commands used to retrieve and save data.
  7856. ///</summary>
  7857. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7858. [global::System.ComponentModel.ToolboxItem(true)]
  7859. [global::System.ComponentModel.DataObjectAttribute(true)]
  7860. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7861. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7862. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7863. public partial class ОценкиTableAdapter : global::System.ComponentModel.Component {
  7864. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7865. private global::System.Data.SqlClient.SqlConnection _connection;
  7866. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7867. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7868. private bool _clearBeforeFill;
  7869. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7870. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7871. public ОценкиTableAdapter() {
  7872. this.ClearBeforeFill = true;
  7873. }
  7874. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7875. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7876. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7877. get {
  7878. if ((this._adapter == null)) {
  7879. this.InitAdapter();
  7880. }
  7881. return this._adapter;
  7882. }
  7883. }
  7884. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7885. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7886. internal global::System.Data.SqlClient.SqlConnection Connection {
  7887. get {
  7888. if ((this._connection == null)) {
  7889. this.InitConnection();
  7890. }
  7891. return this._connection;
  7892. }
  7893. set {
  7894. this._connection = value;
  7895. if ((this.Adapter.InsertCommand != null)) {
  7896. this.Adapter.InsertCommand.Connection = value;
  7897. }
  7898. if ((this.Adapter.DeleteCommand != null)) {
  7899. this.Adapter.DeleteCommand.Connection = value;
  7900. }
  7901. if ((this.Adapter.UpdateCommand != null)) {
  7902. this.Adapter.UpdateCommand.Connection = value;
  7903. }
  7904. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7905. if ((this.CommandCollection[i] != null)) {
  7906. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7907. }
  7908. }
  7909. }
  7910. }
  7911. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7912. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7913. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7914. get {
  7915. return this._transaction;
  7916. }
  7917. set {
  7918. this._transaction = value;
  7919. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7920. this.CommandCollection[i].Transaction = this._transaction;
  7921. }
  7922. if (((this.Adapter != null)
  7923. && (this.Adapter.DeleteCommand != null))) {
  7924. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7925. }
  7926. if (((this.Adapter != null)
  7927. && (this.Adapter.InsertCommand != null))) {
  7928. this.Adapter.InsertCommand.Transaction = this._transaction;
  7929. }
  7930. if (((this.Adapter != null)
  7931. && (this.Adapter.UpdateCommand != null))) {
  7932. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7933. }
  7934. }
  7935. }
  7936. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7937. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7938. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7939. get {
  7940. if ((this._commandCollection == null)) {
  7941. this.InitCommandCollection();
  7942. }
  7943. return this._commandCollection;
  7944. }
  7945. }
  7946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7948. public bool ClearBeforeFill {
  7949. get {
  7950. return this._clearBeforeFill;
  7951. }
  7952. set {
  7953. this._clearBeforeFill = value;
  7954. }
  7955. }
  7956. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7957. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7958. private void InitAdapter() {
  7959. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7960. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7961. tableMapping.SourceTable = "Table";
  7962. tableMapping.DataSetTable = "Оценки";
  7963. tableMapping.ColumnMappings.Add("Код студента", "Код студента");
  7964. tableMapping.ColumnMappings.Add("Дата экзамена1", "Дата экзамена1");
  7965. tableMapping.ColumnMappings.Add("Код предмета1", "Код предмета1");
  7966. tableMapping.ColumnMappings.Add("Оценка 1", "Оценка 1");
  7967. tableMapping.ColumnMappings.Add("Дата экзамена 2", "Дата экзамена 2");
  7968. tableMapping.ColumnMappings.Add("Код предмета2", "Код предмета2");
  7969. tableMapping.ColumnMappings.Add("Оценка 2", "Оценка 2");
  7970. tableMapping.ColumnMappings.Add("Дата экзамена 3", "Дата экзамена 3");
  7971. tableMapping.ColumnMappings.Add("Код предмета 3", "Код предмета 3");
  7972. tableMapping.ColumnMappings.Add("Оценка 3", "Оценка 3");
  7973. tableMapping.ColumnMappings.Add("Средний балл", "Средний балл");
  7974. this._adapter.TableMappings.Add(tableMapping);
  7975. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  7976. this._adapter.InsertCommand.Connection = this.Connection;
  7977. 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, @Средний_балл)";
  7978. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  7979. 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, "", "", ""));
  7980. 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, "", "", ""));
  7981. 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, "", "", ""));
  7982. 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, "", "", ""));
  7983. 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, "", "", ""));
  7984. 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, "", "", ""));
  7985. 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, "", "", ""));
  7986. 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, "", "", ""));
  7987. 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, "", "", ""));
  7988. 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, "", "", ""));
  7989. 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, "", "", ""));
  7990. }
  7991. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7992. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7993. private void InitConnection() {
  7994. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7995. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  7996. }
  7997. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7998. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7999. private void InitCommandCollection() {
  8000. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8001. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8002. this._commandCollection[0].Connection = this.Connection;
  8003. this._commandCollection[0].CommandText = "SELECT [Код студента], [Дата экзамена1], [Код предмета1], [Оценка 1], [Дата экзам" +
  8004. "ена 2], [Код предмета2], [Оценка 2], [Дата экзамена 3], [Код предмета 3], [Оценк" +
  8005. "а 3], [Средний балл] FROM dbo.Оценки";
  8006. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8007. }
  8008. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8009. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8010. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8011. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8012. public virtual int Fill(РожковDataSet.ОценкиDataTable dataTable) {
  8013. this.Adapter.SelectCommand = this.CommandCollection[0];
  8014. if ((this.ClearBeforeFill == true)) {
  8015. dataTable.Clear();
  8016. }
  8017. int returnValue = this.Adapter.Fill(dataTable);
  8018. return returnValue;
  8019. }
  8020. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8021. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8022. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8023. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8024. public virtual РожковDataSet.ОценкиDataTable GetData() {
  8025. this.Adapter.SelectCommand = this.CommandCollection[0];
  8026. РожковDataSet.ОценкиDataTable dataTable = new РожковDataSet.ОценкиDataTable();
  8027. this.Adapter.Fill(dataTable);
  8028. return dataTable;
  8029. }
  8030. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8031. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8032. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8033. public virtual int Update(РожковDataSet.ОценкиDataTable dataTable) {
  8034. return this.Adapter.Update(dataTable);
  8035. }
  8036. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8037. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8038. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8039. public virtual int Update(РожковDataSet dataSet) {
  8040. return this.Adapter.Update(dataSet, "Оценки");
  8041. }
  8042. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8043. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8044. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8045. public virtual int Update(global::System.Data.DataRow dataRow) {
  8046. return this.Adapter.Update(new global::System.Data.DataRow[] {
  8047. dataRow});
  8048. }
  8049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8050. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8051. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8052. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  8053. return this.Adapter.Update(dataRows);
  8054. }
  8055. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8056. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8057. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8058. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  8059. 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> Средний_балл) {
  8060. if ((Код_студента.HasValue == true)) {
  8061. this.Adapter.InsertCommand.Parameters[0].Value = ((long)(Код_студента.Value));
  8062. }
  8063. else {
  8064. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  8065. }
  8066. if ((Дата_экзамена1.HasValue == true)) {
  8067. this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(Дата_экзамена1.Value));
  8068. }
  8069. else {
  8070. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  8071. }
  8072. if ((Код_предмета1.HasValue == true)) {
  8073. this.Adapter.InsertCommand.Parameters[2].Value = ((long)(Код_предмета1.Value));
  8074. }
  8075. else {
  8076. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  8077. }
  8078. if ((Оценка_1.HasValue == true)) {
  8079. this.Adapter.InsertCommand.Parameters[3].Value = ((byte)(Оценка_1.Value));
  8080. }
  8081. else {
  8082. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  8083. }
  8084. if ((Дата_экзамена_2.HasValue == true)) {
  8085. this.Adapter.InsertCommand.Parameters[4].Value = ((System.DateTime)(Дата_экзамена_2.Value));
  8086. }
  8087. else {
  8088. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  8089. }
  8090. if ((Код_предмета2.HasValue == true)) {
  8091. this.Adapter.InsertCommand.Parameters[5].Value = ((long)(Код_предмета2.Value));
  8092. }
  8093. else {
  8094. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  8095. }
  8096. if ((Оценка_2.HasValue == true)) {
  8097. this.Adapter.InsertCommand.Parameters[6].Value = ((byte)(Оценка_2.Value));
  8098. }
  8099. else {
  8100. this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
  8101. }
  8102. if ((Дата_экзамена_3.HasValue == true)) {
  8103. this.Adapter.InsertCommand.Parameters[7].Value = ((System.DateTime)(Дата_экзамена_3.Value));
  8104. }
  8105. else {
  8106. this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
  8107. }
  8108. if ((Код_предмета_3.HasValue == true)) {
  8109. this.Adapter.InsertCommand.Parameters[8].Value = ((long)(Код_предмета_3.Value));
  8110. }
  8111. else {
  8112. this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
  8113. }
  8114. if ((Оценка_3.HasValue == true)) {
  8115. this.Adapter.InsertCommand.Parameters[9].Value = ((byte)(Оценка_3.Value));
  8116. }
  8117. else {
  8118. this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
  8119. }
  8120. if ((Средний_балл.HasValue == true)) {
  8121. this.Adapter.InsertCommand.Parameters[10].Value = ((float)(Средний_балл.Value));
  8122. }
  8123. else {
  8124. this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
  8125. }
  8126. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  8127. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8128. != global::System.Data.ConnectionState.Open)) {
  8129. this.Adapter.InsertCommand.Connection.Open();
  8130. }
  8131. try {
  8132. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  8133. return returnValue;
  8134. }
  8135. finally {
  8136. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8137. this.Adapter.InsertCommand.Connection.Close();
  8138. }
  8139. }
  8140. }
  8141. }
  8142. /// <summary>
  8143. ///Represents the connection and commands used to retrieve and save data.
  8144. ///</summary>
  8145. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8146. [global::System.ComponentModel.ToolboxItem(true)]
  8147. [global::System.ComponentModel.DataObjectAttribute(true)]
  8148. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8149. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8150. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8151. public partial class ПредметыTableAdapter : global::System.ComponentModel.Component {
  8152. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8153. private global::System.Data.SqlClient.SqlConnection _connection;
  8154. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8155. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8156. private bool _clearBeforeFill;
  8157. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8158. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8159. public ПредметыTableAdapter() {
  8160. this.ClearBeforeFill = true;
  8161. }
  8162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8164. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8165. get {
  8166. if ((this._adapter == null)) {
  8167. this.InitAdapter();
  8168. }
  8169. return this._adapter;
  8170. }
  8171. }
  8172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8173. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8174. internal global::System.Data.SqlClient.SqlConnection Connection {
  8175. get {
  8176. if ((this._connection == null)) {
  8177. this.InitConnection();
  8178. }
  8179. return this._connection;
  8180. }
  8181. set {
  8182. this._connection = value;
  8183. if ((this.Adapter.InsertCommand != null)) {
  8184. this.Adapter.InsertCommand.Connection = value;
  8185. }
  8186. if ((this.Adapter.DeleteCommand != null)) {
  8187. this.Adapter.DeleteCommand.Connection = value;
  8188. }
  8189. if ((this.Adapter.UpdateCommand != null)) {
  8190. this.Adapter.UpdateCommand.Connection = value;
  8191. }
  8192. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8193. if ((this.CommandCollection[i] != null)) {
  8194. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8195. }
  8196. }
  8197. }
  8198. }
  8199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8200. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8201. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8202. get {
  8203. return this._transaction;
  8204. }
  8205. set {
  8206. this._transaction = value;
  8207. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8208. this.CommandCollection[i].Transaction = this._transaction;
  8209. }
  8210. if (((this.Adapter != null)
  8211. && (this.Adapter.DeleteCommand != null))) {
  8212. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8213. }
  8214. if (((this.Adapter != null)
  8215. && (this.Adapter.InsertCommand != null))) {
  8216. this.Adapter.InsertCommand.Transaction = this._transaction;
  8217. }
  8218. if (((this.Adapter != null)
  8219. && (this.Adapter.UpdateCommand != null))) {
  8220. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8221. }
  8222. }
  8223. }
  8224. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8225. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8226. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8227. get {
  8228. if ((this._commandCollection == null)) {
  8229. this.InitCommandCollection();
  8230. }
  8231. return this._commandCollection;
  8232. }
  8233. }
  8234. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8235. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8236. public bool ClearBeforeFill {
  8237. get {
  8238. return this._clearBeforeFill;
  8239. }
  8240. set {
  8241. this._clearBeforeFill = value;
  8242. }
  8243. }
  8244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8246. private void InitAdapter() {
  8247. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8248. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8249. tableMapping.SourceTable = "Table";
  8250. tableMapping.DataSetTable = "Предметы";
  8251. tableMapping.ColumnMappings.Add("Код предмета", "Код предмета");
  8252. tableMapping.ColumnMappings.Add("Наименование предмета", "Наименование предмета");
  8253. tableMapping.ColumnMappings.Add("Описание предмета", "Описание предмета");
  8254. this._adapter.TableMappings.Add(tableMapping);
  8255. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  8256. this._adapter.InsertCommand.Connection = this.Connection;
  8257. this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[Предметы] ([Наименование предмета], [Описание предмета]) VALUE" +
  8258. "S (@Наименование_предмета, @Описание_предмета)";
  8259. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  8260. 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, "", "", ""));
  8261. 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, "", "", ""));
  8262. }
  8263. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8264. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8265. private void InitConnection() {
  8266. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8267. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  8268. }
  8269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8271. private void InitCommandCollection() {
  8272. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8273. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8274. this._commandCollection[0].Connection = this.Connection;
  8275. this._commandCollection[0].CommandText = "SELECT [Код предмета], [Наименование предмета], [Описание предмета] FROM dbo.Пред" +
  8276. "меты";
  8277. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8278. }
  8279. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8280. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8281. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8282. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8283. public virtual int Fill(РожковDataSet.ПредметыDataTable dataTable) {
  8284. this.Adapter.SelectCommand = this.CommandCollection[0];
  8285. if ((this.ClearBeforeFill == true)) {
  8286. dataTable.Clear();
  8287. }
  8288. int returnValue = this.Adapter.Fill(dataTable);
  8289. return returnValue;
  8290. }
  8291. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8292. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8293. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8294. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8295. public virtual РожковDataSet.ПредметыDataTable GetData() {
  8296. this.Adapter.SelectCommand = this.CommandCollection[0];
  8297. РожковDataSet.ПредметыDataTable dataTable = new РожковDataSet.ПредметыDataTable();
  8298. this.Adapter.Fill(dataTable);
  8299. return dataTable;
  8300. }
  8301. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8302. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8303. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8304. public virtual int Update(РожковDataSet.ПредметыDataTable dataTable) {
  8305. return this.Adapter.Update(dataTable);
  8306. }
  8307. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8308. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8309. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8310. public virtual int Update(РожковDataSet dataSet) {
  8311. return this.Adapter.Update(dataSet, "Предметы");
  8312. }
  8313. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8314. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8315. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8316. public virtual int Update(global::System.Data.DataRow dataRow) {
  8317. return this.Adapter.Update(new global::System.Data.DataRow[] {
  8318. dataRow});
  8319. }
  8320. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8321. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8322. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8323. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  8324. return this.Adapter.Update(dataRows);
  8325. }
  8326. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8327. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8328. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8329. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  8330. public virtual int Insert(string Наименование_предмета, string Описание_предмета) {
  8331. if ((Наименование_предмета == null)) {
  8332. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  8333. }
  8334. else {
  8335. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(Наименование_предмета));
  8336. }
  8337. if ((Описание_предмета == null)) {
  8338. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  8339. }
  8340. else {
  8341. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Описание_предмета));
  8342. }
  8343. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  8344. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8345. != global::System.Data.ConnectionState.Open)) {
  8346. this.Adapter.InsertCommand.Connection.Open();
  8347. }
  8348. try {
  8349. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  8350. return returnValue;
  8351. }
  8352. finally {
  8353. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8354. this.Adapter.InsertCommand.Connection.Close();
  8355. }
  8356. }
  8357. }
  8358. }
  8359. /// <summary>
  8360. ///Represents the connection and commands used to retrieve and save data.
  8361. ///</summary>
  8362. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8363. [global::System.ComponentModel.ToolboxItem(true)]
  8364. [global::System.ComponentModel.DataObjectAttribute(true)]
  8365. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8366. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8367. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8368. public partial class СпециальностиTableAdapter : global::System.ComponentModel.Component {
  8369. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8370. private global::System.Data.SqlClient.SqlConnection _connection;
  8371. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8372. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8373. private bool _clearBeforeFill;
  8374. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8375. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8376. public СпециальностиTableAdapter() {
  8377. this.ClearBeforeFill = true;
  8378. }
  8379. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8380. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8381. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8382. get {
  8383. if ((this._adapter == null)) {
  8384. this.InitAdapter();
  8385. }
  8386. return this._adapter;
  8387. }
  8388. }
  8389. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8390. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8391. internal global::System.Data.SqlClient.SqlConnection Connection {
  8392. get {
  8393. if ((this._connection == null)) {
  8394. this.InitConnection();
  8395. }
  8396. return this._connection;
  8397. }
  8398. set {
  8399. this._connection = value;
  8400. if ((this.Adapter.InsertCommand != null)) {
  8401. this.Adapter.InsertCommand.Connection = value;
  8402. }
  8403. if ((this.Adapter.DeleteCommand != null)) {
  8404. this.Adapter.DeleteCommand.Connection = value;
  8405. }
  8406. if ((this.Adapter.UpdateCommand != null)) {
  8407. this.Adapter.UpdateCommand.Connection = value;
  8408. }
  8409. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8410. if ((this.CommandCollection[i] != null)) {
  8411. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8412. }
  8413. }
  8414. }
  8415. }
  8416. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8417. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8418. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8419. get {
  8420. return this._transaction;
  8421. }
  8422. set {
  8423. this._transaction = value;
  8424. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8425. this.CommandCollection[i].Transaction = this._transaction;
  8426. }
  8427. if (((this.Adapter != null)
  8428. && (this.Adapter.DeleteCommand != null))) {
  8429. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8430. }
  8431. if (((this.Adapter != null)
  8432. && (this.Adapter.InsertCommand != null))) {
  8433. this.Adapter.InsertCommand.Transaction = this._transaction;
  8434. }
  8435. if (((this.Adapter != null)
  8436. && (this.Adapter.UpdateCommand != null))) {
  8437. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8438. }
  8439. }
  8440. }
  8441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8442. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8443. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8444. get {
  8445. if ((this._commandCollection == null)) {
  8446. this.InitCommandCollection();
  8447. }
  8448. return this._commandCollection;
  8449. }
  8450. }
  8451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8452. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8453. public bool ClearBeforeFill {
  8454. get {
  8455. return this._clearBeforeFill;
  8456. }
  8457. set {
  8458. this._clearBeforeFill = value;
  8459. }
  8460. }
  8461. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8462. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8463. private void InitAdapter() {
  8464. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8465. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8466. tableMapping.SourceTable = "Table";
  8467. tableMapping.DataSetTable = "Специальности";
  8468. tableMapping.ColumnMappings.Add("Код специальности", "Код специальности");
  8469. tableMapping.ColumnMappings.Add("Название специальности", "Название специальности");
  8470. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  8471. this._adapter.TableMappings.Add(tableMapping);
  8472. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  8473. this._adapter.DeleteCommand.Connection = this.Connection;
  8474. this._adapter.DeleteCommand.CommandText = "DELETE FROM [dbo].[Специальности] WHERE (([Код специальности] = @Original_Код_спе" +
  8475. "циальности) AND ((@IsNull_Название_специальности = 1 AND [Название специальности" +
  8476. "] IS NULL) OR ([Название специальности] = @Original_Название_специальности)))";
  8477. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  8478. 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, "", "", ""));
  8479. 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, "", "", ""));
  8480. 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, "", "", ""));
  8481. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  8482. this._adapter.InsertCommand.Connection = this.Connection;
  8483. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[Специальности] ([Название специальности], [Описание специальности]) VALUES (@Название_специальности, @Описание_специальности);
  8484. SELECT [Код специальности], [Название специальности], [Описание специальности] FROM Специальности WHERE ([Код специальности] = SCOPE_IDENTITY())";
  8485. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  8486. 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, "", "", ""));
  8487. 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, "", "", ""));
  8488. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  8489. this._adapter.UpdateCommand.Connection = this.Connection;
  8490. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[Специальности] SET [Название специальности] = @Название_специальности, [Описание специальности] = @Описание_специальности WHERE (([Код специальности] = @Original_Код_специальности) AND ((@IsNull_Название_специальности = 1 AND [Название специальности] IS NULL) OR ([Название специальности] = @Original_Название_специальности)));
  8491. SELECT [Код специальности], [Название специальности], [Описание специальности] FROM Специальности WHERE ([Код специальности] = @Код_специальности)";
  8492. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  8493. 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, "", "", ""));
  8494. 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, "", "", ""));
  8495. 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, "", "", ""));
  8496. 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, "", "", ""));
  8497. 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, "", "", ""));
  8498. 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, "", "", ""));
  8499. }
  8500. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8501. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8502. private void InitConnection() {
  8503. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8504. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  8505. }
  8506. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8507. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8508. private void InitCommandCollection() {
  8509. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8510. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8511. this._commandCollection[0].Connection = this.Connection;
  8512. this._commandCollection[0].CommandText = "SELECT [Код специальности], [Название специальности], [Описание специальности] FR" +
  8513. "OM dbo.Специальности";
  8514. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8515. }
  8516. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8517. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8518. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8519. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8520. public virtual int Fill(РожковDataSet.СпециальностиDataTable dataTable) {
  8521. this.Adapter.SelectCommand = this.CommandCollection[0];
  8522. if ((this.ClearBeforeFill == true)) {
  8523. dataTable.Clear();
  8524. }
  8525. int returnValue = this.Adapter.Fill(dataTable);
  8526. return returnValue;
  8527. }
  8528. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8529. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8530. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8531. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8532. public virtual РожковDataSet.СпециальностиDataTable GetData() {
  8533. this.Adapter.SelectCommand = this.CommandCollection[0];
  8534. РожковDataSet.СпециальностиDataTable dataTable = new РожковDataSet.СпециальностиDataTable();
  8535. this.Adapter.Fill(dataTable);
  8536. return dataTable;
  8537. }
  8538. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8539. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8540. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8541. public virtual int Update(РожковDataSet.СпециальностиDataTable dataTable) {
  8542. return this.Adapter.Update(dataTable);
  8543. }
  8544. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8545. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8546. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8547. public virtual int Update(РожковDataSet dataSet) {
  8548. return this.Adapter.Update(dataSet, "Специальности");
  8549. }
  8550. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8551. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8552. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8553. public virtual int Update(global::System.Data.DataRow dataRow) {
  8554. return this.Adapter.Update(new global::System.Data.DataRow[] {
  8555. dataRow});
  8556. }
  8557. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8558. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8559. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8560. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  8561. return this.Adapter.Update(dataRows);
  8562. }
  8563. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8564. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8565. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8566. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  8567. public virtual int Delete(long Original_Код_специальности, string Original_Название_специальности) {
  8568. this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_Код_специальности));
  8569. if ((Original_Название_специальности == null)) {
  8570. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
  8571. this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
  8572. }
  8573. else {
  8574. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
  8575. this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_Название_специальности));
  8576. }
  8577. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  8578. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8579. != global::System.Data.ConnectionState.Open)) {
  8580. this.Adapter.DeleteCommand.Connection.Open();
  8581. }
  8582. try {
  8583. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  8584. return returnValue;
  8585. }
  8586. finally {
  8587. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8588. this.Adapter.DeleteCommand.Connection.Close();
  8589. }
  8590. }
  8591. }
  8592. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8593. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8594. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8595. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  8596. public virtual int Insert(string Название_специальности, string Описание_специальности) {
  8597. if ((Название_специальности == null)) {
  8598. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  8599. }
  8600. else {
  8601. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(Название_специальности));
  8602. }
  8603. if ((Описание_специальности == null)) {
  8604. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  8605. }
  8606. else {
  8607. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Описание_специальности));
  8608. }
  8609. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  8610. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8611. != global::System.Data.ConnectionState.Open)) {
  8612. this.Adapter.InsertCommand.Connection.Open();
  8613. }
  8614. try {
  8615. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  8616. return returnValue;
  8617. }
  8618. finally {
  8619. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8620. this.Adapter.InsertCommand.Connection.Close();
  8621. }
  8622. }
  8623. }
  8624. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8626. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8627. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8628. public virtual int Update(string Название_специальности, string Описание_специальности, long Original_Код_специальности, string Original_Название_специальности, long Код_специальности) {
  8629. if ((Название_специальности == null)) {
  8630. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  8631. }
  8632. else {
  8633. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(Название_специальности));
  8634. }
  8635. if ((Описание_специальности == null)) {
  8636. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  8637. }
  8638. else {
  8639. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Описание_специальности));
  8640. }
  8641. this.Adapter.UpdateCommand.Parameters[2].Value = ((long)(Original_Код_специальности));
  8642. if ((Original_Название_специальности == null)) {
  8643. this.Adapter.UpdateCommand.Parameters[3].Value = ((object)(1));
  8644. this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
  8645. }
  8646. else {
  8647. this.Adapter.UpdateCommand.Parameters[3].Value = ((object)(0));
  8648. this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Original_Название_специальности));
  8649. }
  8650. this.Adapter.UpdateCommand.Parameters[5].Value = ((long)(Код_специальности));
  8651. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  8652. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8653. != global::System.Data.ConnectionState.Open)) {
  8654. this.Adapter.UpdateCommand.Connection.Open();
  8655. }
  8656. try {
  8657. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  8658. return returnValue;
  8659. }
  8660. finally {
  8661. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8662. this.Adapter.UpdateCommand.Connection.Close();
  8663. }
  8664. }
  8665. }
  8666. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8667. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8668. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8669. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8670. public virtual int Update(string Название_специальности, string Описание_специальности, long Original_Код_специальности, string Original_Название_специальности) {
  8671. return this.Update(Название_специальности, Описание_специальности, Original_Код_специальности, Original_Название_специальности, Original_Код_специальности);
  8672. }
  8673. }
  8674. /// <summary>
  8675. ///Represents the connection and commands used to retrieve and save data.
  8676. ///</summary>
  8677. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8678. [global::System.ComponentModel.ToolboxItem(true)]
  8679. [global::System.ComponentModel.DataObjectAttribute(true)]
  8680. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8681. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8682. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8683. public partial class СтудентыTableAdapter : global::System.ComponentModel.Component {
  8684. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8685. private global::System.Data.SqlClient.SqlConnection _connection;
  8686. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8687. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8688. private bool _clearBeforeFill;
  8689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8690. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8691. public СтудентыTableAdapter() {
  8692. this.ClearBeforeFill = true;
  8693. }
  8694. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8695. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8696. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8697. get {
  8698. if ((this._adapter == null)) {
  8699. this.InitAdapter();
  8700. }
  8701. return this._adapter;
  8702. }
  8703. }
  8704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8706. internal global::System.Data.SqlClient.SqlConnection Connection {
  8707. get {
  8708. if ((this._connection == null)) {
  8709. this.InitConnection();
  8710. }
  8711. return this._connection;
  8712. }
  8713. set {
  8714. this._connection = value;
  8715. if ((this.Adapter.InsertCommand != null)) {
  8716. this.Adapter.InsertCommand.Connection = value;
  8717. }
  8718. if ((this.Adapter.DeleteCommand != null)) {
  8719. this.Adapter.DeleteCommand.Connection = value;
  8720. }
  8721. if ((this.Adapter.UpdateCommand != null)) {
  8722. this.Adapter.UpdateCommand.Connection = value;
  8723. }
  8724. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8725. if ((this.CommandCollection[i] != null)) {
  8726. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8727. }
  8728. }
  8729. }
  8730. }
  8731. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8732. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8733. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8734. get {
  8735. return this._transaction;
  8736. }
  8737. set {
  8738. this._transaction = value;
  8739. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8740. this.CommandCollection[i].Transaction = this._transaction;
  8741. }
  8742. if (((this.Adapter != null)
  8743. && (this.Adapter.DeleteCommand != null))) {
  8744. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8745. }
  8746. if (((this.Adapter != null)
  8747. && (this.Adapter.InsertCommand != null))) {
  8748. this.Adapter.InsertCommand.Transaction = this._transaction;
  8749. }
  8750. if (((this.Adapter != null)
  8751. && (this.Adapter.UpdateCommand != null))) {
  8752. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8753. }
  8754. }
  8755. }
  8756. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8757. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8758. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8759. get {
  8760. if ((this._commandCollection == null)) {
  8761. this.InitCommandCollection();
  8762. }
  8763. return this._commandCollection;
  8764. }
  8765. }
  8766. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8767. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8768. public bool ClearBeforeFill {
  8769. get {
  8770. return this._clearBeforeFill;
  8771. }
  8772. set {
  8773. this._clearBeforeFill = value;
  8774. }
  8775. }
  8776. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8777. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8778. private void InitAdapter() {
  8779. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8780. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8781. tableMapping.SourceTable = "Table";
  8782. tableMapping.DataSetTable = "Студенты";
  8783. tableMapping.ColumnMappings.Add("Код студента", "Код студента");
  8784. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  8785. tableMapping.ColumnMappings.Add("Пол", "Пол");
  8786. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  8787. tableMapping.ColumnMappings.Add("Родители", "Родители");
  8788. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  8789. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  8790. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  8791. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  8792. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  8793. tableMapping.ColumnMappings.Add("Группа", "Группа");
  8794. tableMapping.ColumnMappings.Add("Курс", "Курс");
  8795. tableMapping.ColumnMappings.Add("Код специальности", "Код специальности");
  8796. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  8797. this._adapter.TableMappings.Add(tableMapping);
  8798. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  8799. this._adapter.DeleteCommand.Connection = this.Connection;
  8800. 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_Дата_поступления)) 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_Очная_форма_обучения)))";
  8801. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  8802. 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, "", "", ""));
  8803. 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, "", "", ""));
  8804. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ФИО", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ФИО", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8805. 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, "", "", ""));
  8806. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Пол", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Пол", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8807. 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, "", "", ""));
  8808. 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, "", "", ""));
  8809. 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, "", "", ""));
  8810. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Родители", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Родители", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8811. 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, "", "", ""));
  8812. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Телефон", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Телефон", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8813. 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, "", "", ""));
  8814. 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, "", "", ""));
  8815. 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, "", "", ""));
  8816. 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, "", "", ""));
  8817. 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, "", "", ""));
  8818. this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Группа", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Группа", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8819. 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, "", "", ""));
  8820. 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, "", "", ""));
  8821. 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, "", "", ""));
  8822. 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, "", "", ""));
  8823. 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, "", "", ""));
  8824. 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, "", "", ""));
  8825. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  8826. this._adapter.InsertCommand.Connection = this.Connection;
  8827. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[Студенты] ([ФИО], [Пол], [Дата рождения], [Родители], [Адрес], [Телефон], [Паспортные данные], [Номер зачетки], [Дата поступления], [Группа], [Курс], [Код специальности], [Очная форма обучения]) VALUES (@ФИО, @Пол, @Дата_рождения, @Родители, @Адрес, @Телефон, @Паспортные_данные, @Номер_зачетки, @Дата_поступления, @Группа, @Курс, @Код_специальности, @Очная_форма_обучения);
  8828. SELECT [Код студента], ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Паспортные данные], [Номер зачетки], [Дата поступления], Группа, Курс, [Код специальности], [Очная форма обучения] FROM Студенты WHERE ([Код студента] = SCOPE_IDENTITY())";
  8829. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  8830. 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, "", "", ""));
  8831. 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, "", "", ""));
  8832. 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, "", "", ""));
  8833. 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, "", "", ""));
  8834. 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, "", "", ""));
  8835. 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, "", "", ""));
  8836. 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, "", "", ""));
  8837. 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, "", "", ""));
  8838. 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, "", "", ""));
  8839. 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, "", "", ""));
  8840. 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, "", "", ""));
  8841. 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, "", "", ""));
  8842. 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, "", "", ""));
  8843. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  8844. this._adapter.UpdateCommand.Connection = this.Connection;
  8845. this._adapter.UpdateCommand.CommandText = "UPDATE [dbo].[Студенты] SET [ФИО] = @ФИО, [Пол] = @Пол, [Дата рождения] = @Дата_р" +
  8846. "ождения, [Родители] = @Родители, [Адрес] = @Адрес, [Телефон] = @Телефон, [Паспор" +
  8847. "тные данные] = @Паспортные_данные, [Номер зачетки] = @Номер_зачетки, [Дата посту" +
  8848. "пления] = @Дата_поступления, [Группа] = @Группа, [Курс] = @Курс, [Код специально" +
  8849. "сти] = @Код_специальности, [Очная форма обучения] = @Очная_форма_обучения WHERE " +
  8850. "(([Код студента] = @Original_Код_студента) AND ((@IsNull_ФИО = 1 AND [ФИО] IS NU" +
  8851. "LL) OR ([ФИО] = @Original_ФИО)) AND ((@IsNull_Пол = 1 AND [Пол] IS NULL) OR ([По" +
  8852. "л] = @Original_Пол)) AND ((@IsNull_Дата_рождения = 1 AND [Дата рождения] IS NULL" +
  8853. ") OR ([Дата рождения] = @Original_Дата_рождения)) AND ((@IsNull_Родители = 1 AND" +
  8854. " [Родители] IS NULL) OR ([Родители] = @Original_Родители)) AND ((@IsNull_Телефон" +
  8855. " = 1 AND [Телефон] IS NULL) OR ([Телефон] = @Original_Телефон)) AND ((@IsNull_Но" +
  8856. "мер_зачетки = 1 AND [Номер зачетки] IS NULL) OR ([Номер зачетки] = @Original_Ном" +
  8857. "ер_зачетки)) AND ((@IsNull_Дата_поступления = 1 AND [Дата поступления] IS NULL) " +
  8858. "OR ([Дата поступления] = @Original_Дата_поступления)) AND ((@IsNull_Группа = 1 A" +
  8859. "ND [Группа] IS NULL) OR ([Группа] = @Original_Группа)) AND ((@IsNull_Курс = 1 AN" +
  8860. "D [Курс] IS NULL) OR ([Курс] = @Original_Курс)) AND ((@IsNull_Код_специальности " +
  8861. "= 1 AND [Код специальности] IS NULL) OR ([Код специальности] = @Original_Код_спе" +
  8862. "циальности)) AND ((@IsNull_Очная_форма_обучения = 1 AND [Очная форма обучения] I" +
  8863. "S NULL) OR ([Очная форма обучения] = @Original_Очная_форма_обучения)));\r\nSELECT " +
  8864. "[Код студента], ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Паспортные" +
  8865. " данные], [Номер зачетки], [Дата поступления], Группа, Курс, [Код специальности]" +
  8866. ", [Очная форма обучения] FROM Студенты WHERE ([Код студента] = @Код_студента)";
  8867. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  8868. 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, "", "", ""));
  8869. 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, "", "", ""));
  8870. 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, "", "", ""));
  8871. 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, "", "", ""));
  8872. 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, "", "", ""));
  8873. 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, "", "", ""));
  8874. 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, "", "", ""));
  8875. 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, "", "", ""));
  8876. 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, "", "", ""));
  8877. 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, "", "", ""));
  8878. 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, "", "", ""));
  8879. 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, "", "", ""));
  8880. 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, "", "", ""));
  8881. 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, "", "", ""));
  8882. 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, "", "", ""));
  8883. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ФИО", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ФИО", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8884. 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, "", "", ""));
  8885. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Пол", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Пол", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8886. 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, "", "", ""));
  8887. 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, "", "", ""));
  8888. 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, "", "", ""));
  8889. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Родители", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Родители", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8890. 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, "", "", ""));
  8891. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Телефон", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Телефон", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8892. 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, "", "", ""));
  8893. 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, "", "", ""));
  8894. 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, "", "", ""));
  8895. 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, "", "", ""));
  8896. 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, "", "", ""));
  8897. this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Группа", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Группа", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8898. 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, "", "", ""));
  8899. 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, "", "", ""));
  8900. 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, "", "", ""));
  8901. 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, "", "", ""));
  8902. 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, "", "", ""));
  8903. 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, "", "", ""));
  8904. 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, "", "", ""));
  8905. }
  8906. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8907. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8908. private void InitConnection() {
  8909. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8910. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  8911. }
  8912. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8913. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8914. private void InitCommandCollection() {
  8915. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8916. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8917. this._commandCollection[0].Connection = this.Connection;
  8918. this._commandCollection[0].CommandText = "SELECT [Код студента], ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Пасп" +
  8919. "ортные данные], [Номер зачетки], [Дата поступления], Группа, Курс, [Код специаль" +
  8920. "ности], [Очная форма обучения] FROM dbo.Студенты";
  8921. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8922. }
  8923. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8924. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8925. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8926. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8927. public virtual int Fill(РожковDataSet.СтудентыDataTable dataTable) {
  8928. this.Adapter.SelectCommand = this.CommandCollection[0];
  8929. if ((this.ClearBeforeFill == true)) {
  8930. dataTable.Clear();
  8931. }
  8932. int returnValue = this.Adapter.Fill(dataTable);
  8933. return returnValue;
  8934. }
  8935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8937. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8938. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8939. public virtual РожковDataSet.СтудентыDataTable GetData() {
  8940. this.Adapter.SelectCommand = this.CommandCollection[0];
  8941. РожковDataSet.СтудентыDataTable dataTable = new РожковDataSet.СтудентыDataTable();
  8942. this.Adapter.Fill(dataTable);
  8943. return dataTable;
  8944. }
  8945. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8946. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8947. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8948. public virtual int Update(РожковDataSet.СтудентыDataTable dataTable) {
  8949. return this.Adapter.Update(dataTable);
  8950. }
  8951. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8952. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8953. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8954. public virtual int Update(РожковDataSet dataSet) {
  8955. return this.Adapter.Update(dataSet, "Студенты");
  8956. }
  8957. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8958. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8959. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8960. public virtual int Update(global::System.Data.DataRow dataRow) {
  8961. return this.Adapter.Update(new global::System.Data.DataRow[] {
  8962. dataRow});
  8963. }
  8964. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8965. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8966. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8967. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  8968. return this.Adapter.Update(dataRows);
  8969. }
  8970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8972. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8973. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  8974. public virtual int Delete(long Original_Код_студента, string Original_ФИО, string Original_Пол, global::System.Nullable<global::System.DateTime> Original_Дата_рождения, string Original_Родители, string 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_Очная_форма_обучения) {
  8975. this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_Код_студента));
  8976. if ((Original_ФИО == null)) {
  8977. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
  8978. this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
  8979. }
  8980. else {
  8981. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
  8982. this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_ФИО));
  8983. }
  8984. if ((Original_Пол == null)) {
  8985. this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(1));
  8986. this.Adapter.DeleteCommand.Parameters[4].Value = global::System.DBNull.Value;
  8987. }
  8988. else {
  8989. this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(0));
  8990. this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_Пол));
  8991. }
  8992. if ((Original_Дата_рождения.HasValue == true)) {
  8993. this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0));
  8994. this.Adapter.DeleteCommand.Parameters[6].Value = ((System.DateTime)(Original_Дата_рождения.Value));
  8995. }
  8996. else {
  8997. this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1));
  8998. this.Adapter.DeleteCommand.Parameters[6].Value = global::System.DBNull.Value;
  8999. }
  9000. if ((Original_Родители == null)) {
  9001. this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1));
  9002. this.Adapter.DeleteCommand.Parameters[8].Value = global::System.DBNull.Value;
  9003. }
  9004. else {
  9005. this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0));
  9006. this.Adapter.DeleteCommand.Parameters[8].Value = ((string)(Original_Родители));
  9007. }
  9008. if ((Original_Телефон == null)) {
  9009. this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(1));
  9010. this.Adapter.DeleteCommand.Parameters[10].Value = global::System.DBNull.Value;
  9011. }
  9012. else {
  9013. this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(0));
  9014. this.Adapter.DeleteCommand.Parameters[10].Value = ((string)(Original_Телефон));
  9015. }
  9016. if ((Original_Номер_зачетки.HasValue == true)) {
  9017. this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(0));
  9018. this.Adapter.DeleteCommand.Parameters[12].Value = ((long)(Original_Номер_зачетки.Value));
  9019. }
  9020. else {
  9021. this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(1));
  9022. this.Adapter.DeleteCommand.Parameters[12].Value = global::System.DBNull.Value;
  9023. }
  9024. if ((Original_Дата_поступления.HasValue == true)) {
  9025. this.Adapter.DeleteCommand.Parameters[13].Value = ((object)(0));
  9026. this.Adapter.DeleteCommand.Parameters[14].Value = ((System.DateTime)(Original_Дата_поступления.Value));
  9027. }
  9028. else {
  9029. this.Adapter.DeleteCommand.Parameters[13].Value = ((object)(1));
  9030. this.Adapter.DeleteCommand.Parameters[14].Value = global::System.DBNull.Value;
  9031. }
  9032. if ((Original_Группа == null)) {
  9033. this.Adapter.DeleteCommand.Parameters[15].Value = ((object)(1));
  9034. this.Adapter.DeleteCommand.Parameters[16].Value = global::System.DBNull.Value;
  9035. }
  9036. else {
  9037. this.Adapter.DeleteCommand.Parameters[15].Value = ((object)(0));
  9038. this.Adapter.DeleteCommand.Parameters[16].Value = ((string)(Original_Группа));
  9039. }
  9040. if ((Original_Курс.HasValue == true)) {
  9041. this.Adapter.DeleteCommand.Parameters[17].Value = ((object)(0));
  9042. this.Adapter.DeleteCommand.Parameters[18].Value = ((byte)(Original_Курс.Value));
  9043. }
  9044. else {
  9045. this.Adapter.DeleteCommand.Parameters[17].Value = ((object)(1));
  9046. this.Adapter.DeleteCommand.Parameters[18].Value = global::System.DBNull.Value;
  9047. }
  9048. if ((Original_Код_специальности.HasValue == true)) {
  9049. this.Adapter.DeleteCommand.Parameters[19].Value = ((object)(0));
  9050. this.Adapter.DeleteCommand.Parameters[20].Value = ((long)(Original_Код_специальности.Value));
  9051. }
  9052. else {
  9053. this.Adapter.DeleteCommand.Parameters[19].Value = ((object)(1));
  9054. this.Adapter.DeleteCommand.Parameters[20].Value = global::System.DBNull.Value;
  9055. }
  9056. if ((Original_Очная_форма_обучения.HasValue == true)) {
  9057. this.Adapter.DeleteCommand.Parameters[21].Value = ((object)(0));
  9058. this.Adapter.DeleteCommand.Parameters[22].Value = ((bool)(Original_Очная_форма_обучения.Value));
  9059. }
  9060. else {
  9061. this.Adapter.DeleteCommand.Parameters[21].Value = ((object)(1));
  9062. this.Adapter.DeleteCommand.Parameters[22].Value = global::System.DBNull.Value;
  9063. }
  9064. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  9065. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  9066. != global::System.Data.ConnectionState.Open)) {
  9067. this.Adapter.DeleteCommand.Connection.Open();
  9068. }
  9069. try {
  9070. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  9071. return returnValue;
  9072. }
  9073. finally {
  9074. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  9075. this.Adapter.DeleteCommand.Connection.Close();
  9076. }
  9077. }
  9078. }
  9079. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9080. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9081. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9082. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  9083. 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> Очная_форма_обучения) {
  9084. if ((ФИО == null)) {
  9085. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  9086. }
  9087. else {
  9088. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(ФИО));
  9089. }
  9090. if ((Пол == null)) {
  9091. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  9092. }
  9093. else {
  9094. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Пол));
  9095. }
  9096. if ((Дата_рождения.HasValue == true)) {
  9097. this.Adapter.InsertCommand.Parameters[2].Value = ((System.DateTime)(Дата_рождения.Value));
  9098. }
  9099. else {
  9100. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  9101. }
  9102. if ((Родители == null)) {
  9103. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  9104. }
  9105. else {
  9106. this.Adapter.InsertCommand.Parameters[3].Value = ((string)(Родители));
  9107. }
  9108. if ((Адрес == null)) {
  9109. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  9110. }
  9111. else {
  9112. this.Adapter.InsertCommand.Parameters[4].Value = ((string)(Адрес));
  9113. }
  9114. if ((Телефон == null)) {
  9115. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  9116. }
  9117. else {
  9118. this.Adapter.InsertCommand.Parameters[5].Value = ((string)(Телефон));
  9119. }
  9120. if ((Паспортные_данные == null)) {
  9121. this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
  9122. }
  9123. else {
  9124. this.Adapter.InsertCommand.Parameters[6].Value = ((string)(Паспортные_данные));
  9125. }
  9126. if ((Номер_зачетки.HasValue == true)) {
  9127. this.Adapter.InsertCommand.Parameters[7].Value = ((long)(Номер_зачетки.Value));
  9128. }
  9129. else {
  9130. this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
  9131. }
  9132. if ((Дата_поступления.HasValue == true)) {
  9133. this.Adapter.InsertCommand.Parameters[8].Value = ((System.DateTime)(Дата_поступления.Value));
  9134. }
  9135. else {
  9136. this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
  9137. }
  9138. if ((Группа == null)) {
  9139. this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
  9140. }
  9141. else {
  9142. this.Adapter.InsertCommand.Parameters[9].Value = ((string)(Группа));
  9143. }
  9144. if ((Курс.HasValue == true)) {
  9145. this.Adapter.InsertCommand.Parameters[10].Value = ((byte)(Курс.Value));
  9146. }
  9147. else {
  9148. this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
  9149. }
  9150. if ((Код_специальности.HasValue == true)) {
  9151. this.Adapter.InsertCommand.Parameters[11].Value = ((long)(Код_специальности.Value));
  9152. }
  9153. else {
  9154. this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value;
  9155. }
  9156. if ((Очная_форма_обучения.HasValue == true)) {
  9157. this.Adapter.InsertCommand.Parameters[12].Value = ((bool)(Очная_форма_обучения.Value));
  9158. }
  9159. else {
  9160. this.Adapter.InsertCommand.Parameters[12].Value = global::System.DBNull.Value;
  9161. }
  9162. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  9163. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  9164. != global::System.Data.ConnectionState.Open)) {
  9165. this.Adapter.InsertCommand.Connection.Open();
  9166. }
  9167. try {
  9168. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  9169. return returnValue;
  9170. }
  9171. finally {
  9172. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  9173. this.Adapter.InsertCommand.Connection.Close();
  9174. }
  9175. }
  9176. }
  9177. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9178. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9179. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9180. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  9181. public virtual int Update(
  9182. string ФИО,
  9183. string Пол,
  9184. global::System.Nullable<global::System.DateTime> Дата_рождения,
  9185. string Родители,
  9186. string Адрес,
  9187. string Телефон,
  9188. string Паспортные_данные,
  9189. global::System.Nullable<long> Номер_зачетки,
  9190. global::System.Nullable<global::System.DateTime> Дата_поступления,
  9191. string Группа,
  9192. global::System.Nullable<byte> Курс,
  9193. global::System.Nullable<long> Код_специальности,
  9194. global::System.Nullable<bool> Очная_форма_обучения,
  9195. long Original_Код_студента,
  9196. string Original_ФИО,
  9197. string Original_Пол,
  9198. global::System.Nullable<global::System.DateTime> Original_Дата_рождения,
  9199. string Original_Родители,
  9200. string Original_Телефон,
  9201. global::System.Nullable<long> Original_Номер_зачетки,
  9202. global::System.Nullable<global::System.DateTime> Original_Дата_поступления,
  9203. string Original_Группа,
  9204. global::System.Nullable<byte> Original_Курс,
  9205. global::System.Nullable<long> Original_Код_специальности,
  9206. global::System.Nullable<bool> Original_Очная_форма_обучения,
  9207. long Код_студента) {
  9208. if ((ФИО == null)) {
  9209. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  9210. }
  9211. else {
  9212. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(ФИО));
  9213. }
  9214. if ((Пол == null)) {
  9215. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  9216. }
  9217. else {
  9218. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Пол));
  9219. }
  9220. if ((Дата_рождения.HasValue == true)) {
  9221. this.Adapter.UpdateCommand.Parameters[2].Value = ((System.DateTime)(Дата_рождения.Value));
  9222. }
  9223. else {
  9224. this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value;
  9225. }
  9226. if ((Родители == null)) {
  9227. this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
  9228. }
  9229. else {
  9230. this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(Родители));
  9231. }
  9232. if ((Адрес == null)) {
  9233. this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
  9234. }
  9235. else {
  9236. this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Адрес));
  9237. }
  9238. if ((Телефон == null)) {
  9239. this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value;
  9240. }
  9241. else {
  9242. this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Телефон));
  9243. }
  9244. if ((Паспортные_данные == null)) {
  9245. this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
  9246. }
  9247. else {
  9248. this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Паспортные_данные));
  9249. }
  9250. if ((Номер_зачетки.HasValue == true)) {
  9251. this.Adapter.UpdateCommand.Parameters[7].Value = ((long)(Номер_зачетки.Value));
  9252. }
  9253. else {
  9254. this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
  9255. }
  9256. if ((Дата_поступления.HasValue == true)) {
  9257. this.Adapter.UpdateCommand.Parameters[8].Value = ((System.DateTime)(Дата_поступления.Value));
  9258. }
  9259. else {
  9260. this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
  9261. }
  9262. if ((Группа == null)) {
  9263. this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
  9264. }
  9265. else {
  9266. this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(Группа));
  9267. }
  9268. if ((Курс.HasValue == true)) {
  9269. this.Adapter.UpdateCommand.Parameters[10].Value = ((byte)(Курс.Value));
  9270. }
  9271. else {
  9272. this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
  9273. }
  9274. if ((Код_специальности.HasValue == true)) {
  9275. this.Adapter.UpdateCommand.Parameters[11].Value = ((long)(Код_специальности.Value));
  9276. }
  9277. else {
  9278. this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value;
  9279. }
  9280. if ((Очная_форма_обучения.HasValue == true)) {
  9281. this.Adapter.UpdateCommand.Parameters[12].Value = ((bool)(Очная_форма_обучения.Value));
  9282. }
  9283. else {
  9284. this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value;
  9285. }
  9286. this.Adapter.UpdateCommand.Parameters[13].Value = ((long)(Original_Код_студента));
  9287. if ((Original_ФИО == null)) {
  9288. this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(1));
  9289. this.Adapter.UpdateCommand.Parameters[15].Value = global::System.DBNull.Value;
  9290. }
  9291. else {
  9292. this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(0));
  9293. this.Adapter.UpdateCommand.Parameters[15].Value = ((string)(Original_ФИО));
  9294. }
  9295. if ((Original_Пол == null)) {
  9296. this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(1));
  9297. this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value;
  9298. }
  9299. else {
  9300. this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(0));
  9301. this.Adapter.UpdateCommand.Parameters[17].Value = ((string)(Original_Пол));
  9302. }
  9303. if ((Original_Дата_рождения.HasValue == true)) {
  9304. this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(0));
  9305. this.Adapter.UpdateCommand.Parameters[19].Value = ((System.DateTime)(Original_Дата_рождения.Value));
  9306. }
  9307. else {
  9308. this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(1));
  9309. this.Adapter.UpdateCommand.Parameters[19].Value = global::System.DBNull.Value;
  9310. }
  9311. if ((Original_Родители == null)) {
  9312. this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
  9313. this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
  9314. }
  9315. else {
  9316. this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
  9317. this.Adapter.UpdateCommand.Parameters[21].Value = ((string)(Original_Родители));
  9318. }
  9319. if ((Original_Телефон == null)) {
  9320. this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(1));
  9321. this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value;
  9322. }
  9323. else {
  9324. this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(0));
  9325. this.Adapter.UpdateCommand.Parameters[23].Value = ((string)(Original_Телефон));
  9326. }
  9327. if ((Original_Номер_зачетки.HasValue == true)) {
  9328. this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
  9329. this.Adapter.UpdateCommand.Parameters[25].Value = ((long)(Original_Номер_зачетки.Value));
  9330. }
  9331. else {
  9332. this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
  9333. this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
  9334. }
  9335. if ((Original_Дата_поступления.HasValue == true)) {
  9336. this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(0));
  9337. this.Adapter.UpdateCommand.Parameters[27].Value = ((System.DateTime)(Original_Дата_поступления.Value));
  9338. }
  9339. else {
  9340. this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(1));
  9341. this.Adapter.UpdateCommand.Parameters[27].Value = global::System.DBNull.Value;
  9342. }
  9343. if ((Original_Группа == null)) {
  9344. this.Adapter.UpdateCommand.Parameters[28].Value = ((object)(1));
  9345. this.Adapter.UpdateCommand.Parameters[29].Value = global::System.DBNull.Value;
  9346. }
  9347. else {
  9348. this.Adapter.UpdateCommand.Parameters[28].Value = ((object)(0));
  9349. this.Adapter.UpdateCommand.Parameters[29].Value = ((string)(Original_Группа));
  9350. }
  9351. if ((Original_Курс.HasValue == true)) {
  9352. this.Adapter.UpdateCommand.Parameters[30].Value = ((object)(0));
  9353. this.Adapter.UpdateCommand.Parameters[31].Value = ((byte)(Original_Курс.Value));
  9354. }
  9355. else {
  9356. this.Adapter.UpdateCommand.Parameters[30].Value = ((object)(1));
  9357. this.Adapter.UpdateCommand.Parameters[31].Value = global::System.DBNull.Value;
  9358. }
  9359. if ((Original_Код_специальности.HasValue == true)) {
  9360. this.Adapter.UpdateCommand.Parameters[32].Value = ((object)(0));
  9361. this.Adapter.UpdateCommand.Parameters[33].Value = ((long)(Original_Код_специальности.Value));
  9362. }
  9363. else {
  9364. this.Adapter.UpdateCommand.Parameters[32].Value = ((object)(1));
  9365. this.Adapter.UpdateCommand.Parameters[33].Value = global::System.DBNull.Value;
  9366. }
  9367. if ((Original_Очная_форма_обучения.HasValue == true)) {
  9368. this.Adapter.UpdateCommand.Parameters[34].Value = ((object)(0));
  9369. this.Adapter.UpdateCommand.Parameters[35].Value = ((bool)(Original_Очная_форма_обучения.Value));
  9370. }
  9371. else {
  9372. this.Adapter.UpdateCommand.Parameters[34].Value = ((object)(1));
  9373. this.Adapter.UpdateCommand.Parameters[35].Value = global::System.DBNull.Value;
  9374. }
  9375. this.Adapter.UpdateCommand.Parameters[36].Value = ((long)(Код_студента));
  9376. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  9377. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  9378. != global::System.Data.ConnectionState.Open)) {
  9379. this.Adapter.UpdateCommand.Connection.Open();
  9380. }
  9381. try {
  9382. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  9383. return returnValue;
  9384. }
  9385. finally {
  9386. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  9387. this.Adapter.UpdateCommand.Connection.Close();
  9388. }
  9389. }
  9390. }
  9391. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9392. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9393. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9394. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  9395. public virtual int Update(
  9396. string ФИО,
  9397. string Пол,
  9398. global::System.Nullable<global::System.DateTime> Дата_рождения,
  9399. string Родители,
  9400. string Адрес,
  9401. string Телефон,
  9402. string Паспортные_данные,
  9403. global::System.Nullable<long> Номер_зачетки,
  9404. global::System.Nullable<global::System.DateTime> Дата_поступления,
  9405. string Группа,
  9406. global::System.Nullable<byte> Курс,
  9407. global::System.Nullable<long> Код_специальности,
  9408. global::System.Nullable<bool> Очная_форма_обучения,
  9409. long Original_Код_студента,
  9410. string Original_ФИО,
  9411. string Original_Пол,
  9412. global::System.Nullable<global::System.DateTime> Original_Дата_рождения,
  9413. string Original_Родители,
  9414. string Original_Телефон,
  9415. global::System.Nullable<long> Original_Номер_зачетки,
  9416. global::System.Nullable<global::System.DateTime> Original_Дата_поступления,
  9417. string Original_Группа,
  9418. global::System.Nullable<byte> Original_Курс,
  9419. global::System.Nullable<long> Original_Код_специальности,
  9420. global::System.Nullable<bool> Original_Очная_форма_обучения) {
  9421. return this.Update(ФИО, Пол, Дата_рождения, Родители, Адрес, Телефон, Паспортные_данные, Номер_зачетки, Дата_поступления, Группа, Курс, Код_специальности, Очная_форма_обучения, Original_Код_студента, Original_ФИО, Original_Пол, Original_Дата_рождения, Original_Родители, Original_Телефон, Original_Номер_зачетки, Original_Дата_поступления, Original_Группа, Original_Курс, Original_Код_специальности, Original_Очная_форма_обучения, Original_Код_студента);
  9422. }
  9423. }
  9424. /// <summary>
  9425. ///Represents the connection and commands used to retrieve and save data.
  9426. ///</summary>
  9427. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9428. [global::System.ComponentModel.ToolboxItem(true)]
  9429. [global::System.ComponentModel.DataObjectAttribute(true)]
  9430. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9431. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9432. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9433. public partial class Запрос_Студенты_ОценкиTableAdapter : global::System.ComponentModel.Component {
  9434. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9435. private global::System.Data.SqlClient.SqlConnection _connection;
  9436. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9437. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9438. private bool _clearBeforeFill;
  9439. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9440. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9441. public Запрос_Студенты_ОценкиTableAdapter() {
  9442. this.ClearBeforeFill = true;
  9443. }
  9444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9445. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9446. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9447. get {
  9448. if ((this._adapter == null)) {
  9449. this.InitAdapter();
  9450. }
  9451. return this._adapter;
  9452. }
  9453. }
  9454. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9455. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9456. internal global::System.Data.SqlClient.SqlConnection Connection {
  9457. get {
  9458. if ((this._connection == null)) {
  9459. this.InitConnection();
  9460. }
  9461. return this._connection;
  9462. }
  9463. set {
  9464. this._connection = value;
  9465. if ((this.Adapter.InsertCommand != null)) {
  9466. this.Adapter.InsertCommand.Connection = value;
  9467. }
  9468. if ((this.Adapter.DeleteCommand != null)) {
  9469. this.Adapter.DeleteCommand.Connection = value;
  9470. }
  9471. if ((this.Adapter.UpdateCommand != null)) {
  9472. this.Adapter.UpdateCommand.Connection = value;
  9473. }
  9474. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9475. if ((this.CommandCollection[i] != null)) {
  9476. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9477. }
  9478. }
  9479. }
  9480. }
  9481. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9482. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9483. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9484. get {
  9485. return this._transaction;
  9486. }
  9487. set {
  9488. this._transaction = value;
  9489. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9490. this.CommandCollection[i].Transaction = this._transaction;
  9491. }
  9492. if (((this.Adapter != null)
  9493. && (this.Adapter.DeleteCommand != null))) {
  9494. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9495. }
  9496. if (((this.Adapter != null)
  9497. && (this.Adapter.InsertCommand != null))) {
  9498. this.Adapter.InsertCommand.Transaction = this._transaction;
  9499. }
  9500. if (((this.Adapter != null)
  9501. && (this.Adapter.UpdateCommand != null))) {
  9502. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9503. }
  9504. }
  9505. }
  9506. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9507. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9508. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9509. get {
  9510. if ((this._commandCollection == null)) {
  9511. this.InitCommandCollection();
  9512. }
  9513. return this._commandCollection;
  9514. }
  9515. }
  9516. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9517. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9518. public bool ClearBeforeFill {
  9519. get {
  9520. return this._clearBeforeFill;
  9521. }
  9522. set {
  9523. this._clearBeforeFill = value;
  9524. }
  9525. }
  9526. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9527. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9528. private void InitAdapter() {
  9529. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9530. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9531. tableMapping.SourceTable = "Table";
  9532. tableMapping.DataSetTable = "Запрос Студенты+Оценки";
  9533. tableMapping.ColumnMappings.Add("ФИО студента", "ФИО студента");
  9534. tableMapping.ColumnMappings.Add("Дата первого экзамена", "Дата первого экзамена");
  9535. tableMapping.ColumnMappings.Add("Наименование предмета первого экзамена", "Наименование предмета первого экзамена");
  9536. tableMapping.ColumnMappings.Add("Оценка первого экзамена", "Оценка первого экзамена");
  9537. tableMapping.ColumnMappings.Add("Дата второго экзамена", "Дата второго экзамена");
  9538. tableMapping.ColumnMappings.Add("Наименование предмета второго экзамена", "Наименование предмета второго экзамена");
  9539. tableMapping.ColumnMappings.Add("Оценка второго экзамена", "Оценка второго экзамена");
  9540. tableMapping.ColumnMappings.Add("Наименование предмета третьего экзамена", "Наименование предмета третьего экзамена");
  9541. tableMapping.ColumnMappings.Add("Оценка третьего экзамена", "Оценка третьего экзамена");
  9542. tableMapping.ColumnMappings.Add("Дата третьего экзамена", "Дата третьего экзамена");
  9543. tableMapping.ColumnMappings.Add("Средний балл студента за сесию", "Средний балл студента за сесию");
  9544. this._adapter.TableMappings.Add(tableMapping);
  9545. }
  9546. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9547. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9548. private void InitConnection() {
  9549. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9550. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  9551. }
  9552. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9554. private void InitCommandCollection() {
  9555. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9556. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9557. this._commandCollection[0].Connection = this.Connection;
  9558. this._commandCollection[0].CommandText = @"SELECT [ФИО студента], [Дата первого экзамена], [Наименование предмета первого экзамена], [Оценка первого экзамена], [Дата второго экзамена], [Наименование предмета второго экзамена], [Оценка второго экзамена], [Наименование предмета третьего экзамена], [Оценка третьего экзамена], [Дата третьего экзамена], [Средний балл студента за сесию] FROM dbo.[Запрос Студенты+Оценки]";
  9559. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9560. }
  9561. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9562. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9563. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9564. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9565. public virtual int Fill(РожковDataSet._Запрос_Студенты_ОценкиDataTable dataTable) {
  9566. this.Adapter.SelectCommand = this.CommandCollection[0];
  9567. if ((this.ClearBeforeFill == true)) {
  9568. dataTable.Clear();
  9569. }
  9570. int returnValue = this.Adapter.Fill(dataTable);
  9571. return returnValue;
  9572. }
  9573. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9575. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9576. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9577. public virtual РожковDataSet._Запрос_Студенты_ОценкиDataTable GetData() {
  9578. this.Adapter.SelectCommand = this.CommandCollection[0];
  9579. РожковDataSet._Запрос_Студенты_ОценкиDataTable dataTable = new РожковDataSet._Запрос_Студенты_ОценкиDataTable();
  9580. this.Adapter.Fill(dataTable);
  9581. return dataTable;
  9582. }
  9583. }
  9584. /// <summary>
  9585. ///Represents the connection and commands used to retrieve and save data.
  9586. ///</summary>
  9587. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9588. [global::System.ComponentModel.ToolboxItem(true)]
  9589. [global::System.ComponentModel.DataObjectAttribute(true)]
  9590. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9591. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9592. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9593. public partial class Запрос_Студенты_СпециальностиTableAdapter : global::System.ComponentModel.Component {
  9594. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9595. private global::System.Data.SqlClient.SqlConnection _connection;
  9596. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9597. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9598. private bool _clearBeforeFill;
  9599. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9600. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9601. public Запрос_Студенты_СпециальностиTableAdapter() {
  9602. this.ClearBeforeFill = true;
  9603. }
  9604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9606. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9607. get {
  9608. if ((this._adapter == null)) {
  9609. this.InitAdapter();
  9610. }
  9611. return this._adapter;
  9612. }
  9613. }
  9614. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9615. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9616. internal global::System.Data.SqlClient.SqlConnection Connection {
  9617. get {
  9618. if ((this._connection == null)) {
  9619. this.InitConnection();
  9620. }
  9621. return this._connection;
  9622. }
  9623. set {
  9624. this._connection = value;
  9625. if ((this.Adapter.InsertCommand != null)) {
  9626. this.Adapter.InsertCommand.Connection = value;
  9627. }
  9628. if ((this.Adapter.DeleteCommand != null)) {
  9629. this.Adapter.DeleteCommand.Connection = value;
  9630. }
  9631. if ((this.Adapter.UpdateCommand != null)) {
  9632. this.Adapter.UpdateCommand.Connection = value;
  9633. }
  9634. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9635. if ((this.CommandCollection[i] != null)) {
  9636. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9637. }
  9638. }
  9639. }
  9640. }
  9641. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9642. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9643. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9644. get {
  9645. return this._transaction;
  9646. }
  9647. set {
  9648. this._transaction = value;
  9649. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9650. this.CommandCollection[i].Transaction = this._transaction;
  9651. }
  9652. if (((this.Adapter != null)
  9653. && (this.Adapter.DeleteCommand != null))) {
  9654. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9655. }
  9656. if (((this.Adapter != null)
  9657. && (this.Adapter.InsertCommand != null))) {
  9658. this.Adapter.InsertCommand.Transaction = this._transaction;
  9659. }
  9660. if (((this.Adapter != null)
  9661. && (this.Adapter.UpdateCommand != null))) {
  9662. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9663. }
  9664. }
  9665. }
  9666. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9667. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9668. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9669. get {
  9670. if ((this._commandCollection == null)) {
  9671. this.InitCommandCollection();
  9672. }
  9673. return this._commandCollection;
  9674. }
  9675. }
  9676. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9677. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9678. public bool ClearBeforeFill {
  9679. get {
  9680. return this._clearBeforeFill;
  9681. }
  9682. set {
  9683. this._clearBeforeFill = value;
  9684. }
  9685. }
  9686. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9687. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9688. private void InitAdapter() {
  9689. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9690. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9691. tableMapping.SourceTable = "Table";
  9692. tableMapping.DataSetTable = "Запрос Студенты+Специальности";
  9693. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9694. tableMapping.ColumnMappings.Add("Пол", "Пол");
  9695. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9696. tableMapping.ColumnMappings.Add("Родители", "Родители");
  9697. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  9698. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  9699. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  9700. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  9701. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  9702. tableMapping.ColumnMappings.Add("Группа", "Группа");
  9703. tableMapping.ColumnMappings.Add("Курс", "Курс");
  9704. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  9705. tableMapping.ColumnMappings.Add("Название специальности", "Название специальности");
  9706. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  9707. this._adapter.TableMappings.Add(tableMapping);
  9708. }
  9709. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9710. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9711. private void InitConnection() {
  9712. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9713. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  9714. }
  9715. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9716. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9717. private void InitCommandCollection() {
  9718. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9719. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9720. this._commandCollection[0].Connection = this.Connection;
  9721. this._commandCollection[0].CommandText = "SELECT ФИО, Пол, [Дата рождения], Родители, Адрес, Телефон, [Паспортные данные], " +
  9722. "[Номер зачетки], [Дата поступления], Группа, Курс, [Очная форма обучения], [Назв" +
  9723. "ание специальности], [Описание специальности] FROM dbo.[Запрос Студенты+Специаль" +
  9724. "ности]";
  9725. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9726. }
  9727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9729. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9730. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9731. public virtual int Fill(РожковDataSet._Запрос_Студенты_СпециальностиDataTable dataTable) {
  9732. this.Adapter.SelectCommand = this.CommandCollection[0];
  9733. if ((this.ClearBeforeFill == true)) {
  9734. dataTable.Clear();
  9735. }
  9736. int returnValue = this.Adapter.Fill(dataTable);
  9737. return returnValue;
  9738. }
  9739. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9740. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9741. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9742. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9743. public virtual РожковDataSet._Запрос_Студенты_СпециальностиDataTable GetData() {
  9744. this.Adapter.SelectCommand = this.CommandCollection[0];
  9745. РожковDataSet._Запрос_Студенты_СпециальностиDataTable dataTable = new РожковDataSet._Запрос_Студенты_СпециальностиDataTable();
  9746. this.Adapter.Fill(dataTable);
  9747. return dataTable;
  9748. }
  9749. }
  9750. /// <summary>
  9751. ///Represents the connection and commands used to retrieve and save data.
  9752. ///</summary>
  9753. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9754. [global::System.ComponentModel.ToolboxItem(true)]
  9755. [global::System.ComponentModel.DataObjectAttribute(true)]
  9756. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9757. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9758. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9759. public partial class Фильтр_ММTableAdapter : global::System.ComponentModel.Component {
  9760. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9761. private global::System.Data.SqlClient.SqlConnection _connection;
  9762. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9763. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9764. private bool _clearBeforeFill;
  9765. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9766. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9767. public Фильтр_ММTableAdapter() {
  9768. this.ClearBeforeFill = true;
  9769. }
  9770. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9772. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9773. get {
  9774. if ((this._adapter == null)) {
  9775. this.InitAdapter();
  9776. }
  9777. return this._adapter;
  9778. }
  9779. }
  9780. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9781. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9782. internal global::System.Data.SqlClient.SqlConnection Connection {
  9783. get {
  9784. if ((this._connection == null)) {
  9785. this.InitConnection();
  9786. }
  9787. return this._connection;
  9788. }
  9789. set {
  9790. this._connection = value;
  9791. if ((this.Adapter.InsertCommand != null)) {
  9792. this.Adapter.InsertCommand.Connection = value;
  9793. }
  9794. if ((this.Adapter.DeleteCommand != null)) {
  9795. this.Adapter.DeleteCommand.Connection = value;
  9796. }
  9797. if ((this.Adapter.UpdateCommand != null)) {
  9798. this.Adapter.UpdateCommand.Connection = value;
  9799. }
  9800. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9801. if ((this.CommandCollection[i] != null)) {
  9802. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9803. }
  9804. }
  9805. }
  9806. }
  9807. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9808. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9809. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9810. get {
  9811. return this._transaction;
  9812. }
  9813. set {
  9814. this._transaction = value;
  9815. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9816. this.CommandCollection[i].Transaction = this._transaction;
  9817. }
  9818. if (((this.Adapter != null)
  9819. && (this.Adapter.DeleteCommand != null))) {
  9820. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9821. }
  9822. if (((this.Adapter != null)
  9823. && (this.Adapter.InsertCommand != null))) {
  9824. this.Adapter.InsertCommand.Transaction = this._transaction;
  9825. }
  9826. if (((this.Adapter != null)
  9827. && (this.Adapter.UpdateCommand != null))) {
  9828. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9829. }
  9830. }
  9831. }
  9832. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9833. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9834. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9835. get {
  9836. if ((this._commandCollection == null)) {
  9837. this.InitCommandCollection();
  9838. }
  9839. return this._commandCollection;
  9840. }
  9841. }
  9842. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9843. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9844. public bool ClearBeforeFill {
  9845. get {
  9846. return this._clearBeforeFill;
  9847. }
  9848. set {
  9849. this._clearBeforeFill = value;
  9850. }
  9851. }
  9852. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9853. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9854. private void InitAdapter() {
  9855. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9856. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9857. tableMapping.SourceTable = "Table";
  9858. tableMapping.DataSetTable = "Фильтр ММ";
  9859. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9860. tableMapping.ColumnMappings.Add("Пол", "Пол");
  9861. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9862. tableMapping.ColumnMappings.Add("Родители", "Родители");
  9863. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  9864. tableMapping.ColumnMappings.Add("Группа", "Группа");
  9865. tableMapping.ColumnMappings.Add("Курс", "Курс");
  9866. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  9867. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  9868. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  9869. tableMapping.ColumnMappings.Add("Название специальности", "Название специальности");
  9870. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  9871. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  9872. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  9873. this._adapter.TableMappings.Add(tableMapping);
  9874. }
  9875. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9876. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9877. private void InitConnection() {
  9878. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9879. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  9880. }
  9881. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9882. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9883. private void InitCommandCollection() {
  9884. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9885. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9886. this._commandCollection[0].Connection = this.Connection;
  9887. this._commandCollection[0].CommandText = "SELECT ФИО, Пол, [Дата рождения], Родители, Адрес, Группа, Курс, [Номер зачетки]," +
  9888. " [Паспортные данные], Телефон, [Название специальности], [Описание специальности" +
  9889. "], [Очная форма обучения], [Дата поступления] FROM dbo.[Фильтр ММ]";
  9890. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9891. }
  9892. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9893. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9894. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9895. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9896. public virtual int Fill(РожковDataSet.Фильтр_ММDataTable dataTable) {
  9897. this.Adapter.SelectCommand = this.CommandCollection[0];
  9898. if ((this.ClearBeforeFill == true)) {
  9899. dataTable.Clear();
  9900. }
  9901. int returnValue = this.Adapter.Fill(dataTable);
  9902. return returnValue;
  9903. }
  9904. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9905. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9906. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9907. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9908. public virtual РожковDataSet.Фильтр_ММDataTable GetData() {
  9909. this.Adapter.SelectCommand = this.CommandCollection[0];
  9910. РожковDataSet.Фильтр_ММDataTable dataTable = new РожковDataSet.Фильтр_ММDataTable();
  9911. this.Adapter.Fill(dataTable);
  9912. return dataTable;
  9913. }
  9914. }
  9915. /// <summary>
  9916. ///Represents the connection and commands used to retrieve and save data.
  9917. ///</summary>
  9918. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9919. [global::System.ComponentModel.ToolboxItem(true)]
  9920. [global::System.ComponentModel.DataObjectAttribute(true)]
  9921. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9922. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9923. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9924. public partial class Фильтр_ПИTableAdapter : global::System.ComponentModel.Component {
  9925. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9926. private global::System.Data.SqlClient.SqlConnection _connection;
  9927. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9928. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9929. private bool _clearBeforeFill;
  9930. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9931. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9932. public Фильтр_ПИTableAdapter() {
  9933. this.ClearBeforeFill = true;
  9934. }
  9935. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9936. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9937. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9938. get {
  9939. if ((this._adapter == null)) {
  9940. this.InitAdapter();
  9941. }
  9942. return this._adapter;
  9943. }
  9944. }
  9945. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9946. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9947. internal global::System.Data.SqlClient.SqlConnection Connection {
  9948. get {
  9949. if ((this._connection == null)) {
  9950. this.InitConnection();
  9951. }
  9952. return this._connection;
  9953. }
  9954. set {
  9955. this._connection = value;
  9956. if ((this.Adapter.InsertCommand != null)) {
  9957. this.Adapter.InsertCommand.Connection = value;
  9958. }
  9959. if ((this.Adapter.DeleteCommand != null)) {
  9960. this.Adapter.DeleteCommand.Connection = value;
  9961. }
  9962. if ((this.Adapter.UpdateCommand != null)) {
  9963. this.Adapter.UpdateCommand.Connection = value;
  9964. }
  9965. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9966. if ((this.CommandCollection[i] != null)) {
  9967. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9968. }
  9969. }
  9970. }
  9971. }
  9972. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9973. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9974. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9975. get {
  9976. return this._transaction;
  9977. }
  9978. set {
  9979. this._transaction = value;
  9980. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9981. this.CommandCollection[i].Transaction = this._transaction;
  9982. }
  9983. if (((this.Adapter != null)
  9984. && (this.Adapter.DeleteCommand != null))) {
  9985. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9986. }
  9987. if (((this.Adapter != null)
  9988. && (this.Adapter.InsertCommand != null))) {
  9989. this.Adapter.InsertCommand.Transaction = this._transaction;
  9990. }
  9991. if (((this.Adapter != null)
  9992. && (this.Adapter.UpdateCommand != null))) {
  9993. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9994. }
  9995. }
  9996. }
  9997. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9998. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9999. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  10000. get {
  10001. if ((this._commandCollection == null)) {
  10002. this.InitCommandCollection();
  10003. }
  10004. return this._commandCollection;
  10005. }
  10006. }
  10007. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10008. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10009. public bool ClearBeforeFill {
  10010. get {
  10011. return this._clearBeforeFill;
  10012. }
  10013. set {
  10014. this._clearBeforeFill = value;
  10015. }
  10016. }
  10017. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10018. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10019. private void InitAdapter() {
  10020. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  10021. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  10022. tableMapping.SourceTable = "Table";
  10023. tableMapping.DataSetTable = "Фильтр ПИ";
  10024. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  10025. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  10026. tableMapping.ColumnMappings.Add("Родители", "Родители");
  10027. tableMapping.ColumnMappings.Add("Пол", "Пол");
  10028. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  10029. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  10030. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  10031. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  10032. tableMapping.ColumnMappings.Add("Группа", "Группа");
  10033. tableMapping.ColumnMappings.Add("Курс", "Курс");
  10034. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  10035. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  10036. tableMapping.ColumnMappings.Add("Название специальности", "Название специальности");
  10037. tableMapping.ColumnMappings.Add("Описание специальности", "Описание специальности");
  10038. this._adapter.TableMappings.Add(tableMapping);
  10039. }
  10040. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10041. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10042. private void InitConnection() {
  10043. this._connection = new global::System.Data.SqlClient.SqlConnection();
  10044. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  10045. }
  10046. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10048. private void InitCommandCollection() {
  10049. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  10050. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  10051. this._commandCollection[0].Connection = this.Connection;
  10052. this._commandCollection[0].CommandText = "SELECT ФИО, [Дата рождения], Родители, Пол, Адрес, Телефон, [Дата поступления], [" +
  10053. "Номер зачетки], Группа, Курс, [Очная форма обучения], [Паспортные данные], [Назв" +
  10054. "ание специальности], [Описание специальности] FROM dbo.[Фильтр ПИ]";
  10055. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  10056. }
  10057. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10058. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10059. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10060. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  10061. public virtual int Fill(РожковDataSet.Фильтр_ПИDataTable dataTable) {
  10062. this.Adapter.SelectCommand = this.CommandCollection[0];
  10063. if ((this.ClearBeforeFill == true)) {
  10064. dataTable.Clear();
  10065. }
  10066. int returnValue = this.Adapter.Fill(dataTable);
  10067. return returnValue;
  10068. }
  10069. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10070. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10071. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10072. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  10073. public virtual РожковDataSet.Фильтр_ПИDataTable GetData() {
  10074. this.Adapter.SelectCommand = this.CommandCollection[0];
  10075. РожковDataSet.Фильтр_ПИDataTable dataTable = new РожковDataSet.Фильтр_ПИDataTable();
  10076. this.Adapter.Fill(dataTable);
  10077. return dataTable;
  10078. }
  10079. }
  10080. /// <summary>
  10081. ///Represents the connection and commands used to retrieve and save data.
  10082. ///</summary>
  10083. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  10084. [global::System.ComponentModel.ToolboxItem(true)]
  10085. [global::System.ComponentModel.DataObjectAttribute(true)]
  10086. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  10087. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  10088. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10089. public partial class Отображение_студентов_по_возрастуTableAdapter : global::System.ComponentModel.Component {
  10090. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  10091. private global::System.Data.SqlClient.SqlConnection _connection;
  10092. private global::System.Data.SqlClient.SqlTransaction _transaction;
  10093. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  10094. private bool _clearBeforeFill;
  10095. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10096. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10097. public Отображение_студентов_по_возрастуTableAdapter() {
  10098. this.ClearBeforeFill = true;
  10099. }
  10100. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10101. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10102. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  10103. get {
  10104. if ((this._adapter == null)) {
  10105. this.InitAdapter();
  10106. }
  10107. return this._adapter;
  10108. }
  10109. }
  10110. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10111. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10112. internal global::System.Data.SqlClient.SqlConnection Connection {
  10113. get {
  10114. if ((this._connection == null)) {
  10115. this.InitConnection();
  10116. }
  10117. return this._connection;
  10118. }
  10119. set {
  10120. this._connection = value;
  10121. if ((this.Adapter.InsertCommand != null)) {
  10122. this.Adapter.InsertCommand.Connection = value;
  10123. }
  10124. if ((this.Adapter.DeleteCommand != null)) {
  10125. this.Adapter.DeleteCommand.Connection = value;
  10126. }
  10127. if ((this.Adapter.UpdateCommand != null)) {
  10128. this.Adapter.UpdateCommand.Connection = value;
  10129. }
  10130. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10131. if ((this.CommandCollection[i] != null)) {
  10132. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  10133. }
  10134. }
  10135. }
  10136. }
  10137. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10138. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10139. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  10140. get {
  10141. return this._transaction;
  10142. }
  10143. set {
  10144. this._transaction = value;
  10145. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10146. this.CommandCollection[i].Transaction = this._transaction;
  10147. }
  10148. if (((this.Adapter != null)
  10149. && (this.Adapter.DeleteCommand != null))) {
  10150. this.Adapter.DeleteCommand.Transaction = this._transaction;
  10151. }
  10152. if (((this.Adapter != null)
  10153. && (this.Adapter.InsertCommand != null))) {
  10154. this.Adapter.InsertCommand.Transaction = this._transaction;
  10155. }
  10156. if (((this.Adapter != null)
  10157. && (this.Adapter.UpdateCommand != null))) {
  10158. this.Adapter.UpdateCommand.Transaction = this._transaction;
  10159. }
  10160. }
  10161. }
  10162. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10163. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10164. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  10165. get {
  10166. if ((this._commandCollection == null)) {
  10167. this.InitCommandCollection();
  10168. }
  10169. return this._commandCollection;
  10170. }
  10171. }
  10172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10173. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10174. public bool ClearBeforeFill {
  10175. get {
  10176. return this._clearBeforeFill;
  10177. }
  10178. set {
  10179. this._clearBeforeFill = value;
  10180. }
  10181. }
  10182. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10183. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10184. private void InitAdapter() {
  10185. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  10186. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  10187. tableMapping.SourceTable = "Table";
  10188. tableMapping.DataSetTable = "Отображение студентов по возрасту";
  10189. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  10190. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  10191. tableMapping.ColumnMappings.Add("Возраст", "Возраст");
  10192. this._adapter.TableMappings.Add(tableMapping);
  10193. }
  10194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10196. private void InitConnection() {
  10197. this._connection = new global::System.Data.SqlClient.SqlConnection();
  10198. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  10199. }
  10200. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10201. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10202. private void InitCommandCollection() {
  10203. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  10204. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  10205. this._commandCollection[0].Connection = this.Connection;
  10206. this._commandCollection[0].CommandText = "dbo.[Отображение студентов по возрасту]";
  10207. this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
  10208. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10209. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Age", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10210. }
  10211. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10212. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10213. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10214. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  10215. public virtual int Fill(РожковDataSet.Отображение_студентов_по_возрастуDataTable dataTable, global::System.Nullable<int> Age) {
  10216. this.Adapter.SelectCommand = this.CommandCollection[0];
  10217. if ((Age.HasValue == true)) {
  10218. this.Adapter.SelectCommand.Parameters[1].Value = ((int)(Age.Value));
  10219. }
  10220. else {
  10221. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10222. }
  10223. if ((this.ClearBeforeFill == true)) {
  10224. dataTable.Clear();
  10225. }
  10226. int returnValue = this.Adapter.Fill(dataTable);
  10227. return returnValue;
  10228. }
  10229. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10230. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10231. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10232. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  10233. public virtual РожковDataSet.Отображение_студентов_по_возрастуDataTable GetData(global::System.Nullable<int> Age) {
  10234. this.Adapter.SelectCommand = this.CommandCollection[0];
  10235. if ((Age.HasValue == true)) {
  10236. this.Adapter.SelectCommand.Parameters[1].Value = ((int)(Age.Value));
  10237. }
  10238. else {
  10239. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10240. }
  10241. РожковDataSet.Отображение_студентов_по_возрастуDataTable dataTable = new РожковDataSet.Отображение_студентов_по_возрастуDataTable();
  10242. this.Adapter.Fill(dataTable);
  10243. return dataTable;
  10244. }
  10245. }
  10246. /// <summary>
  10247. ///Represents the connection and commands used to retrieve and save data.
  10248. ///</summary>
  10249. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  10250. [global::System.ComponentModel.ToolboxItem(true)]
  10251. [global::System.ComponentModel.DataObjectAttribute(true)]
  10252. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  10253. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  10254. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10255. public partial class Отображение_студентов_по_среднему_баллуTableAdapter : global::System.ComponentModel.Component {
  10256. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  10257. private global::System.Data.SqlClient.SqlConnection _connection;
  10258. private global::System.Data.SqlClient.SqlTransaction _transaction;
  10259. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  10260. private bool _clearBeforeFill;
  10261. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10262. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10263. public Отображение_студентов_по_среднему_баллуTableAdapter() {
  10264. this.ClearBeforeFill = true;
  10265. }
  10266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10267. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10268. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  10269. get {
  10270. if ((this._adapter == null)) {
  10271. this.InitAdapter();
  10272. }
  10273. return this._adapter;
  10274. }
  10275. }
  10276. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10277. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10278. internal global::System.Data.SqlClient.SqlConnection Connection {
  10279. get {
  10280. if ((this._connection == null)) {
  10281. this.InitConnection();
  10282. }
  10283. return this._connection;
  10284. }
  10285. set {
  10286. this._connection = value;
  10287. if ((this.Adapter.InsertCommand != null)) {
  10288. this.Adapter.InsertCommand.Connection = value;
  10289. }
  10290. if ((this.Adapter.DeleteCommand != null)) {
  10291. this.Adapter.DeleteCommand.Connection = value;
  10292. }
  10293. if ((this.Adapter.UpdateCommand != null)) {
  10294. this.Adapter.UpdateCommand.Connection = value;
  10295. }
  10296. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10297. if ((this.CommandCollection[i] != null)) {
  10298. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  10299. }
  10300. }
  10301. }
  10302. }
  10303. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10304. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10305. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  10306. get {
  10307. return this._transaction;
  10308. }
  10309. set {
  10310. this._transaction = value;
  10311. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10312. this.CommandCollection[i].Transaction = this._transaction;
  10313. }
  10314. if (((this.Adapter != null)
  10315. && (this.Adapter.DeleteCommand != null))) {
  10316. this.Adapter.DeleteCommand.Transaction = this._transaction;
  10317. }
  10318. if (((this.Adapter != null)
  10319. && (this.Adapter.InsertCommand != null))) {
  10320. this.Adapter.InsertCommand.Transaction = this._transaction;
  10321. }
  10322. if (((this.Adapter != null)
  10323. && (this.Adapter.UpdateCommand != null))) {
  10324. this.Adapter.UpdateCommand.Transaction = this._transaction;
  10325. }
  10326. }
  10327. }
  10328. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10329. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10330. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  10331. get {
  10332. if ((this._commandCollection == null)) {
  10333. this.InitCommandCollection();
  10334. }
  10335. return this._commandCollection;
  10336. }
  10337. }
  10338. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10339. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10340. public bool ClearBeforeFill {
  10341. get {
  10342. return this._clearBeforeFill;
  10343. }
  10344. set {
  10345. this._clearBeforeFill = value;
  10346. }
  10347. }
  10348. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10349. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10350. private void InitAdapter() {
  10351. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  10352. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  10353. tableMapping.SourceTable = "Table";
  10354. tableMapping.DataSetTable = "Отображение студентов по среднему баллу";
  10355. tableMapping.ColumnMappings.Add("ФИО студента", "ФИО студента");
  10356. tableMapping.ColumnMappings.Add("Дата первого экзамена", "Дата первого экзамена");
  10357. tableMapping.ColumnMappings.Add("Наименование предмета первого экзамена", "Наименование предмета первого экзамена");
  10358. tableMapping.ColumnMappings.Add("Оценка первого экзамена", "Оценка первого экзамена");
  10359. tableMapping.ColumnMappings.Add("Дата второго экзамена", "Дата второго экзамена");
  10360. tableMapping.ColumnMappings.Add("Наименование предмета второго экзамена", "Наименование предмета второго экзамена");
  10361. tableMapping.ColumnMappings.Add("Оценка второго экзамена", "Оценка второго экзамена");
  10362. tableMapping.ColumnMappings.Add("Наименование предмета третьего экзамена", "Наименование предмета третьего экзамена");
  10363. tableMapping.ColumnMappings.Add("Оценка третьего экзамена", "Оценка третьего экзамена");
  10364. tableMapping.ColumnMappings.Add("Дата третьего экзамена", "Дата третьего экзамена");
  10365. tableMapping.ColumnMappings.Add("Средний балл студента за сесию", "Средний балл студента за сесию");
  10366. this._adapter.TableMappings.Add(tableMapping);
  10367. }
  10368. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10369. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10370. private void InitConnection() {
  10371. this._connection = new global::System.Data.SqlClient.SqlConnection();
  10372. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  10373. }
  10374. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10375. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10376. private void InitCommandCollection() {
  10377. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  10378. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  10379. this._commandCollection[0].Connection = this.Connection;
  10380. this._commandCollection[0].CommandText = "dbo.[Отображение студентов по среднему баллу]";
  10381. this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
  10382. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10383. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Grade", global::System.Data.SqlDbType.Real, 4, global::System.Data.ParameterDirection.Input, 24, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10384. }
  10385. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10386. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10387. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10388. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  10389. public virtual int Fill(РожковDataSet.Отображение_студентов_по_среднему_баллуDataTable dataTable, global::System.Nullable<float> Grade) {
  10390. this.Adapter.SelectCommand = this.CommandCollection[0];
  10391. if ((Grade.HasValue == true)) {
  10392. this.Adapter.SelectCommand.Parameters[1].Value = ((float)(Grade.Value));
  10393. }
  10394. else {
  10395. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10396. }
  10397. if ((this.ClearBeforeFill == true)) {
  10398. dataTable.Clear();
  10399. }
  10400. int returnValue = this.Adapter.Fill(dataTable);
  10401. return returnValue;
  10402. }
  10403. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10404. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10405. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10406. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  10407. public virtual РожковDataSet.Отображение_студентов_по_среднему_баллуDataTable GetData(global::System.Nullable<float> Grade) {
  10408. this.Adapter.SelectCommand = this.CommandCollection[0];
  10409. if ((Grade.HasValue == true)) {
  10410. this.Adapter.SelectCommand.Parameters[1].Value = ((float)(Grade.Value));
  10411. }
  10412. else {
  10413. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10414. }
  10415. РожковDataSet.Отображение_студентов_по_среднему_баллуDataTable dataTable = new РожковDataSet.Отображение_студентов_по_среднему_баллуDataTable();
  10416. this.Adapter.Fill(dataTable);
  10417. return dataTable;
  10418. }
  10419. }
  10420. /// <summary>
  10421. ///Represents the connection and commands used to retrieve and save data.
  10422. ///</summary>
  10423. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  10424. [global::System.ComponentModel.ToolboxItem(true)]
  10425. [global::System.ComponentModel.DataObjectAttribute(true)]
  10426. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  10427. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  10428. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10429. public partial class Отображение_студентов_по_ФИОTableAdapter : global::System.ComponentModel.Component {
  10430. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  10431. private global::System.Data.SqlClient.SqlConnection _connection;
  10432. private global::System.Data.SqlClient.SqlTransaction _transaction;
  10433. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  10434. private bool _clearBeforeFill;
  10435. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10436. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10437. public Отображение_студентов_по_ФИОTableAdapter() {
  10438. this.ClearBeforeFill = true;
  10439. }
  10440. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10441. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10442. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  10443. get {
  10444. if ((this._adapter == null)) {
  10445. this.InitAdapter();
  10446. }
  10447. return this._adapter;
  10448. }
  10449. }
  10450. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10451. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10452. internal global::System.Data.SqlClient.SqlConnection Connection {
  10453. get {
  10454. if ((this._connection == null)) {
  10455. this.InitConnection();
  10456. }
  10457. return this._connection;
  10458. }
  10459. set {
  10460. this._connection = value;
  10461. if ((this.Adapter.InsertCommand != null)) {
  10462. this.Adapter.InsertCommand.Connection = value;
  10463. }
  10464. if ((this.Adapter.DeleteCommand != null)) {
  10465. this.Adapter.DeleteCommand.Connection = value;
  10466. }
  10467. if ((this.Adapter.UpdateCommand != null)) {
  10468. this.Adapter.UpdateCommand.Connection = value;
  10469. }
  10470. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10471. if ((this.CommandCollection[i] != null)) {
  10472. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  10473. }
  10474. }
  10475. }
  10476. }
  10477. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10478. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10479. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  10480. get {
  10481. return this._transaction;
  10482. }
  10483. set {
  10484. this._transaction = value;
  10485. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10486. this.CommandCollection[i].Transaction = this._transaction;
  10487. }
  10488. if (((this.Adapter != null)
  10489. && (this.Adapter.DeleteCommand != null))) {
  10490. this.Adapter.DeleteCommand.Transaction = this._transaction;
  10491. }
  10492. if (((this.Adapter != null)
  10493. && (this.Adapter.InsertCommand != null))) {
  10494. this.Adapter.InsertCommand.Transaction = this._transaction;
  10495. }
  10496. if (((this.Adapter != null)
  10497. && (this.Adapter.UpdateCommand != null))) {
  10498. this.Adapter.UpdateCommand.Transaction = this._transaction;
  10499. }
  10500. }
  10501. }
  10502. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10503. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10504. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  10505. get {
  10506. if ((this._commandCollection == null)) {
  10507. this.InitCommandCollection();
  10508. }
  10509. return this._commandCollection;
  10510. }
  10511. }
  10512. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10513. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10514. public bool ClearBeforeFill {
  10515. get {
  10516. return this._clearBeforeFill;
  10517. }
  10518. set {
  10519. this._clearBeforeFill = value;
  10520. }
  10521. }
  10522. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10523. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10524. private void InitAdapter() {
  10525. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  10526. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  10527. tableMapping.SourceTable = "Table";
  10528. tableMapping.DataSetTable = "Отображение студентов по ФИО";
  10529. tableMapping.ColumnMappings.Add("Код студента", "Код студента");
  10530. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  10531. tableMapping.ColumnMappings.Add("Пол", "Пол");
  10532. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  10533. tableMapping.ColumnMappings.Add("Родители", "Родители");
  10534. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  10535. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  10536. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  10537. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  10538. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  10539. tableMapping.ColumnMappings.Add("Группа", "Группа");
  10540. tableMapping.ColumnMappings.Add("Курс", "Курс");
  10541. tableMapping.ColumnMappings.Add("Код специальности", "Код специальности");
  10542. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  10543. this._adapter.TableMappings.Add(tableMapping);
  10544. }
  10545. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10547. private void InitConnection() {
  10548. this._connection = new global::System.Data.SqlClient.SqlConnection();
  10549. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  10550. }
  10551. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10552. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10553. private void InitCommandCollection() {
  10554. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  10555. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  10556. this._commandCollection[0].Connection = this.Connection;
  10557. this._commandCollection[0].CommandText = "dbo.[Отображение студентов по ФИО]";
  10558. this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
  10559. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10560. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FIO", global::System.Data.SqlDbType.VarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10561. }
  10562. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10563. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10564. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10565. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  10566. public virtual int Fill(РожковDataSet.Отображение_студентов_по_ФИОDataTable dataTable, string FIO) {
  10567. this.Adapter.SelectCommand = this.CommandCollection[0];
  10568. if ((FIO == null)) {
  10569. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10570. }
  10571. else {
  10572. this.Adapter.SelectCommand.Parameters[1].Value = ((string)(FIO));
  10573. }
  10574. if ((this.ClearBeforeFill == true)) {
  10575. dataTable.Clear();
  10576. }
  10577. int returnValue = this.Adapter.Fill(dataTable);
  10578. return returnValue;
  10579. }
  10580. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10581. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10582. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10583. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  10584. public virtual РожковDataSet.Отображение_студентов_по_ФИОDataTable GetData(string FIO) {
  10585. this.Adapter.SelectCommand = this.CommandCollection[0];
  10586. if ((FIO == null)) {
  10587. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10588. }
  10589. else {
  10590. this.Adapter.SelectCommand.Parameters[1].Value = ((string)(FIO));
  10591. }
  10592. РожковDataSet.Отображение_студентов_по_ФИОDataTable dataTable = new РожковDataSet.Отображение_студентов_по_ФИОDataTable();
  10593. this.Adapter.Fill(dataTable);
  10594. return dataTable;
  10595. }
  10596. }
  10597. /// <summary>
  10598. ///Represents the connection and commands used to retrieve and save data.
  10599. ///</summary>
  10600. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  10601. [global::System.ComponentModel.ToolboxItem(true)]
  10602. [global::System.ComponentModel.DataObjectAttribute(true)]
  10603. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  10604. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  10605. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10606. public partial class Среднее_трёх_величинTableAdapter : global::System.ComponentModel.Component {
  10607. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  10608. private global::System.Data.SqlClient.SqlConnection _connection;
  10609. private global::System.Data.SqlClient.SqlTransaction _transaction;
  10610. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  10611. private bool _clearBeforeFill;
  10612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10614. public Среднее_трёх_величинTableAdapter() {
  10615. this.ClearBeforeFill = true;
  10616. }
  10617. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10618. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10619. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  10620. get {
  10621. if ((this._adapter == null)) {
  10622. this.InitAdapter();
  10623. }
  10624. return this._adapter;
  10625. }
  10626. }
  10627. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10628. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10629. internal global::System.Data.SqlClient.SqlConnection Connection {
  10630. get {
  10631. if ((this._connection == null)) {
  10632. this.InitConnection();
  10633. }
  10634. return this._connection;
  10635. }
  10636. set {
  10637. this._connection = value;
  10638. if ((this.Adapter.InsertCommand != null)) {
  10639. this.Adapter.InsertCommand.Connection = value;
  10640. }
  10641. if ((this.Adapter.DeleteCommand != null)) {
  10642. this.Adapter.DeleteCommand.Connection = value;
  10643. }
  10644. if ((this.Adapter.UpdateCommand != null)) {
  10645. this.Adapter.UpdateCommand.Connection = value;
  10646. }
  10647. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10648. if ((this.CommandCollection[i] != null)) {
  10649. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  10650. }
  10651. }
  10652. }
  10653. }
  10654. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10655. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10656. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  10657. get {
  10658. return this._transaction;
  10659. }
  10660. set {
  10661. this._transaction = value;
  10662. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10663. this.CommandCollection[i].Transaction = this._transaction;
  10664. }
  10665. if (((this.Adapter != null)
  10666. && (this.Adapter.DeleteCommand != null))) {
  10667. this.Adapter.DeleteCommand.Transaction = this._transaction;
  10668. }
  10669. if (((this.Adapter != null)
  10670. && (this.Adapter.InsertCommand != null))) {
  10671. this.Adapter.InsertCommand.Transaction = this._transaction;
  10672. }
  10673. if (((this.Adapter != null)
  10674. && (this.Adapter.UpdateCommand != null))) {
  10675. this.Adapter.UpdateCommand.Transaction = this._transaction;
  10676. }
  10677. }
  10678. }
  10679. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10680. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10681. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  10682. get {
  10683. if ((this._commandCollection == null)) {
  10684. this.InitCommandCollection();
  10685. }
  10686. return this._commandCollection;
  10687. }
  10688. }
  10689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10690. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10691. public bool ClearBeforeFill {
  10692. get {
  10693. return this._clearBeforeFill;
  10694. }
  10695. set {
  10696. this._clearBeforeFill = value;
  10697. }
  10698. }
  10699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10701. private void InitAdapter() {
  10702. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  10703. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  10704. tableMapping.SourceTable = "Table";
  10705. tableMapping.DataSetTable = "Среднее трёх величин";
  10706. tableMapping.ColumnMappings.Add("Среднее значение", "Среднее значение");
  10707. this._adapter.TableMappings.Add(tableMapping);
  10708. }
  10709. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10710. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10711. private void InitConnection() {
  10712. this._connection = new global::System.Data.SqlClient.SqlConnection();
  10713. this._connection.ConnectionString = global::WindowsFormsApp3.Properties.Settings.Default.РожковConnectionString;
  10714. }
  10715. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10716. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10717. private void InitCommandCollection() {
  10718. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  10719. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  10720. this._commandCollection[0].Connection = this.Connection;
  10721. this._commandCollection[0].CommandText = "dbo.[Среднее трёх величин]";
  10722. this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
  10723. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10724. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Value1", global::System.Data.SqlDbType.Real, 4, global::System.Data.ParameterDirection.Input, 24, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10725. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Vaiue2", global::System.Data.SqlDbType.Real, 4, global::System.Data.ParameterDirection.Input, 24, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10726. this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@value3", global::System.Data.SqlDbType.Real, 4, global::System.Data.ParameterDirection.Input, 24, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
  10727. }
  10728. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10729. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10730. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10731. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  10732. public virtual int Fill(РожковDataSet.Среднее_трёх_величинDataTable dataTable, global::System.Nullable<float> Value1, global::System.Nullable<float> Vaiue2, global::System.Nullable<float> value3) {
  10733. this.Adapter.SelectCommand = this.CommandCollection[0];
  10734. if ((Value1.HasValue == true)) {
  10735. this.Adapter.SelectCommand.Parameters[1].Value = ((float)(Value1.Value));
  10736. }
  10737. else {
  10738. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10739. }
  10740. if ((Vaiue2.HasValue == true)) {
  10741. this.Adapter.SelectCommand.Parameters[2].Value = ((float)(Vaiue2.Value));
  10742. }
  10743. else {
  10744. this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
  10745. }
  10746. if ((value3.HasValue == true)) {
  10747. this.Adapter.SelectCommand.Parameters[3].Value = ((float)(value3.Value));
  10748. }
  10749. else {
  10750. this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
  10751. }
  10752. if ((this.ClearBeforeFill == true)) {
  10753. dataTable.Clear();
  10754. }
  10755. int returnValue = this.Adapter.Fill(dataTable);
  10756. return returnValue;
  10757. }
  10758. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10759. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10760. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10761. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  10762. public virtual РожковDataSet.Среднее_трёх_величинDataTable GetData(global::System.Nullable<float> Value1, global::System.Nullable<float> Vaiue2, global::System.Nullable<float> value3) {
  10763. this.Adapter.SelectCommand = this.CommandCollection[0];
  10764. if ((Value1.HasValue == true)) {
  10765. this.Adapter.SelectCommand.Parameters[1].Value = ((float)(Value1.Value));
  10766. }
  10767. else {
  10768. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10769. }
  10770. if ((Vaiue2.HasValue == true)) {
  10771. this.Adapter.SelectCommand.Parameters[2].Value = ((float)(Vaiue2.Value));
  10772. }
  10773. else {
  10774. this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
  10775. }
  10776. if ((value3.HasValue == true)) {
  10777. this.Adapter.SelectCommand.Parameters[3].Value = ((float)(value3.Value));
  10778. }
  10779. else {
  10780. this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
  10781. }
  10782. РожковDataSet.Среднее_трёх_величинDataTable dataTable = new РожковDataSet.Среднее_трёх_величинDataTable();
  10783. this.Adapter.Fill(dataTable);
  10784. return dataTable;
  10785. }
  10786. }
  10787. /// <summary>
  10788. ///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
  10789. ///</summary>
  10790. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  10791. [global::System.ComponentModel.ToolboxItem(true)]
  10792. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerDesigner, Microsoft.VSD" +
  10793. "esigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  10794. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapterManager")]
  10795. public partial class TableAdapterManager : global::System.ComponentModel.Component {
  10796. private UpdateOrderOption _updateOrder;
  10797. private ОценкиTableAdapter _оценкиTableAdapter;
  10798. private ПредметыTableAdapter _предметыTableAdapter;
  10799. private СпециальностиTableAdapter _специальностиTableAdapter;
  10800. private СтудентыTableAdapter _студентыTableAdapter;
  10801. private bool _backupDataSetBeforeUpdate;
  10802. private global::System.Data.IDbConnection _connection;
  10803. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10804. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10805. public UpdateOrderOption UpdateOrder {
  10806. get {
  10807. return this._updateOrder;
  10808. }
  10809. set {
  10810. this._updateOrder = value;
  10811. }
  10812. }
  10813. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10814. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10815. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10816. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10817. "a", "System.Drawing.Design.UITypeEditor")]
  10818. public ОценкиTableAdapter ОценкиTableAdapter {
  10819. get {
  10820. return this._оценкиTableAdapter;
  10821. }
  10822. set {
  10823. this._оценкиTableAdapter = value;
  10824. }
  10825. }
  10826. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10827. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10828. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10829. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10830. "a", "System.Drawing.Design.UITypeEditor")]
  10831. public ПредметыTableAdapter ПредметыTableAdapter {
  10832. get {
  10833. return this._предметыTableAdapter;
  10834. }
  10835. set {
  10836. this._предметыTableAdapter = value;
  10837. }
  10838. }
  10839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10841. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10842. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10843. "a", "System.Drawing.Design.UITypeEditor")]
  10844. public СпециальностиTableAdapter СпециальностиTableAdapter {
  10845. get {
  10846. return this._специальностиTableAdapter;
  10847. }
  10848. set {
  10849. this._специальностиTableAdapter = value;
  10850. }
  10851. }
  10852. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10853. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10854. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10855. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10856. "a", "System.Drawing.Design.UITypeEditor")]
  10857. public СтудентыTableAdapter СтудентыTableAdapter {
  10858. get {
  10859. return this._студентыTableAdapter;
  10860. }
  10861. set {
  10862. this._студентыTableAdapter = value;
  10863. }
  10864. }
  10865. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10866. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10867. public bool BackupDataSetBeforeUpdate {
  10868. get {
  10869. return this._backupDataSetBeforeUpdate;
  10870. }
  10871. set {
  10872. this._backupDataSetBeforeUpdate = value;
  10873. }
  10874. }
  10875. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10876. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10877. [global::System.ComponentModel.Browsable(false)]
  10878. public global::System.Data.IDbConnection Connection {
  10879. get {
  10880. if ((this._connection != null)) {
  10881. return this._connection;
  10882. }
  10883. if (((this._оценкиTableAdapter != null)
  10884. && (this._оценкиTableAdapter.Connection != null))) {
  10885. return this._оценкиTableAdapter.Connection;
  10886. }
  10887. if (((this._предметыTableAdapter != null)
  10888. && (this._предметыTableAdapter.Connection != null))) {
  10889. return this._предметыTableAdapter.Connection;
  10890. }
  10891. if (((this._специальностиTableAdapter != null)
  10892. && (this._специальностиTableAdapter.Connection != null))) {
  10893. return this._специальностиTableAdapter.Connection;
  10894. }
  10895. if (((this._студентыTableAdapter != null)
  10896. && (this._студентыTableAdapter.Connection != null))) {
  10897. return this._студентыTableAdapter.Connection;
  10898. }
  10899. return null;
  10900. }
  10901. set {
  10902. this._connection = value;
  10903. }
  10904. }
  10905. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10906. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10907. [global::System.ComponentModel.Browsable(false)]
  10908. public int TableAdapterInstanceCount {
  10909. get {
  10910. int count = 0;
  10911. if ((this._оценкиTableAdapter != null)) {
  10912. count = (count + 1);
  10913. }
  10914. if ((this._предметыTableAdapter != null)) {
  10915. count = (count + 1);
  10916. }
  10917. if ((this._специальностиTableAdapter != null)) {
  10918. count = (count + 1);
  10919. }
  10920. if ((this._студентыTableAdapter != null)) {
  10921. count = (count + 1);
  10922. }
  10923. return count;
  10924. }
  10925. }
  10926. /// <summary>
  10927. ///Update rows in top-down order.
  10928. ///</summary>
  10929. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10930. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10931. private int UpdateUpdatedRows(РожковDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  10932. int result = 0;
  10933. if ((this._оценкиTableAdapter != null)) {
  10934. global::System.Data.DataRow[] updatedRows = dataSet.Оценки.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10935. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10936. if (((updatedRows != null)
  10937. && (0 < updatedRows.Length))) {
  10938. result = (result + this._оценкиTableAdapter.Update(updatedRows));
  10939. allChangedRows.AddRange(updatedRows);
  10940. }
  10941. }
  10942. if ((this._предметыTableAdapter != null)) {
  10943. global::System.Data.DataRow[] updatedRows = dataSet.Предметы.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10944. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10945. if (((updatedRows != null)
  10946. && (0 < updatedRows.Length))) {
  10947. result = (result + this._предметыTableAdapter.Update(updatedRows));
  10948. allChangedRows.AddRange(updatedRows);
  10949. }
  10950. }
  10951. if ((this._специальностиTableAdapter != null)) {
  10952. global::System.Data.DataRow[] updatedRows = dataSet.Специальности.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10953. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10954. if (((updatedRows != null)
  10955. && (0 < updatedRows.Length))) {
  10956. result = (result + this._специальностиTableAdapter.Update(updatedRows));
  10957. allChangedRows.AddRange(updatedRows);
  10958. }
  10959. }
  10960. if ((this._студентыTableAdapter != null)) {
  10961. global::System.Data.DataRow[] updatedRows = dataSet.Студенты.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10962. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10963. if (((updatedRows != null)
  10964. && (0 < updatedRows.Length))) {
  10965. result = (result + this._студентыTableAdapter.Update(updatedRows));
  10966. allChangedRows.AddRange(updatedRows);
  10967. }
  10968. }
  10969. return result;
  10970. }
  10971. /// <summary>
  10972. ///Insert rows in top-down order.
  10973. ///</summary>
  10974. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10975. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10976. private int UpdateInsertedRows(РожковDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  10977. int result = 0;
  10978. if ((this._оценкиTableAdapter != null)) {
  10979. global::System.Data.DataRow[] addedRows = dataSet.Оценки.Select(null, null, global::System.Data.DataViewRowState.Added);
  10980. if (((addedRows != null)
  10981. && (0 < addedRows.Length))) {
  10982. result = (result + this._оценкиTableAdapter.Update(addedRows));
  10983. allAddedRows.AddRange(addedRows);
  10984. }
  10985. }
  10986. if ((this._предметыTableAdapter != null)) {
  10987. global::System.Data.DataRow[] addedRows = dataSet.Предметы.Select(null, null, global::System.Data.DataViewRowState.Added);
  10988. if (((addedRows != null)
  10989. && (0 < addedRows.Length))) {
  10990. result = (result + this._предметыTableAdapter.Update(addedRows));
  10991. allAddedRows.AddRange(addedRows);
  10992. }
  10993. }
  10994. if ((this._специальностиTableAdapter != null)) {
  10995. global::System.Data.DataRow[] addedRows = dataSet.Специальности.Select(null, null, global::System.Data.DataViewRowState.Added);
  10996. if (((addedRows != null)
  10997. && (0 < addedRows.Length))) {
  10998. result = (result + this._специальностиTableAdapter.Update(addedRows));
  10999. allAddedRows.AddRange(addedRows);
  11000. }
  11001. }
  11002. if ((this._студентыTableAdapter != null)) {
  11003. global::System.Data.DataRow[] addedRows = dataSet.Студенты.Select(null, null, global::System.Data.DataViewRowState.Added);
  11004. if (((addedRows != null)
  11005. && (0 < addedRows.Length))) {
  11006. result = (result + this._студентыTableAdapter.Update(addedRows));
  11007. allAddedRows.AddRange(addedRows);
  11008. }
  11009. }
  11010. return result;
  11011. }
  11012. /// <summary>
  11013. ///Delete rows in bottom-up order.
  11014. ///</summary>
  11015. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11016. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11017. private int UpdateDeletedRows(РожковDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
  11018. int result = 0;
  11019. if ((this._студентыTableAdapter != null)) {
  11020. global::System.Data.DataRow[] deletedRows = dataSet.Студенты.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  11021. if (((deletedRows != null)
  11022. && (0 < deletedRows.Length))) {
  11023. result = (result + this._студентыTableAdapter.Update(deletedRows));
  11024. allChangedRows.AddRange(deletedRows);
  11025. }
  11026. }
  11027. if ((this._специальностиTableAdapter != null)) {
  11028. global::System.Data.DataRow[] deletedRows = dataSet.Специальности.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  11029. if (((deletedRows != null)
  11030. && (0 < deletedRows.Length))) {
  11031. result = (result + this._специальностиTableAdapter.Update(deletedRows));
  11032. allChangedRows.AddRange(deletedRows);
  11033. }
  11034. }
  11035. if ((this._предметыTableAdapter != null)) {
  11036. global::System.Data.DataRow[] deletedRows = dataSet.Предметы.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  11037. if (((deletedRows != null)
  11038. && (0 < deletedRows.Length))) {
  11039. result = (result + this._предметыTableAdapter.Update(deletedRows));
  11040. allChangedRows.AddRange(deletedRows);
  11041. }
  11042. }
  11043. if ((this._оценкиTableAdapter != null)) {
  11044. global::System.Data.DataRow[] deletedRows = dataSet.Оценки.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  11045. if (((deletedRows != null)
  11046. && (0 < deletedRows.Length))) {
  11047. result = (result + this._оценкиTableAdapter.Update(deletedRows));
  11048. allChangedRows.AddRange(deletedRows);
  11049. }
  11050. }
  11051. return result;
  11052. }
  11053. /// <summary>
  11054. ///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
  11055. ///</summary>
  11056. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11057. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11058. private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  11059. if (((updatedRows == null)
  11060. || (updatedRows.Length < 1))) {
  11061. return updatedRows;
  11062. }
  11063. if (((allAddedRows == null)
  11064. || (allAddedRows.Count < 1))) {
  11065. return updatedRows;
  11066. }
  11067. global::System.Collections.Generic.List<global::System.Data.DataRow> realUpdatedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  11068. for (int i = 0; (i < updatedRows.Length); i = (i + 1)) {
  11069. global::System.Data.DataRow row = updatedRows[i];
  11070. if ((allAddedRows.Contains(row) == false)) {
  11071. realUpdatedRows.Add(row);
  11072. }
  11073. }
  11074. return realUpdatedRows.ToArray();
  11075. }
  11076. /// <summary>
  11077. ///Update all changes to the dataset.
  11078. ///</summary>
  11079. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11080. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11081. public virtual int UpdateAll(РожковDataSet dataSet) {
  11082. if ((dataSet == null)) {
  11083. throw new global::System.ArgumentNullException("dataSet");
  11084. }
  11085. if ((dataSet.HasChanges() == false)) {
  11086. return 0;
  11087. }
  11088. if (((this._оценкиTableAdapter != null)
  11089. && (this.MatchTableAdapterConnection(this._оценкиTableAdapter.Connection) == false))) {
  11090. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  11091. "r, должны использовать одинаковую строку подключения.");
  11092. }
  11093. if (((this._предметыTableAdapter != null)
  11094. && (this.MatchTableAdapterConnection(this._предметыTableAdapter.Connection) == false))) {
  11095. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  11096. "r, должны использовать одинаковую строку подключения.");
  11097. }
  11098. if (((this._специальностиTableAdapter != null)
  11099. && (this.MatchTableAdapterConnection(this._специальностиTableAdapter.Connection) == false))) {
  11100. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  11101. "r, должны использовать одинаковую строку подключения.");
  11102. }
  11103. if (((this._студентыTableAdapter != null)
  11104. && (this.MatchTableAdapterConnection(this._студентыTableAdapter.Connection) == false))) {
  11105. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  11106. "r, должны использовать одинаковую строку подключения.");
  11107. }
  11108. global::System.Data.IDbConnection workConnection = this.Connection;
  11109. if ((workConnection == null)) {
  11110. throw new global::System.ApplicationException("TableAdapterManager не содержит сведений о подключении. Укажите для каждого адапт" +
  11111. "ера таблицы TableAdapterManager допустимый экземпляр адаптера таблицы.");
  11112. }
  11113. bool workConnOpened = false;
  11114. if (((workConnection.State & global::System.Data.ConnectionState.Broken)
  11115. == global::System.Data.ConnectionState.Broken)) {
  11116. workConnection.Close();
  11117. }
  11118. if ((workConnection.State == global::System.Data.ConnectionState.Closed)) {
  11119. workConnection.Open();
  11120. workConnOpened = true;
  11121. }
  11122. global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
  11123. if ((workTransaction == null)) {
  11124. throw new global::System.ApplicationException("Не удается начать транзакцию. Текущее соединение данных не поддерживает транзакци" +
  11125. "и или текущее состояние не позволяет начать транзакцию.");
  11126. }
  11127. global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  11128. global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  11129. global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter> adaptersWithAcceptChangesDuringUpdate = new global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter>();
  11130. global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection> revertConnections = new global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection>();
  11131. int result = 0;
  11132. global::System.Data.DataSet backupDataSet = null;
  11133. if (this.BackupDataSetBeforeUpdate) {
  11134. backupDataSet = new global::System.Data.DataSet();
  11135. backupDataSet.Merge(dataSet);
  11136. }
  11137. try {
  11138. // ---- Prepare for update -----------
  11139. //
  11140. if ((this._оценкиTableAdapter != null)) {
  11141. revertConnections.Add(this._оценкиTableAdapter, this._оценкиTableAdapter.Connection);
  11142. this._оценкиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  11143. this._оценкиTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  11144. if (this._оценкиTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  11145. this._оценкиTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  11146. adaptersWithAcceptChangesDuringUpdate.Add(this._оценкиTableAdapter.Adapter);
  11147. }
  11148. }
  11149. if ((this._предметыTableAdapter != null)) {
  11150. revertConnections.Add(this._предметыTableAdapter, this._предметыTableAdapter.Connection);
  11151. this._предметыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  11152. this._предметыTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  11153. if (this._предметыTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  11154. this._предметыTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  11155. adaptersWithAcceptChangesDuringUpdate.Add(this._предметыTableAdapter.Adapter);
  11156. }
  11157. }
  11158. if ((this._специальностиTableAdapter != null)) {
  11159. revertConnections.Add(this._специальностиTableAdapter, this._специальностиTableAdapter.Connection);
  11160. this._специальностиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  11161. this._специальностиTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  11162. if (this._специальностиTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  11163. this._специальностиTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  11164. adaptersWithAcceptChangesDuringUpdate.Add(this._специальностиTableAdapter.Adapter);
  11165. }
  11166. }
  11167. if ((this._студентыTableAdapter != null)) {
  11168. revertConnections.Add(this._студентыTableAdapter, this._студентыTableAdapter.Connection);
  11169. this._студентыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  11170. this._студентыTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  11171. if (this._студентыTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  11172. this._студентыTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  11173. adaptersWithAcceptChangesDuringUpdate.Add(this._студентыTableAdapter.Adapter);
  11174. }
  11175. }
  11176. //
  11177. //---- Perform updates -----------
  11178. //
  11179. if ((this.UpdateOrder == UpdateOrderOption.UpdateInsertDelete)) {
  11180. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  11181. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  11182. }
  11183. else {
  11184. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  11185. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  11186. }
  11187. result = (result + this.UpdateDeletedRows(dataSet, allChangedRows));
  11188. //
  11189. //---- Commit updates -----------
  11190. //
  11191. workTransaction.Commit();
  11192. if ((0 < allAddedRows.Count)) {
  11193. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  11194. allAddedRows.CopyTo(rows);
  11195. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  11196. global::System.Data.DataRow row = rows[i];
  11197. row.AcceptChanges();
  11198. }
  11199. }
  11200. if ((0 < allChangedRows.Count)) {
  11201. global::System.Data.DataRow[] rows = new System.Data.DataRow[allChangedRows.Count];
  11202. allChangedRows.CopyTo(rows);
  11203. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  11204. global::System.Data.DataRow row = rows[i];
  11205. row.AcceptChanges();
  11206. }
  11207. }
  11208. }
  11209. catch (global::System.Exception ex) {
  11210. workTransaction.Rollback();
  11211. // ---- Restore the dataset -----------
  11212. if (this.BackupDataSetBeforeUpdate) {
  11213. global::System.Diagnostics.Debug.Assert((backupDataSet != null));
  11214. dataSet.Clear();
  11215. dataSet.Merge(backupDataSet);
  11216. }
  11217. else {
  11218. if ((0 < allAddedRows.Count)) {
  11219. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  11220. allAddedRows.CopyTo(rows);
  11221. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  11222. global::System.Data.DataRow row = rows[i];
  11223. row.AcceptChanges();
  11224. row.SetAdded();
  11225. }
  11226. }
  11227. }
  11228. throw ex;
  11229. }
  11230. finally {
  11231. if (workConnOpened) {
  11232. workConnection.Close();
  11233. }
  11234. if ((this._оценкиTableAdapter != null)) {
  11235. this._оценкиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._оценкиTableAdapter]));
  11236. this._оценкиTableAdapter.Transaction = null;
  11237. }
  11238. if ((this._предметыTableAdapter != null)) {
  11239. this._предметыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._предметыTableAdapter]));
  11240. this._предметыTableAdapter.Transaction = null;
  11241. }
  11242. if ((this._специальностиTableAdapter != null)) {
  11243. this._специальностиTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._специальностиTableAdapter]));
  11244. this._специальностиTableAdapter.Transaction = null;
  11245. }
  11246. if ((this._студентыTableAdapter != null)) {
  11247. this._студентыTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._студентыTableAdapter]));
  11248. this._студентыTableAdapter.Transaction = null;
  11249. }
  11250. if ((0 < adaptersWithAcceptChangesDuringUpdate.Count)) {
  11251. global::System.Data.Common.DataAdapter[] adapters = new System.Data.Common.DataAdapter[adaptersWithAcceptChangesDuringUpdate.Count];
  11252. adaptersWithAcceptChangesDuringUpdate.CopyTo(adapters);
  11253. for (int i = 0; (i < adapters.Length); i = (i + 1)) {
  11254. global::System.Data.Common.DataAdapter adapter = adapters[i];
  11255. adapter.AcceptChangesDuringUpdate = true;
  11256. }
  11257. }
  11258. }
  11259. return result;
  11260. }
  11261. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11262. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11263. protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
  11264. global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
  11265. }
  11266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11267. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11268. protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) {
  11269. if ((this._connection != null)) {
  11270. return true;
  11271. }
  11272. if (((this.Connection == null)
  11273. || (inputConnection == null))) {
  11274. return true;
  11275. }
  11276. if (string.Equals(this.Connection.ConnectionString, inputConnection.ConnectionString, global::System.StringComparison.Ordinal)) {
  11277. return true;
  11278. }
  11279. return false;
  11280. }
  11281. /// <summary>
  11282. ///Update Order Option
  11283. ///</summary>
  11284. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11285. public enum UpdateOrderOption {
  11286. InsertUpdateDelete = 0,
  11287. UpdateInsertDelete = 1,
  11288. }
  11289. /// <summary>
  11290. ///Used to sort self-referenced table's rows
  11291. ///</summary>
  11292. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11293. private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
  11294. private global::System.Data.DataRelation _relation;
  11295. private int _childFirst;
  11296. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11297. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11298. internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) {
  11299. this._relation = relation;
  11300. if (childFirst) {
  11301. this._childFirst = -1;
  11302. }
  11303. else {
  11304. this._childFirst = 1;
  11305. }
  11306. }
  11307. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11308. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11309. private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) {
  11310. global::System.Diagnostics.Debug.Assert((row != null));
  11311. global::System.Data.DataRow root = row;
  11312. distance = 0;
  11313. 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>();
  11314. traversedRows[row] = row;
  11315. global::System.Data.DataRow parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  11316. for (
  11317. ; ((parent != null)
  11318. && (traversedRows.ContainsKey(parent) == false));
  11319. ) {
  11320. distance = (distance + 1);
  11321. root = parent;
  11322. traversedRows[parent] = parent;
  11323. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  11324. }
  11325. if ((distance == 0)) {
  11326. traversedRows.Clear();
  11327. traversedRows[row] = row;
  11328. parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  11329. for (
  11330. ; ((parent != null)
  11331. && (traversedRows.ContainsKey(parent) == false));
  11332. ) {
  11333. distance = (distance + 1);
  11334. root = parent;
  11335. traversedRows[parent] = parent;
  11336. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  11337. }
  11338. }
  11339. return root;
  11340. }
  11341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  11342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  11343. public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) {
  11344. if (object.ReferenceEquals(row1, row2)) {
  11345. return 0;
  11346. }
  11347. if ((row1 == null)) {
  11348. return -1;
  11349. }
  11350. if ((row2 == null)) {
  11351. return 1;
  11352. }
  11353. int distance1 = 0;
  11354. global::System.Data.DataRow root1 = this.GetRoot(row1, out distance1);
  11355. int distance2 = 0;
  11356. global::System.Data.DataRow root2 = this.GetRoot(row2, out distance2);
  11357. if (object.ReferenceEquals(root1, root2)) {
  11358. return (this._childFirst * distance1.CompareTo(distance2));
  11359. }
  11360. else {
  11361. global::System.Diagnostics.Debug.Assert(((root1.Table != null)
  11362. && (root2.Table != null)));
  11363. if ((root1.Table.Rows.IndexOf(root1) < root2.Table.Rows.IndexOf(root2))) {
  11364. return -1;
  11365. }
  11366. else {
  11367. return 1;
  11368. }
  11369. }
  11370. }
  11371. }
  11372. }
  11373. }
  11374. #pragma warning restore 1591