IS31KiselevStudDataSet.Designer.cs 765 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан программой.
  4. // Исполняемая версия:4.0.30319.42000
  5. //
  6. // Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
  7. // повторной генерации кода.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. #pragma warning disable 1591
  11. namespace IS31BorovikAleksandrStudents {
  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("IS31KiselevStudDataSet")]
  20. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
  21. public partial class IS31KiselevStudDataSet : global::System.Data.DataSet {
  22. private OcenkaDataTable tableOcenka;
  23. private PredmetDataTable tablePredmet;
  24. private specDataTable tablespec;
  25. private StudentsDataTable tableStudents;
  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 global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  34. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  35. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  36. public IS31KiselevStudDataSet() {
  37. this.BeginInit();
  38. this.InitClass();
  39. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  40. base.Tables.CollectionChanged += schemaChangedHandler;
  41. base.Relations.CollectionChanged += schemaChangedHandler;
  42. this.EndInit();
  43. }
  44. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  45. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  46. protected IS31KiselevStudDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  47. base(info, context, false) {
  48. if ((this.IsBinarySerialized(info, context) == true)) {
  49. this.InitVars(false);
  50. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  51. this.Tables.CollectionChanged += schemaChangedHandler1;
  52. this.Relations.CollectionChanged += schemaChangedHandler1;
  53. return;
  54. }
  55. string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
  56. if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  57. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  58. ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  59. if ((ds.Tables["Ocenka"] != null)) {
  60. base.Tables.Add(new OcenkaDataTable(ds.Tables["Ocenka"]));
  61. }
  62. if ((ds.Tables["Predmet"] != null)) {
  63. base.Tables.Add(new PredmetDataTable(ds.Tables["Predmet"]));
  64. }
  65. if ((ds.Tables["spec"] != null)) {
  66. base.Tables.Add(new specDataTable(ds.Tables["spec"]));
  67. }
  68. if ((ds.Tables["Students"] != null)) {
  69. base.Tables.Add(new StudentsDataTable(ds.Tables["Students"]));
  70. }
  71. if ((ds.Tables["запрос студенты+оценки"] != null)) {
  72. base.Tables.Add(new _запрос_студенты_оценкиDataTable(ds.Tables["запрос студенты+оценки"]));
  73. }
  74. if ((ds.Tables["Запрос Студенты+Специальности"] != null)) {
  75. base.Tables.Add(new _Запрос_Студенты_СпециальностиDataTable(ds.Tables["Запрос Студенты+Специальности"]));
  76. }
  77. if ((ds.Tables["Фильтр ММ"] != null)) {
  78. base.Tables.Add(new Фильтр_ММDataTable(ds.Tables["Фильтр ММ"]));
  79. }
  80. if ((ds.Tables["Фильтр Отец"] != null)) {
  81. base.Tables.Add(new Фильтр_ОтецDataTable(ds.Tables["Фильтр Отец"]));
  82. }
  83. if ((ds.Tables["фильтр очная форма обучения"] != null)) {
  84. base.Tables.Add(new фильтр_очная_форма_обученияDataTable(ds.Tables["фильтр очная форма обучения"]));
  85. }
  86. if ((ds.Tables["Отображение студентов по возрасту"] != null)) {
  87. base.Tables.Add(new Отображение_студентов_по_возрастуDataTable(ds.Tables["Отображение студентов по возрасту"]));
  88. }
  89. if ((ds.Tables["Отображение студентов по среднему баллу"] != null)) {
  90. base.Tables.Add(new Отображение_студентов_по_среднему_баллуDataTable(ds.Tables["Отображение студентов по среднему баллу"]));
  91. }
  92. this.DataSetName = ds.DataSetName;
  93. this.Prefix = ds.Prefix;
  94. this.Namespace = ds.Namespace;
  95. this.Locale = ds.Locale;
  96. this.CaseSensitive = ds.CaseSensitive;
  97. this.EnforceConstraints = ds.EnforceConstraints;
  98. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  99. this.InitVars();
  100. }
  101. else {
  102. this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
  103. }
  104. this.GetSerializationData(info, context);
  105. global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
  106. base.Tables.CollectionChanged += schemaChangedHandler;
  107. this.Relations.CollectionChanged += schemaChangedHandler;
  108. }
  109. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  110. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  111. [global::System.ComponentModel.Browsable(false)]
  112. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  113. public OcenkaDataTable Ocenka {
  114. get {
  115. return this.tableOcenka;
  116. }
  117. }
  118. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  119. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  120. [global::System.ComponentModel.Browsable(false)]
  121. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  122. public PredmetDataTable Predmet {
  123. get {
  124. return this.tablePredmet;
  125. }
  126. }
  127. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  128. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  129. [global::System.ComponentModel.Browsable(false)]
  130. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  131. public specDataTable spec {
  132. get {
  133. return this.tablespec;
  134. }
  135. }
  136. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  137. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  138. [global::System.ComponentModel.Browsable(false)]
  139. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  140. public StudentsDataTable Students {
  141. get {
  142. return this.tableStudents;
  143. }
  144. }
  145. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  146. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  147. [global::System.ComponentModel.Browsable(false)]
  148. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  149. public _запрос_студенты_оценкиDataTable _запрос_студенты_оценки {
  150. get {
  151. return this._tableзапрос_студенты_оценки;
  152. }
  153. }
  154. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  155. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  156. [global::System.ComponentModel.Browsable(false)]
  157. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  158. public _Запрос_Студенты_СпециальностиDataTable _Запрос_Студенты_Специальности {
  159. get {
  160. return this._tableЗапрос_Студенты_Специальности;
  161. }
  162. }
  163. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  164. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  165. [global::System.ComponentModel.Browsable(false)]
  166. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  167. public Фильтр_ММDataTable Фильтр_ММ {
  168. get {
  169. return this.tableФильтр_ММ;
  170. }
  171. }
  172. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  173. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  174. [global::System.ComponentModel.Browsable(false)]
  175. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  176. public Фильтр_ОтецDataTable Фильтр_Отец {
  177. get {
  178. return this.tableФильтр_Отец;
  179. }
  180. }
  181. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  182. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  183. [global::System.ComponentModel.Browsable(false)]
  184. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  185. public фильтр_очная_форма_обученияDataTable фильтр_очная_форма_обучения {
  186. get {
  187. return this.tableфильтр_очная_форма_обучения;
  188. }
  189. }
  190. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  191. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  192. [global::System.ComponentModel.Browsable(false)]
  193. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  194. public Отображение_студентов_по_возрастуDataTable Отображение_студентов_по_возрасту {
  195. get {
  196. return this.tableОтображение_студентов_по_возрасту;
  197. }
  198. }
  199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  200. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  201. [global::System.ComponentModel.Browsable(false)]
  202. [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
  203. public Отображение_студентов_по_среднему_баллуDataTable Отображение_студентов_по_среднему_баллу {
  204. get {
  205. return this.tableОтображение_студентов_по_среднему_баллу;
  206. }
  207. }
  208. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  209. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  210. [global::System.ComponentModel.BrowsableAttribute(true)]
  211. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
  212. public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
  213. get {
  214. return this._schemaSerializationMode;
  215. }
  216. set {
  217. this._schemaSerializationMode = value;
  218. }
  219. }
  220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  222. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  223. public new global::System.Data.DataTableCollection Tables {
  224. get {
  225. return base.Tables;
  226. }
  227. }
  228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  230. [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
  231. public new global::System.Data.DataRelationCollection Relations {
  232. get {
  233. return base.Relations;
  234. }
  235. }
  236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  237. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  238. protected override void InitializeDerivedDataSet() {
  239. this.BeginInit();
  240. this.InitClass();
  241. this.EndInit();
  242. }
  243. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  244. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  245. public override global::System.Data.DataSet Clone() {
  246. IS31KiselevStudDataSet cln = ((IS31KiselevStudDataSet)(base.Clone()));
  247. cln.InitVars();
  248. cln.SchemaSerializationMode = this.SchemaSerializationMode;
  249. return cln;
  250. }
  251. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  252. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  253. protected override bool ShouldSerializeTables() {
  254. return false;
  255. }
  256. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  257. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  258. protected override bool ShouldSerializeRelations() {
  259. return false;
  260. }
  261. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  262. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  263. protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
  264. if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
  265. this.Reset();
  266. global::System.Data.DataSet ds = new global::System.Data.DataSet();
  267. ds.ReadXml(reader);
  268. if ((ds.Tables["Ocenka"] != null)) {
  269. base.Tables.Add(new OcenkaDataTable(ds.Tables["Ocenka"]));
  270. }
  271. if ((ds.Tables["Predmet"] != null)) {
  272. base.Tables.Add(new PredmetDataTable(ds.Tables["Predmet"]));
  273. }
  274. if ((ds.Tables["spec"] != null)) {
  275. base.Tables.Add(new specDataTable(ds.Tables["spec"]));
  276. }
  277. if ((ds.Tables["Students"] != null)) {
  278. base.Tables.Add(new StudentsDataTable(ds.Tables["Students"]));
  279. }
  280. if ((ds.Tables["запрос студенты+оценки"] != null)) {
  281. base.Tables.Add(new _запрос_студенты_оценкиDataTable(ds.Tables["запрос студенты+оценки"]));
  282. }
  283. if ((ds.Tables["Запрос Студенты+Специальности"] != null)) {
  284. base.Tables.Add(new _Запрос_Студенты_СпециальностиDataTable(ds.Tables["Запрос Студенты+Специальности"]));
  285. }
  286. if ((ds.Tables["Фильтр ММ"] != null)) {
  287. base.Tables.Add(new Фильтр_ММDataTable(ds.Tables["Фильтр ММ"]));
  288. }
  289. if ((ds.Tables["Фильтр Отец"] != null)) {
  290. base.Tables.Add(new Фильтр_ОтецDataTable(ds.Tables["Фильтр Отец"]));
  291. }
  292. if ((ds.Tables["фильтр очная форма обучения"] != null)) {
  293. base.Tables.Add(new фильтр_очная_форма_обученияDataTable(ds.Tables["фильтр очная форма обучения"]));
  294. }
  295. if ((ds.Tables["Отображение студентов по возрасту"] != null)) {
  296. base.Tables.Add(new Отображение_студентов_по_возрастуDataTable(ds.Tables["Отображение студентов по возрасту"]));
  297. }
  298. if ((ds.Tables["Отображение студентов по среднему баллу"] != null)) {
  299. base.Tables.Add(new Отображение_студентов_по_среднему_баллуDataTable(ds.Tables["Отображение студентов по среднему баллу"]));
  300. }
  301. this.DataSetName = ds.DataSetName;
  302. this.Prefix = ds.Prefix;
  303. this.Namespace = ds.Namespace;
  304. this.Locale = ds.Locale;
  305. this.CaseSensitive = ds.CaseSensitive;
  306. this.EnforceConstraints = ds.EnforceConstraints;
  307. this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
  308. this.InitVars();
  309. }
  310. else {
  311. this.ReadXml(reader);
  312. this.InitVars();
  313. }
  314. }
  315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  317. protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
  318. global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
  319. this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
  320. stream.Position = 0;
  321. return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
  322. }
  323. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  324. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  325. internal void InitVars() {
  326. this.InitVars(true);
  327. }
  328. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  329. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  330. internal void InitVars(bool initTable) {
  331. this.tableOcenka = ((OcenkaDataTable)(base.Tables["Ocenka"]));
  332. if ((initTable == true)) {
  333. if ((this.tableOcenka != null)) {
  334. this.tableOcenka.InitVars();
  335. }
  336. }
  337. this.tablePredmet = ((PredmetDataTable)(base.Tables["Predmet"]));
  338. if ((initTable == true)) {
  339. if ((this.tablePredmet != null)) {
  340. this.tablePredmet.InitVars();
  341. }
  342. }
  343. this.tablespec = ((specDataTable)(base.Tables["spec"]));
  344. if ((initTable == true)) {
  345. if ((this.tablespec != null)) {
  346. this.tablespec.InitVars();
  347. }
  348. }
  349. this.tableStudents = ((StudentsDataTable)(base.Tables["Students"]));
  350. if ((initTable == true)) {
  351. if ((this.tableStudents != null)) {
  352. this.tableStudents.InitVars();
  353. }
  354. }
  355. this._tableзапрос_студенты_оценки = ((_запрос_студенты_оценкиDataTable)(base.Tables["запрос студенты+оценки"]));
  356. if ((initTable == true)) {
  357. if ((this._tableзапрос_студенты_оценки != null)) {
  358. this._tableзапрос_студенты_оценки.InitVars();
  359. }
  360. }
  361. this._tableЗапрос_Студенты_Специальности = ((_Запрос_Студенты_СпециальностиDataTable)(base.Tables["Запрос Студенты+Специальности"]));
  362. if ((initTable == true)) {
  363. if ((this._tableЗапрос_Студенты_Специальности != null)) {
  364. this._tableЗапрос_Студенты_Специальности.InitVars();
  365. }
  366. }
  367. this.tableФильтр_ММ = ((Фильтр_ММDataTable)(base.Tables["Фильтр ММ"]));
  368. if ((initTable == true)) {
  369. if ((this.tableФильтр_ММ != null)) {
  370. this.tableФильтр_ММ.InitVars();
  371. }
  372. }
  373. this.tableФильтр_Отец = ((Фильтр_ОтецDataTable)(base.Tables["Фильтр Отец"]));
  374. if ((initTable == true)) {
  375. if ((this.tableФильтр_Отец != null)) {
  376. this.tableФильтр_Отец.InitVars();
  377. }
  378. }
  379. this.tableфильтр_очная_форма_обучения = ((фильтр_очная_форма_обученияDataTable)(base.Tables["фильтр очная форма обучения"]));
  380. if ((initTable == true)) {
  381. if ((this.tableфильтр_очная_форма_обучения != null)) {
  382. this.tableфильтр_очная_форма_обучения.InitVars();
  383. }
  384. }
  385. this.tableОтображение_студентов_по_возрасту = ((Отображение_студентов_по_возрастуDataTable)(base.Tables["Отображение студентов по возрасту"]));
  386. if ((initTable == true)) {
  387. if ((this.tableОтображение_студентов_по_возрасту != null)) {
  388. this.tableОтображение_студентов_по_возрасту.InitVars();
  389. }
  390. }
  391. this.tableОтображение_студентов_по_среднему_баллу = ((Отображение_студентов_по_среднему_баллуDataTable)(base.Tables["Отображение студентов по среднему баллу"]));
  392. if ((initTable == true)) {
  393. if ((this.tableОтображение_студентов_по_среднему_баллу != null)) {
  394. this.tableОтображение_студентов_по_среднему_баллу.InitVars();
  395. }
  396. }
  397. }
  398. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  399. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  400. private void InitClass() {
  401. this.DataSetName = "IS31KiselevStudDataSet";
  402. this.Prefix = "";
  403. this.Namespace = "http://tempuri.org/IS31KiselevStudDataSet.xsd";
  404. this.EnforceConstraints = true;
  405. this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
  406. this.tableOcenka = new OcenkaDataTable();
  407. base.Tables.Add(this.tableOcenka);
  408. this.tablePredmet = new PredmetDataTable();
  409. base.Tables.Add(this.tablePredmet);
  410. this.tablespec = new specDataTable();
  411. base.Tables.Add(this.tablespec);
  412. this.tableStudents = new StudentsDataTable();
  413. base.Tables.Add(this.tableStudents);
  414. this._tableзапрос_студенты_оценки = new _запрос_студенты_оценкиDataTable();
  415. base.Tables.Add(this._tableзапрос_студенты_оценки);
  416. this._tableЗапрос_Студенты_Специальности = new _Запрос_Студенты_СпециальностиDataTable();
  417. base.Tables.Add(this._tableЗапрос_Студенты_Специальности);
  418. this.tableФильтр_ММ = new Фильтр_ММDataTable();
  419. base.Tables.Add(this.tableФильтр_ММ);
  420. this.tableФильтр_Отец = new Фильтр_ОтецDataTable();
  421. base.Tables.Add(this.tableФильтр_Отец);
  422. this.tableфильтр_очная_форма_обучения = new фильтр_очная_форма_обученияDataTable();
  423. base.Tables.Add(this.tableфильтр_очная_форма_обучения);
  424. this.tableОтображение_студентов_по_возрасту = new Отображение_студентов_по_возрастуDataTable();
  425. base.Tables.Add(this.tableОтображение_студентов_по_возрасту);
  426. this.tableОтображение_студентов_по_среднему_баллу = new Отображение_студентов_по_среднему_баллуDataTable();
  427. base.Tables.Add(this.tableОтображение_студентов_по_среднему_баллу);
  428. }
  429. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  430. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  431. private bool ShouldSerializeOcenka() {
  432. return false;
  433. }
  434. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  435. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  436. private bool ShouldSerializePredmet() {
  437. return false;
  438. }
  439. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  440. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  441. private bool ShouldSerializespec() {
  442. return false;
  443. }
  444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  445. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  446. private bool ShouldSerializeStudents() {
  447. return false;
  448. }
  449. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  450. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  451. private bool ShouldSerialize_запрос_студенты_оценки() {
  452. return false;
  453. }
  454. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  455. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  456. private bool ShouldSerialize_Запрос_Студенты_Специальности() {
  457. return false;
  458. }
  459. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  460. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  461. private bool ShouldSerializeФильтр_ММ() {
  462. return false;
  463. }
  464. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  465. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  466. private bool ShouldSerializeФильтр_Отец() {
  467. return false;
  468. }
  469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  471. private bool ShouldSerializeфильтр_очная_форма_обучения() {
  472. return false;
  473. }
  474. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  475. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  476. private bool ShouldSerializeОтображение_студентов_по_возрасту() {
  477. return false;
  478. }
  479. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  480. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  481. private bool ShouldSerializeОтображение_студентов_по_среднему_баллу() {
  482. return false;
  483. }
  484. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  485. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  486. private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
  487. if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
  488. this.InitVars();
  489. }
  490. }
  491. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  492. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  493. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  494. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  495. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  496. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  497. global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
  498. any.Namespace = ds.Namespace;
  499. sequence.Items.Add(any);
  500. type.Particle = sequence;
  501. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  502. if (xs.Contains(dsSchema.TargetNamespace)) {
  503. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  504. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  505. try {
  506. global::System.Xml.Schema.XmlSchema schema = null;
  507. dsSchema.Write(s1);
  508. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  509. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  510. s2.SetLength(0);
  511. schema.Write(s2);
  512. if ((s1.Length == s2.Length)) {
  513. s1.Position = 0;
  514. s2.Position = 0;
  515. for (; ((s1.Position != s1.Length)
  516. && (s1.ReadByte() == s2.ReadByte())); ) {
  517. ;
  518. }
  519. if ((s1.Position == s1.Length)) {
  520. return type;
  521. }
  522. }
  523. }
  524. }
  525. finally {
  526. if ((s1 != null)) {
  527. s1.Close();
  528. }
  529. if ((s2 != null)) {
  530. s2.Close();
  531. }
  532. }
  533. }
  534. xs.Add(dsSchema);
  535. return type;
  536. }
  537. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  538. public delegate void OcenkaRowChangeEventHandler(object sender, OcenkaRowChangeEvent e);
  539. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  540. public delegate void PredmetRowChangeEventHandler(object sender, PredmetRowChangeEvent e);
  541. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  542. public delegate void specRowChangeEventHandler(object sender, specRowChangeEvent e);
  543. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  544. public delegate void StudentsRowChangeEventHandler(object sender, StudentsRowChangeEvent e);
  545. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  546. public delegate void _запрос_студенты_оценкиRowChangeEventHandler(object sender, _запрос_студенты_оценкиRowChangeEvent e);
  547. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  548. public delegate void _Запрос_Студенты_СпециальностиRowChangeEventHandler(object sender, _Запрос_Студенты_СпециальностиRowChangeEvent e);
  549. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  550. public delegate void Фильтр_ММRowChangeEventHandler(object sender, Фильтр_ММRowChangeEvent e);
  551. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  552. public delegate void Фильтр_ОтецRowChangeEventHandler(object sender, Фильтр_ОтецRowChangeEvent e);
  553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  554. public delegate void фильтр_очная_форма_обученияRowChangeEventHandler(object sender, фильтр_очная_форма_обученияRowChangeEvent e);
  555. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  556. public delegate void Отображение_студентов_по_возрастуRowChangeEventHandler(object sender, Отображение_студентов_по_возрастуRowChangeEvent e);
  557. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  558. public delegate void Отображение_студентов_по_среднему_баллуRowChangeEventHandler(object sender, Отображение_студентов_по_среднему_баллуRowChangeEvent e);
  559. /// <summary>
  560. ///Represents the strongly named DataTable class.
  561. ///</summary>
  562. [global::System.Serializable()]
  563. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  564. public partial class OcenkaDataTable : global::System.Data.TypedTableBase<OcenkaRow> {
  565. private global::System.Data.DataColumn columnкод_студента;
  566. private global::System.Data.DataColumn columnдата_экзамена_1;
  567. private global::System.Data.DataColumn columnдата_экзамена_2;
  568. private global::System.Data.DataColumn columnДата_экзамена_3;
  569. private global::System.Data.DataColumn columnОценка_1;
  570. private global::System.Data.DataColumn columnОценка_2;
  571. private global::System.Data.DataColumn columnОценка_3;
  572. private global::System.Data.DataColumn columnСредний_балл;
  573. private global::System.Data.DataColumn columnКод_предмета_1;
  574. private global::System.Data.DataColumn columnКод_предмета_2;
  575. private global::System.Data.DataColumn columnКод_предмета_3;
  576. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  577. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  578. public OcenkaDataTable() {
  579. this.TableName = "Ocenka";
  580. this.BeginInit();
  581. this.InitClass();
  582. this.EndInit();
  583. }
  584. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  585. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  586. internal OcenkaDataTable(global::System.Data.DataTable table) {
  587. this.TableName = table.TableName;
  588. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  589. this.CaseSensitive = table.CaseSensitive;
  590. }
  591. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  592. this.Locale = table.Locale;
  593. }
  594. if ((table.Namespace != table.DataSet.Namespace)) {
  595. this.Namespace = table.Namespace;
  596. }
  597. this.Prefix = table.Prefix;
  598. this.MinimumCapacity = table.MinimumCapacity;
  599. }
  600. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  601. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  602. protected OcenkaDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  603. base(info, context) {
  604. this.InitVars();
  605. }
  606. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  607. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  608. public global::System.Data.DataColumn код_студентаColumn {
  609. get {
  610. return this.columnкод_студента;
  611. }
  612. }
  613. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  614. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  615. public global::System.Data.DataColumn дата_экзамена_1Column {
  616. get {
  617. return this.columnдата_экзамена_1;
  618. }
  619. }
  620. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  621. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  622. public global::System.Data.DataColumn дата_экзамена_2Column {
  623. get {
  624. return this.columnдата_экзамена_2;
  625. }
  626. }
  627. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  628. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  629. public global::System.Data.DataColumn Дата_экзамена_3Column {
  630. get {
  631. return this.columnДата_экзамена_3;
  632. }
  633. }
  634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  636. public global::System.Data.DataColumn Оценка_1Column {
  637. get {
  638. return this.columnОценка_1;
  639. }
  640. }
  641. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  642. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  643. public global::System.Data.DataColumn Оценка_2Column {
  644. get {
  645. return this.columnОценка_2;
  646. }
  647. }
  648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  650. public global::System.Data.DataColumn Оценка_3Column {
  651. get {
  652. return this.columnОценка_3;
  653. }
  654. }
  655. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  656. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  657. public global::System.Data.DataColumn Средний_баллColumn {
  658. get {
  659. return this.columnСредний_балл;
  660. }
  661. }
  662. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  663. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  664. public global::System.Data.DataColumn Код_предмета_1Column {
  665. get {
  666. return this.columnКод_предмета_1;
  667. }
  668. }
  669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  671. public global::System.Data.DataColumn Код_предмета_2Column {
  672. get {
  673. return this.columnКод_предмета_2;
  674. }
  675. }
  676. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  677. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  678. public global::System.Data.DataColumn Код_предмета_3Column {
  679. get {
  680. return this.columnКод_предмета_3;
  681. }
  682. }
  683. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  684. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  685. [global::System.ComponentModel.Browsable(false)]
  686. public int Count {
  687. get {
  688. return this.Rows.Count;
  689. }
  690. }
  691. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  692. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  693. public OcenkaRow this[int index] {
  694. get {
  695. return ((OcenkaRow)(this.Rows[index]));
  696. }
  697. }
  698. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  699. public event OcenkaRowChangeEventHandler OcenkaRowChanging;
  700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  701. public event OcenkaRowChangeEventHandler OcenkaRowChanged;
  702. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  703. public event OcenkaRowChangeEventHandler OcenkaRowDeleting;
  704. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  705. public event OcenkaRowChangeEventHandler OcenkaRowDeleted;
  706. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  707. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  708. public void AddOcenkaRow(OcenkaRow row) {
  709. this.Rows.Add(row);
  710. }
  711. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  712. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  713. public OcenkaRow AddOcenkaRow(System.DateTime дата_экзамена_1, System.DateTime дата_экзамена_2, System.DateTime Дата_экзамена_3, byte Оценка_1, byte Оценка_2, byte Оценка_3, float Средний_балл, long Код_предмета_1, long Код_предмета_2, long Код_предмета_3) {
  714. OcenkaRow rowOcenkaRow = ((OcenkaRow)(this.NewRow()));
  715. object[] columnValuesArray = new object[] {
  716. null,
  717. дата_экзамена_1,
  718. дата_экзамена_2,
  719. Дата_экзамена_3,
  720. Оценка_1,
  721. Оценка_2,
  722. Оценка_3,
  723. Средний_балл,
  724. Код_предмета_1,
  725. Код_предмета_2,
  726. Код_предмета_3};
  727. rowOcenkaRow.ItemArray = columnValuesArray;
  728. this.Rows.Add(rowOcenkaRow);
  729. return rowOcenkaRow;
  730. }
  731. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  732. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  733. public override global::System.Data.DataTable Clone() {
  734. OcenkaDataTable cln = ((OcenkaDataTable)(base.Clone()));
  735. cln.InitVars();
  736. return cln;
  737. }
  738. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  739. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  740. protected override global::System.Data.DataTable CreateInstance() {
  741. return new OcenkaDataTable();
  742. }
  743. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  744. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  745. internal void InitVars() {
  746. this.columnкод_студента = base.Columns["код студента"];
  747. this.columnдата_экзамена_1 = base.Columns["дата экзамена 1"];
  748. this.columnдата_экзамена_2 = base.Columns["дата экзамена 2"];
  749. this.columnДата_экзамена_3 = base.Columns["Дата экзамена 3"];
  750. this.columnОценка_1 = base.Columns["Оценка 1"];
  751. this.columnОценка_2 = base.Columns["Оценка 2"];
  752. this.columnОценка_3 = base.Columns["Оценка 3"];
  753. this.columnСредний_балл = base.Columns["Средний балл"];
  754. this.columnКод_предмета_1 = base.Columns["Код предмета 1"];
  755. this.columnКод_предмета_2 = base.Columns["Код предмета 2"];
  756. this.columnКод_предмета_3 = base.Columns["Код предмета 3"];
  757. }
  758. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  759. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  760. private void InitClass() {
  761. this.columnкод_студента = new global::System.Data.DataColumn("код студента", typeof(long), null, global::System.Data.MappingType.Element);
  762. base.Columns.Add(this.columnкод_студента);
  763. this.columnдата_экзамена_1 = new global::System.Data.DataColumn("дата экзамена 1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  764. base.Columns.Add(this.columnдата_экзамена_1);
  765. this.columnдата_экзамена_2 = new global::System.Data.DataColumn("дата экзамена 2", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  766. base.Columns.Add(this.columnдата_экзамена_2);
  767. this.columnДата_экзамена_3 = new global::System.Data.DataColumn("Дата экзамена 3", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  768. base.Columns.Add(this.columnДата_экзамена_3);
  769. this.columnОценка_1 = new global::System.Data.DataColumn("Оценка 1", typeof(byte), null, global::System.Data.MappingType.Element);
  770. base.Columns.Add(this.columnОценка_1);
  771. this.columnОценка_2 = new global::System.Data.DataColumn("Оценка 2", typeof(byte), null, global::System.Data.MappingType.Element);
  772. base.Columns.Add(this.columnОценка_2);
  773. this.columnОценка_3 = new global::System.Data.DataColumn("Оценка 3", typeof(byte), null, global::System.Data.MappingType.Element);
  774. base.Columns.Add(this.columnОценка_3);
  775. this.columnСредний_балл = new global::System.Data.DataColumn("Средний балл", typeof(float), null, global::System.Data.MappingType.Element);
  776. base.Columns.Add(this.columnСредний_балл);
  777. this.columnКод_предмета_1 = new global::System.Data.DataColumn("Код предмета 1", typeof(long), null, global::System.Data.MappingType.Element);
  778. base.Columns.Add(this.columnКод_предмета_1);
  779. this.columnКод_предмета_2 = new global::System.Data.DataColumn("Код предмета 2", typeof(long), null, global::System.Data.MappingType.Element);
  780. base.Columns.Add(this.columnКод_предмета_2);
  781. this.columnКод_предмета_3 = new global::System.Data.DataColumn("Код предмета 3", typeof(long), null, global::System.Data.MappingType.Element);
  782. base.Columns.Add(this.columnКод_предмета_3);
  783. this.columnкод_студента.AutoIncrement = true;
  784. this.columnкод_студента.AutoIncrementSeed = -1;
  785. this.columnкод_студента.AutoIncrementStep = -1;
  786. this.columnкод_студента.AllowDBNull = false;
  787. this.columnкод_студента.ReadOnly = true;
  788. }
  789. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  790. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  791. public OcenkaRow NewOcenkaRow() {
  792. return ((OcenkaRow)(this.NewRow()));
  793. }
  794. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  795. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  796. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  797. return new OcenkaRow(builder);
  798. }
  799. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  800. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  801. protected override global::System.Type GetRowType() {
  802. return typeof(OcenkaRow);
  803. }
  804. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  805. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  806. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  807. base.OnRowChanged(e);
  808. if ((this.OcenkaRowChanged != null)) {
  809. this.OcenkaRowChanged(this, new OcenkaRowChangeEvent(((OcenkaRow)(e.Row)), e.Action));
  810. }
  811. }
  812. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  813. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  814. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  815. base.OnRowChanging(e);
  816. if ((this.OcenkaRowChanging != null)) {
  817. this.OcenkaRowChanging(this, new OcenkaRowChangeEvent(((OcenkaRow)(e.Row)), e.Action));
  818. }
  819. }
  820. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  821. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  822. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  823. base.OnRowDeleted(e);
  824. if ((this.OcenkaRowDeleted != null)) {
  825. this.OcenkaRowDeleted(this, new OcenkaRowChangeEvent(((OcenkaRow)(e.Row)), e.Action));
  826. }
  827. }
  828. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  829. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  830. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  831. base.OnRowDeleting(e);
  832. if ((this.OcenkaRowDeleting != null)) {
  833. this.OcenkaRowDeleting(this, new OcenkaRowChangeEvent(((OcenkaRow)(e.Row)), e.Action));
  834. }
  835. }
  836. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  837. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  838. public void RemoveOcenkaRow(OcenkaRow row) {
  839. this.Rows.Remove(row);
  840. }
  841. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  842. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  843. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  844. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  845. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  846. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  847. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  848. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  849. any1.MinOccurs = new decimal(0);
  850. any1.MaxOccurs = decimal.MaxValue;
  851. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  852. sequence.Items.Add(any1);
  853. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  854. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  855. any2.MinOccurs = new decimal(1);
  856. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  857. sequence.Items.Add(any2);
  858. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  859. attribute1.Name = "namespace";
  860. attribute1.FixedValue = ds.Namespace;
  861. type.Attributes.Add(attribute1);
  862. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  863. attribute2.Name = "tableTypeName";
  864. attribute2.FixedValue = "OcenkaDataTable";
  865. type.Attributes.Add(attribute2);
  866. type.Particle = sequence;
  867. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  868. if (xs.Contains(dsSchema.TargetNamespace)) {
  869. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  870. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  871. try {
  872. global::System.Xml.Schema.XmlSchema schema = null;
  873. dsSchema.Write(s1);
  874. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  875. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  876. s2.SetLength(0);
  877. schema.Write(s2);
  878. if ((s1.Length == s2.Length)) {
  879. s1.Position = 0;
  880. s2.Position = 0;
  881. for (; ((s1.Position != s1.Length)
  882. && (s1.ReadByte() == s2.ReadByte())); ) {
  883. ;
  884. }
  885. if ((s1.Position == s1.Length)) {
  886. return type;
  887. }
  888. }
  889. }
  890. }
  891. finally {
  892. if ((s1 != null)) {
  893. s1.Close();
  894. }
  895. if ((s2 != null)) {
  896. s2.Close();
  897. }
  898. }
  899. }
  900. xs.Add(dsSchema);
  901. return type;
  902. }
  903. }
  904. /// <summary>
  905. ///Represents the strongly named DataTable class.
  906. ///</summary>
  907. [global::System.Serializable()]
  908. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  909. public partial class PredmetDataTable : global::System.Data.TypedTableBase<PredmetRow> {
  910. private global::System.Data.DataColumn columnкод_предмета;
  911. private global::System.Data.DataColumn columnнаименование_предмета;
  912. private global::System.Data.DataColumn columnописание_предмета;
  913. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  914. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  915. public PredmetDataTable() {
  916. this.TableName = "Predmet";
  917. this.BeginInit();
  918. this.InitClass();
  919. this.EndInit();
  920. }
  921. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  922. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  923. internal PredmetDataTable(global::System.Data.DataTable table) {
  924. this.TableName = table.TableName;
  925. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  926. this.CaseSensitive = table.CaseSensitive;
  927. }
  928. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  929. this.Locale = table.Locale;
  930. }
  931. if ((table.Namespace != table.DataSet.Namespace)) {
  932. this.Namespace = table.Namespace;
  933. }
  934. this.Prefix = table.Prefix;
  935. this.MinimumCapacity = table.MinimumCapacity;
  936. }
  937. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  938. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  939. protected PredmetDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  940. base(info, context) {
  941. this.InitVars();
  942. }
  943. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  944. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  945. public global::System.Data.DataColumn код_предметаColumn {
  946. get {
  947. return this.columnкод_предмета;
  948. }
  949. }
  950. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  951. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  952. public global::System.Data.DataColumn наименование_предметаColumn {
  953. get {
  954. return this.columnнаименование_предмета;
  955. }
  956. }
  957. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  958. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  959. public global::System.Data.DataColumn описание_предметаColumn {
  960. get {
  961. return this.columnописание_предмета;
  962. }
  963. }
  964. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  965. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  966. [global::System.ComponentModel.Browsable(false)]
  967. public int Count {
  968. get {
  969. return this.Rows.Count;
  970. }
  971. }
  972. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  973. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  974. public PredmetRow this[int index] {
  975. get {
  976. return ((PredmetRow)(this.Rows[index]));
  977. }
  978. }
  979. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  980. public event PredmetRowChangeEventHandler PredmetRowChanging;
  981. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  982. public event PredmetRowChangeEventHandler PredmetRowChanged;
  983. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  984. public event PredmetRowChangeEventHandler PredmetRowDeleting;
  985. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  986. public event PredmetRowChangeEventHandler PredmetRowDeleted;
  987. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  988. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  989. public void AddPredmetRow(PredmetRow row) {
  990. this.Rows.Add(row);
  991. }
  992. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  993. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  994. public PredmetRow AddPredmetRow(string наименование_предмета, string описание_предмета) {
  995. PredmetRow rowPredmetRow = ((PredmetRow)(this.NewRow()));
  996. object[] columnValuesArray = new object[] {
  997. null,
  998. наименование_предмета,
  999. описание_предмета};
  1000. rowPredmetRow.ItemArray = columnValuesArray;
  1001. this.Rows.Add(rowPredmetRow);
  1002. return rowPredmetRow;
  1003. }
  1004. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1005. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1006. public PredmetRow FindByкод_предмета(long код_предмета) {
  1007. return ((PredmetRow)(this.Rows.Find(new object[] {
  1008. код_предмета})));
  1009. }
  1010. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1011. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1012. public override global::System.Data.DataTable Clone() {
  1013. PredmetDataTable cln = ((PredmetDataTable)(base.Clone()));
  1014. cln.InitVars();
  1015. return cln;
  1016. }
  1017. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1018. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1019. protected override global::System.Data.DataTable CreateInstance() {
  1020. return new PredmetDataTable();
  1021. }
  1022. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1024. internal void InitVars() {
  1025. this.columnкод_предмета = base.Columns["код предмета"];
  1026. this.columnнаименование_предмета = base.Columns["наименование предмета"];
  1027. this.columnописание_предмета = base.Columns["описание предмета"];
  1028. }
  1029. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1030. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1031. private void InitClass() {
  1032. this.columnкод_предмета = new global::System.Data.DataColumn("код предмета", typeof(long), null, global::System.Data.MappingType.Element);
  1033. base.Columns.Add(this.columnкод_предмета);
  1034. this.columnнаименование_предмета = new global::System.Data.DataColumn("наименование предмета", typeof(string), null, global::System.Data.MappingType.Element);
  1035. base.Columns.Add(this.columnнаименование_предмета);
  1036. this.columnописание_предмета = new global::System.Data.DataColumn("описание предмета", typeof(string), null, global::System.Data.MappingType.Element);
  1037. base.Columns.Add(this.columnописание_предмета);
  1038. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1039. this.columnкод_предмета}, true));
  1040. this.columnкод_предмета.AutoIncrement = true;
  1041. this.columnкод_предмета.AutoIncrementSeed = -1;
  1042. this.columnкод_предмета.AutoIncrementStep = -1;
  1043. this.columnкод_предмета.AllowDBNull = false;
  1044. this.columnкод_предмета.ReadOnly = true;
  1045. this.columnкод_предмета.Unique = true;
  1046. this.columnнаименование_предмета.MaxLength = 2147483647;
  1047. this.columnописание_предмета.MaxLength = 2147483647;
  1048. }
  1049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1050. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1051. public PredmetRow NewPredmetRow() {
  1052. return ((PredmetRow)(this.NewRow()));
  1053. }
  1054. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1055. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1056. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1057. return new PredmetRow(builder);
  1058. }
  1059. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1060. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1061. protected override global::System.Type GetRowType() {
  1062. return typeof(PredmetRow);
  1063. }
  1064. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1065. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1066. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1067. base.OnRowChanged(e);
  1068. if ((this.PredmetRowChanged != null)) {
  1069. this.PredmetRowChanged(this, new PredmetRowChangeEvent(((PredmetRow)(e.Row)), e.Action));
  1070. }
  1071. }
  1072. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1073. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1074. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1075. base.OnRowChanging(e);
  1076. if ((this.PredmetRowChanging != null)) {
  1077. this.PredmetRowChanging(this, new PredmetRowChangeEvent(((PredmetRow)(e.Row)), e.Action));
  1078. }
  1079. }
  1080. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1081. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1082. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1083. base.OnRowDeleted(e);
  1084. if ((this.PredmetRowDeleted != null)) {
  1085. this.PredmetRowDeleted(this, new PredmetRowChangeEvent(((PredmetRow)(e.Row)), e.Action));
  1086. }
  1087. }
  1088. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1089. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1090. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1091. base.OnRowDeleting(e);
  1092. if ((this.PredmetRowDeleting != null)) {
  1093. this.PredmetRowDeleting(this, new PredmetRowChangeEvent(((PredmetRow)(e.Row)), e.Action));
  1094. }
  1095. }
  1096. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1097. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1098. public void RemovePredmetRow(PredmetRow row) {
  1099. this.Rows.Remove(row);
  1100. }
  1101. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1102. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1103. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1104. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1105. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1106. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  1107. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1108. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1109. any1.MinOccurs = new decimal(0);
  1110. any1.MaxOccurs = decimal.MaxValue;
  1111. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1112. sequence.Items.Add(any1);
  1113. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1114. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1115. any2.MinOccurs = new decimal(1);
  1116. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1117. sequence.Items.Add(any2);
  1118. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1119. attribute1.Name = "namespace";
  1120. attribute1.FixedValue = ds.Namespace;
  1121. type.Attributes.Add(attribute1);
  1122. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1123. attribute2.Name = "tableTypeName";
  1124. attribute2.FixedValue = "PredmetDataTable";
  1125. type.Attributes.Add(attribute2);
  1126. type.Particle = sequence;
  1127. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1128. if (xs.Contains(dsSchema.TargetNamespace)) {
  1129. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1130. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1131. try {
  1132. global::System.Xml.Schema.XmlSchema schema = null;
  1133. dsSchema.Write(s1);
  1134. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1135. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1136. s2.SetLength(0);
  1137. schema.Write(s2);
  1138. if ((s1.Length == s2.Length)) {
  1139. s1.Position = 0;
  1140. s2.Position = 0;
  1141. for (; ((s1.Position != s1.Length)
  1142. && (s1.ReadByte() == s2.ReadByte())); ) {
  1143. ;
  1144. }
  1145. if ((s1.Position == s1.Length)) {
  1146. return type;
  1147. }
  1148. }
  1149. }
  1150. }
  1151. finally {
  1152. if ((s1 != null)) {
  1153. s1.Close();
  1154. }
  1155. if ((s2 != null)) {
  1156. s2.Close();
  1157. }
  1158. }
  1159. }
  1160. xs.Add(dsSchema);
  1161. return type;
  1162. }
  1163. }
  1164. /// <summary>
  1165. ///Represents the strongly named DataTable class.
  1166. ///</summary>
  1167. [global::System.Serializable()]
  1168. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1169. public partial class specDataTable : global::System.Data.TypedTableBase<specRow> {
  1170. private global::System.Data.DataColumn columnкод_специальности;
  1171. private global::System.Data.DataColumn columnнаименование_специальности;
  1172. private global::System.Data.DataColumn columnописание_специальности;
  1173. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1174. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1175. public specDataTable() {
  1176. this.TableName = "spec";
  1177. this.BeginInit();
  1178. this.InitClass();
  1179. this.EndInit();
  1180. }
  1181. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1182. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1183. internal specDataTable(global::System.Data.DataTable table) {
  1184. this.TableName = table.TableName;
  1185. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1186. this.CaseSensitive = table.CaseSensitive;
  1187. }
  1188. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1189. this.Locale = table.Locale;
  1190. }
  1191. if ((table.Namespace != table.DataSet.Namespace)) {
  1192. this.Namespace = table.Namespace;
  1193. }
  1194. this.Prefix = table.Prefix;
  1195. this.MinimumCapacity = table.MinimumCapacity;
  1196. }
  1197. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1198. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1199. protected specDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1200. base(info, context) {
  1201. this.InitVars();
  1202. }
  1203. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1204. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1205. public global::System.Data.DataColumn код_специальностиColumn {
  1206. get {
  1207. return this.columnкод_специальности;
  1208. }
  1209. }
  1210. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1211. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1212. public global::System.Data.DataColumn наименование_специальностиColumn {
  1213. get {
  1214. return this.columnнаименование_специальности;
  1215. }
  1216. }
  1217. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1218. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1219. public global::System.Data.DataColumn описание_специальностиColumn {
  1220. get {
  1221. return this.columnописание_специальности;
  1222. }
  1223. }
  1224. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1225. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1226. [global::System.ComponentModel.Browsable(false)]
  1227. public int Count {
  1228. get {
  1229. return this.Rows.Count;
  1230. }
  1231. }
  1232. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1233. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1234. public specRow this[int index] {
  1235. get {
  1236. return ((specRow)(this.Rows[index]));
  1237. }
  1238. }
  1239. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1240. public event specRowChangeEventHandler specRowChanging;
  1241. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1242. public event specRowChangeEventHandler specRowChanged;
  1243. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1244. public event specRowChangeEventHandler specRowDeleting;
  1245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1246. public event specRowChangeEventHandler specRowDeleted;
  1247. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1248. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1249. public void AddspecRow(specRow row) {
  1250. this.Rows.Add(row);
  1251. }
  1252. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1253. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1254. public specRow AddspecRow(string наименование_специальности, string описание_специальности) {
  1255. specRow rowspecRow = ((specRow)(this.NewRow()));
  1256. object[] columnValuesArray = new object[] {
  1257. null,
  1258. наименование_специальности,
  1259. описание_специальности};
  1260. rowspecRow.ItemArray = columnValuesArray;
  1261. this.Rows.Add(rowspecRow);
  1262. return rowspecRow;
  1263. }
  1264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1266. public specRow FindByкод_специальности(long код_специальности) {
  1267. return ((specRow)(this.Rows.Find(new object[] {
  1268. код_специальности})));
  1269. }
  1270. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1271. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1272. public override global::System.Data.DataTable Clone() {
  1273. specDataTable cln = ((specDataTable)(base.Clone()));
  1274. cln.InitVars();
  1275. return cln;
  1276. }
  1277. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1278. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1279. protected override global::System.Data.DataTable CreateInstance() {
  1280. return new specDataTable();
  1281. }
  1282. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1283. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1284. internal void InitVars() {
  1285. this.columnкод_специальности = base.Columns["код специальности"];
  1286. this.columnнаименование_специальности = base.Columns["наименование специальности"];
  1287. this.columnописание_специальности = base.Columns["описание специальности"];
  1288. }
  1289. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1290. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1291. private void InitClass() {
  1292. this.columnкод_специальности = new global::System.Data.DataColumn("код специальности", typeof(long), null, global::System.Data.MappingType.Element);
  1293. base.Columns.Add(this.columnкод_специальности);
  1294. this.columnнаименование_специальности = new global::System.Data.DataColumn("наименование специальности", typeof(string), null, global::System.Data.MappingType.Element);
  1295. base.Columns.Add(this.columnнаименование_специальности);
  1296. this.columnописание_специальности = new global::System.Data.DataColumn("описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  1297. base.Columns.Add(this.columnописание_специальности);
  1298. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1299. this.columnкод_специальности}, true));
  1300. this.columnкод_специальности.AutoIncrement = true;
  1301. this.columnкод_специальности.AutoIncrementSeed = -1;
  1302. this.columnкод_специальности.AutoIncrementStep = -1;
  1303. this.columnкод_специальности.AllowDBNull = false;
  1304. this.columnкод_специальности.ReadOnly = true;
  1305. this.columnкод_специальности.Unique = true;
  1306. this.columnнаименование_специальности.AllowDBNull = false;
  1307. this.columnнаименование_специальности.MaxLength = 50;
  1308. this.columnописание_специальности.MaxLength = 2147483647;
  1309. }
  1310. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1311. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1312. public specRow NewspecRow() {
  1313. return ((specRow)(this.NewRow()));
  1314. }
  1315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1317. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1318. return new specRow(builder);
  1319. }
  1320. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1321. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1322. protected override global::System.Type GetRowType() {
  1323. return typeof(specRow);
  1324. }
  1325. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1326. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1327. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1328. base.OnRowChanged(e);
  1329. if ((this.specRowChanged != null)) {
  1330. this.specRowChanged(this, new specRowChangeEvent(((specRow)(e.Row)), e.Action));
  1331. }
  1332. }
  1333. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1334. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1335. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1336. base.OnRowChanging(e);
  1337. if ((this.specRowChanging != null)) {
  1338. this.specRowChanging(this, new specRowChangeEvent(((specRow)(e.Row)), e.Action));
  1339. }
  1340. }
  1341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1343. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1344. base.OnRowDeleted(e);
  1345. if ((this.specRowDeleted != null)) {
  1346. this.specRowDeleted(this, new specRowChangeEvent(((specRow)(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 OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1352. base.OnRowDeleting(e);
  1353. if ((this.specRowDeleting != null)) {
  1354. this.specRowDeleting(this, new specRowChangeEvent(((specRow)(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. public void RemovespecRow(specRow row) {
  1360. this.Rows.Remove(row);
  1361. }
  1362. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1363. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1364. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1365. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1366. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1367. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  1368. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1369. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1370. any1.MinOccurs = new decimal(0);
  1371. any1.MaxOccurs = decimal.MaxValue;
  1372. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1373. sequence.Items.Add(any1);
  1374. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1375. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1376. any2.MinOccurs = new decimal(1);
  1377. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1378. sequence.Items.Add(any2);
  1379. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1380. attribute1.Name = "namespace";
  1381. attribute1.FixedValue = ds.Namespace;
  1382. type.Attributes.Add(attribute1);
  1383. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1384. attribute2.Name = "tableTypeName";
  1385. attribute2.FixedValue = "specDataTable";
  1386. type.Attributes.Add(attribute2);
  1387. type.Particle = sequence;
  1388. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1389. if (xs.Contains(dsSchema.TargetNamespace)) {
  1390. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1391. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1392. try {
  1393. global::System.Xml.Schema.XmlSchema schema = null;
  1394. dsSchema.Write(s1);
  1395. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1396. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1397. s2.SetLength(0);
  1398. schema.Write(s2);
  1399. if ((s1.Length == s2.Length)) {
  1400. s1.Position = 0;
  1401. s2.Position = 0;
  1402. for (; ((s1.Position != s1.Length)
  1403. && (s1.ReadByte() == s2.ReadByte())); ) {
  1404. ;
  1405. }
  1406. if ((s1.Position == s1.Length)) {
  1407. return type;
  1408. }
  1409. }
  1410. }
  1411. }
  1412. finally {
  1413. if ((s1 != null)) {
  1414. s1.Close();
  1415. }
  1416. if ((s2 != null)) {
  1417. s2.Close();
  1418. }
  1419. }
  1420. }
  1421. xs.Add(dsSchema);
  1422. return type;
  1423. }
  1424. }
  1425. /// <summary>
  1426. ///Represents the strongly named DataTable class.
  1427. ///</summary>
  1428. [global::System.Serializable()]
  1429. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1430. public partial class StudentsDataTable : global::System.Data.TypedTableBase<StudentsRow> {
  1431. private global::System.Data.DataColumn columnКод_студента;
  1432. private global::System.Data.DataColumn columnФИО;
  1433. private global::System.Data.DataColumn columnПол;
  1434. private global::System.Data.DataColumn columnРодители;
  1435. private global::System.Data.DataColumn columnАдрес;
  1436. private global::System.Data.DataColumn columnТелефон;
  1437. private global::System.Data.DataColumn columnПаспортные_данные;
  1438. private global::System.Data.DataColumn columnГруппа;
  1439. private global::System.Data.DataColumn columnДата_рождения;
  1440. private global::System.Data.DataColumn columnДата_поступления;
  1441. private global::System.Data.DataColumn columnОчная_форма_обучения;
  1442. private global::System.Data.DataColumn columnНомер_зачетки;
  1443. private global::System.Data.DataColumn columnКурс;
  1444. private global::System.Data.DataColumn columnКод_специальности;
  1445. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1446. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1447. public StudentsDataTable() {
  1448. this.TableName = "Students";
  1449. this.BeginInit();
  1450. this.InitClass();
  1451. this.EndInit();
  1452. }
  1453. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1454. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1455. internal StudentsDataTable(global::System.Data.DataTable table) {
  1456. this.TableName = table.TableName;
  1457. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1458. this.CaseSensitive = table.CaseSensitive;
  1459. }
  1460. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1461. this.Locale = table.Locale;
  1462. }
  1463. if ((table.Namespace != table.DataSet.Namespace)) {
  1464. this.Namespace = table.Namespace;
  1465. }
  1466. this.Prefix = table.Prefix;
  1467. this.MinimumCapacity = table.MinimumCapacity;
  1468. }
  1469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1471. protected StudentsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1472. base(info, context) {
  1473. this.InitVars();
  1474. }
  1475. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1476. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1477. public global::System.Data.DataColumn Код_студентаColumn {
  1478. get {
  1479. return this.columnКод_студента;
  1480. }
  1481. }
  1482. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1483. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1484. public global::System.Data.DataColumn ФИОColumn {
  1485. get {
  1486. return this.columnФИО;
  1487. }
  1488. }
  1489. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1490. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1491. public global::System.Data.DataColumn ПолColumn {
  1492. get {
  1493. return this.columnПол;
  1494. }
  1495. }
  1496. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1497. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1498. public global::System.Data.DataColumn РодителиColumn {
  1499. get {
  1500. return this.columnРодители;
  1501. }
  1502. }
  1503. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1504. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1505. public global::System.Data.DataColumn АдресColumn {
  1506. get {
  1507. return this.columnАдрес;
  1508. }
  1509. }
  1510. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1511. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1512. public global::System.Data.DataColumn ТелефонColumn {
  1513. get {
  1514. return this.columnТелефон;
  1515. }
  1516. }
  1517. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1518. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1519. public global::System.Data.DataColumn Паспортные_данныеColumn {
  1520. get {
  1521. return this.columnПаспортные_данные;
  1522. }
  1523. }
  1524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1526. public global::System.Data.DataColumn ГруппаColumn {
  1527. get {
  1528. return this.columnГруппа;
  1529. }
  1530. }
  1531. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1532. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1533. public global::System.Data.DataColumn Дата_рожденияColumn {
  1534. get {
  1535. return this.columnДата_рождения;
  1536. }
  1537. }
  1538. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1539. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1540. public global::System.Data.DataColumn Дата_поступленияColumn {
  1541. get {
  1542. return this.columnДата_поступления;
  1543. }
  1544. }
  1545. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1547. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  1548. get {
  1549. return this.columnОчная_форма_обучения;
  1550. }
  1551. }
  1552. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1553. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1554. public global::System.Data.DataColumn Номер_зачеткиColumn {
  1555. get {
  1556. return this.columnНомер_зачетки;
  1557. }
  1558. }
  1559. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1560. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1561. public global::System.Data.DataColumn КурсColumn {
  1562. get {
  1563. return this.columnКурс;
  1564. }
  1565. }
  1566. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1567. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1568. public global::System.Data.DataColumn Код_специальностиColumn {
  1569. get {
  1570. return this.columnКод_специальности;
  1571. }
  1572. }
  1573. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1574. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1575. [global::System.ComponentModel.Browsable(false)]
  1576. public int Count {
  1577. get {
  1578. return this.Rows.Count;
  1579. }
  1580. }
  1581. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1582. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1583. public StudentsRow this[int index] {
  1584. get {
  1585. return ((StudentsRow)(this.Rows[index]));
  1586. }
  1587. }
  1588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1589. public event StudentsRowChangeEventHandler StudentsRowChanging;
  1590. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1591. public event StudentsRowChangeEventHandler StudentsRowChanged;
  1592. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1593. public event StudentsRowChangeEventHandler StudentsRowDeleting;
  1594. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1595. public event StudentsRowChangeEventHandler StudentsRowDeleted;
  1596. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1597. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1598. public void AddStudentsRow(StudentsRow row) {
  1599. this.Rows.Add(row);
  1600. }
  1601. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1602. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1603. public StudentsRow AddStudentsRow(string ФИО, string Пол, string Родители, string Адрес, string Телефон, string Паспортные_данные, string Группа, System.DateTime Дата_рождения, System.DateTime Дата_поступления, bool Очная_форма_обучения, long Номер_зачетки, byte Курс, long Код_специальности) {
  1604. StudentsRow rowStudentsRow = ((StudentsRow)(this.NewRow()));
  1605. object[] columnValuesArray = new object[] {
  1606. null,
  1607. ФИО,
  1608. Пол,
  1609. Родители,
  1610. Адрес,
  1611. Телефон,
  1612. Паспортные_данные,
  1613. Группа,
  1614. Дата_рождения,
  1615. Дата_поступления,
  1616. Очная_форма_обучения,
  1617. Номер_зачетки,
  1618. Курс,
  1619. Код_специальности};
  1620. rowStudentsRow.ItemArray = columnValuesArray;
  1621. this.Rows.Add(rowStudentsRow);
  1622. return rowStudentsRow;
  1623. }
  1624. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1626. public StudentsRow FindByКод_студента(long Код_студента) {
  1627. return ((StudentsRow)(this.Rows.Find(new object[] {
  1628. Код_студента})));
  1629. }
  1630. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1631. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1632. public override global::System.Data.DataTable Clone() {
  1633. StudentsDataTable cln = ((StudentsDataTable)(base.Clone()));
  1634. cln.InitVars();
  1635. return cln;
  1636. }
  1637. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1638. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1639. protected override global::System.Data.DataTable CreateInstance() {
  1640. return new StudentsDataTable();
  1641. }
  1642. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1643. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1644. internal void InitVars() {
  1645. this.columnКод_студента = base.Columns["Код студента"];
  1646. this.columnФИО = base.Columns["ФИО"];
  1647. this.columnПол = base.Columns["Пол"];
  1648. this.columnРодители = base.Columns["Родители"];
  1649. this.columnАдрес = base.Columns["Адрес"];
  1650. this.columnТелефон = base.Columns["Телефон"];
  1651. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  1652. this.columnГруппа = base.Columns["Группа"];
  1653. this.columnДата_рождения = base.Columns["Дата рождения"];
  1654. this.columnДата_поступления = base.Columns["Дата поступления"];
  1655. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  1656. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  1657. this.columnКурс = base.Columns["Курс"];
  1658. this.columnКод_специальности = base.Columns["Код специальности"];
  1659. }
  1660. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1661. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1662. private void InitClass() {
  1663. this.columnКод_студента = new global::System.Data.DataColumn("Код студента", typeof(long), null, global::System.Data.MappingType.Element);
  1664. base.Columns.Add(this.columnКод_студента);
  1665. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  1666. base.Columns.Add(this.columnФИО);
  1667. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  1668. base.Columns.Add(this.columnПол);
  1669. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  1670. base.Columns.Add(this.columnРодители);
  1671. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  1672. base.Columns.Add(this.columnАдрес);
  1673. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  1674. base.Columns.Add(this.columnТелефон);
  1675. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  1676. base.Columns.Add(this.columnПаспортные_данные);
  1677. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  1678. base.Columns.Add(this.columnГруппа);
  1679. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1680. base.Columns.Add(this.columnДата_рождения);
  1681. this.columnДата_поступления = new global::System.Data.DataColumn("Дата поступления", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  1682. base.Columns.Add(this.columnДата_поступления);
  1683. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  1684. base.Columns.Add(this.columnОчная_форма_обучения);
  1685. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  1686. base.Columns.Add(this.columnНомер_зачетки);
  1687. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  1688. base.Columns.Add(this.columnКурс);
  1689. this.columnКод_специальности = new global::System.Data.DataColumn("Код специальности", typeof(long), null, global::System.Data.MappingType.Element);
  1690. base.Columns.Add(this.columnКод_специальности);
  1691. this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
  1692. this.columnКод_студента}, true));
  1693. this.columnКод_студента.AutoIncrement = true;
  1694. this.columnКод_студента.AutoIncrementSeed = -1;
  1695. this.columnКод_студента.AutoIncrementStep = -1;
  1696. this.columnКод_студента.AllowDBNull = false;
  1697. this.columnКод_студента.ReadOnly = true;
  1698. this.columnКод_студента.Unique = true;
  1699. this.columnФИО.MaxLength = 2147483647;
  1700. this.columnПол.MaxLength = 2147483647;
  1701. this.columnРодители.MaxLength = 2147483647;
  1702. this.columnАдрес.MaxLength = 2147483647;
  1703. this.columnТелефон.MaxLength = 2147483647;
  1704. this.columnПаспортные_данные.MaxLength = 2147483647;
  1705. this.columnГруппа.MaxLength = 2147483647;
  1706. }
  1707. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1708. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1709. public StudentsRow NewStudentsRow() {
  1710. return ((StudentsRow)(this.NewRow()));
  1711. }
  1712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1714. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  1715. return new StudentsRow(builder);
  1716. }
  1717. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1718. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1719. protected override global::System.Type GetRowType() {
  1720. return typeof(StudentsRow);
  1721. }
  1722. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1723. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1724. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  1725. base.OnRowChanged(e);
  1726. if ((this.StudentsRowChanged != null)) {
  1727. this.StudentsRowChanged(this, new StudentsRowChangeEvent(((StudentsRow)(e.Row)), e.Action));
  1728. }
  1729. }
  1730. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1731. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1732. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  1733. base.OnRowChanging(e);
  1734. if ((this.StudentsRowChanging != null)) {
  1735. this.StudentsRowChanging(this, new StudentsRowChangeEvent(((StudentsRow)(e.Row)), e.Action));
  1736. }
  1737. }
  1738. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1739. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1740. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  1741. base.OnRowDeleted(e);
  1742. if ((this.StudentsRowDeleted != null)) {
  1743. this.StudentsRowDeleted(this, new StudentsRowChangeEvent(((StudentsRow)(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 OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  1749. base.OnRowDeleting(e);
  1750. if ((this.StudentsRowDeleting != null)) {
  1751. this.StudentsRowDeleting(this, new StudentsRowChangeEvent(((StudentsRow)(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. public void RemoveStudentsRow(StudentsRow row) {
  1757. this.Rows.Remove(row);
  1758. }
  1759. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1760. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1761. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  1762. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  1763. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  1764. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  1765. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  1766. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  1767. any1.MinOccurs = new decimal(0);
  1768. any1.MaxOccurs = decimal.MaxValue;
  1769. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1770. sequence.Items.Add(any1);
  1771. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  1772. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  1773. any2.MinOccurs = new decimal(1);
  1774. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  1775. sequence.Items.Add(any2);
  1776. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1777. attribute1.Name = "namespace";
  1778. attribute1.FixedValue = ds.Namespace;
  1779. type.Attributes.Add(attribute1);
  1780. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  1781. attribute2.Name = "tableTypeName";
  1782. attribute2.FixedValue = "StudentsDataTable";
  1783. type.Attributes.Add(attribute2);
  1784. type.Particle = sequence;
  1785. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  1786. if (xs.Contains(dsSchema.TargetNamespace)) {
  1787. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  1788. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  1789. try {
  1790. global::System.Xml.Schema.XmlSchema schema = null;
  1791. dsSchema.Write(s1);
  1792. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  1793. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  1794. s2.SetLength(0);
  1795. schema.Write(s2);
  1796. if ((s1.Length == s2.Length)) {
  1797. s1.Position = 0;
  1798. s2.Position = 0;
  1799. for (; ((s1.Position != s1.Length)
  1800. && (s1.ReadByte() == s2.ReadByte())); ) {
  1801. ;
  1802. }
  1803. if ((s1.Position == s1.Length)) {
  1804. return type;
  1805. }
  1806. }
  1807. }
  1808. }
  1809. finally {
  1810. if ((s1 != null)) {
  1811. s1.Close();
  1812. }
  1813. if ((s2 != null)) {
  1814. s2.Close();
  1815. }
  1816. }
  1817. }
  1818. xs.Add(dsSchema);
  1819. return type;
  1820. }
  1821. }
  1822. /// <summary>
  1823. ///Represents the strongly named DataTable class.
  1824. ///</summary>
  1825. [global::System.Serializable()]
  1826. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  1827. public partial class _запрос_студенты_оценкиDataTable : global::System.Data.TypedTableBase<_запрос_студенты_оценкиRow> {
  1828. private global::System.Data.DataColumn columnфио_студента;
  1829. private global::System.Data.DataColumn columnоценка_первого_экзамена;
  1830. private global::System.Data.DataColumn columnоценка_второго_экзамена;
  1831. private global::System.Data.DataColumn columnоценка_третьего_экзамена;
  1832. private global::System.Data.DataColumn columnдата_третьего_экзамена;
  1833. private global::System.Data.DataColumn columnдата_второго_экзамена;
  1834. private global::System.Data.DataColumn columnдата_первого_экзамена;
  1835. private global::System.Data.DataColumn columnсредний_балл_студента_за_сессию;
  1836. private global::System.Data.DataColumn columnнаименование_предмета_первого_экзамена;
  1837. private global::System.Data.DataColumn columnнаименование_предмета_третьего_экзамена;
  1838. private global::System.Data.DataColumn columnнаименование_предмета_второго_экзамена;
  1839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1841. public _запрос_студенты_оценкиDataTable() {
  1842. this.TableName = "запрос студенты+оценки";
  1843. this.BeginInit();
  1844. this.InitClass();
  1845. this.EndInit();
  1846. }
  1847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1849. internal _запрос_студенты_оценкиDataTable(global::System.Data.DataTable table) {
  1850. this.TableName = table.TableName;
  1851. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  1852. this.CaseSensitive = table.CaseSensitive;
  1853. }
  1854. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  1855. this.Locale = table.Locale;
  1856. }
  1857. if ((table.Namespace != table.DataSet.Namespace)) {
  1858. this.Namespace = table.Namespace;
  1859. }
  1860. this.Prefix = table.Prefix;
  1861. this.MinimumCapacity = table.MinimumCapacity;
  1862. }
  1863. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1864. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1865. protected _запрос_студенты_оценкиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  1866. base(info, context) {
  1867. this.InitVars();
  1868. }
  1869. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1870. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1871. public global::System.Data.DataColumn фио_студентаColumn {
  1872. get {
  1873. return this.columnфио_студента;
  1874. }
  1875. }
  1876. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1877. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1878. public global::System.Data.DataColumn оценка_первого_экзаменаColumn {
  1879. get {
  1880. return this.columnоценка_первого_экзамена;
  1881. }
  1882. }
  1883. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1884. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1885. public global::System.Data.DataColumn оценка_второго_экзаменаColumn {
  1886. get {
  1887. return this.columnоценка_второго_экзамена;
  1888. }
  1889. }
  1890. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1891. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1892. public global::System.Data.DataColumn оценка_третьего_экзаменаColumn {
  1893. get {
  1894. return this.columnоценка_третьего_экзамена;
  1895. }
  1896. }
  1897. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1898. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1899. public global::System.Data.DataColumn дата_третьего_экзаменаColumn {
  1900. get {
  1901. return this.columnдата_третьего_экзамена;
  1902. }
  1903. }
  1904. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1905. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1906. public global::System.Data.DataColumn дата_второго_экзаменаColumn {
  1907. get {
  1908. return this.columnдата_второго_экзамена;
  1909. }
  1910. }
  1911. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1912. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1913. public global::System.Data.DataColumn дата_первого_экзаменаColumn {
  1914. get {
  1915. return this.columnдата_первого_экзамена;
  1916. }
  1917. }
  1918. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1919. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1920. public global::System.Data.DataColumn средний_балл_студента_за_сессиюColumn {
  1921. get {
  1922. return this.columnсредний_балл_студента_за_сессию;
  1923. }
  1924. }
  1925. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1926. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1927. public global::System.Data.DataColumn наименование_предмета_первого_экзаменаColumn {
  1928. get {
  1929. return this.columnнаименование_предмета_первого_экзамена;
  1930. }
  1931. }
  1932. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1933. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1934. public global::System.Data.DataColumn наименование_предмета_третьего_экзаменаColumn {
  1935. get {
  1936. return this.columnнаименование_предмета_третьего_экзамена;
  1937. }
  1938. }
  1939. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1940. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1941. public global::System.Data.DataColumn наименование_предмета_второго_экзаменаColumn {
  1942. get {
  1943. return this.columnнаименование_предмета_второго_экзамена;
  1944. }
  1945. }
  1946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1948. [global::System.ComponentModel.Browsable(false)]
  1949. public int Count {
  1950. get {
  1951. return this.Rows.Count;
  1952. }
  1953. }
  1954. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1955. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1956. public _запрос_студенты_оценкиRow this[int index] {
  1957. get {
  1958. return ((_запрос_студенты_оценкиRow)(this.Rows[index]));
  1959. }
  1960. }
  1961. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1962. public event _запрос_студенты_оценкиRowChangeEventHandler _запрос_студенты_оценкиRowChanging;
  1963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1964. public event _запрос_студенты_оценкиRowChangeEventHandler _запрос_студенты_оценкиRowChanged;
  1965. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1966. public event _запрос_студенты_оценкиRowChangeEventHandler _запрос_студенты_оценкиRowDeleting;
  1967. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1968. public event _запрос_студенты_оценкиRowChangeEventHandler _запрос_студенты_оценкиRowDeleted;
  1969. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1970. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1971. public void Add_запрос_студенты_оценкиRow(_запрос_студенты_оценкиRow row) {
  1972. this.Rows.Add(row);
  1973. }
  1974. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1975. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1976. public _запрос_студенты_оценкиRow Add_запрос_студенты_оценкиRow(string фио_студента, byte оценка_первого_экзамена, byte оценка_второго_экзамена, byte оценка_третьего_экзамена, System.DateTime дата_третьего_экзамена, System.DateTime дата_второго_экзамена, System.DateTime дата_первого_экзамена, float средний_балл_студента_за_сессию, string наименование_предмета_первого_экзамена, string наименование_предмета_третьего_экзамена, string наименование_предмета_второго_экзамена) {
  1977. _запрос_студенты_оценкиRow row_запрос_студенты_оценкиRow = ((_запрос_студенты_оценкиRow)(this.NewRow()));
  1978. object[] columnValuesArray = new object[] {
  1979. фио_студента,
  1980. оценка_первого_экзамена,
  1981. оценка_второго_экзамена,
  1982. оценка_третьего_экзамена,
  1983. дата_третьего_экзамена,
  1984. дата_второго_экзамена,
  1985. дата_первого_экзамена,
  1986. средний_балл_студента_за_сессию,
  1987. наименование_предмета_первого_экзамена,
  1988. наименование_предмета_третьего_экзамена,
  1989. наименование_предмета_второго_экзамена};
  1990. row_запрос_студенты_оценкиRow.ItemArray = columnValuesArray;
  1991. this.Rows.Add(row_запрос_студенты_оценкиRow);
  1992. return row_запрос_студенты_оценкиRow;
  1993. }
  1994. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  1995. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  1996. public override global::System.Data.DataTable Clone() {
  1997. _запрос_студенты_оценкиDataTable cln = ((_запрос_студенты_оценкиDataTable)(base.Clone()));
  1998. cln.InitVars();
  1999. return cln;
  2000. }
  2001. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2002. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2003. protected override global::System.Data.DataTable CreateInstance() {
  2004. return new _запрос_студенты_оценкиDataTable();
  2005. }
  2006. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2008. internal void InitVars() {
  2009. this.columnфио_студента = base.Columns["фио студента"];
  2010. this.columnоценка_первого_экзамена = base.Columns["оценка первого экзамена"];
  2011. this.columnоценка_второго_экзамена = base.Columns["оценка второго экзамена"];
  2012. this.columnоценка_третьего_экзамена = base.Columns["оценка третьего экзамена"];
  2013. this.columnдата_третьего_экзамена = base.Columns["дата третьего экзамена"];
  2014. this.columnдата_второго_экзамена = base.Columns["дата второго экзамена"];
  2015. this.columnдата_первого_экзамена = base.Columns["дата первого экзамена"];
  2016. this.columnсредний_балл_студента_за_сессию = base.Columns["средний балл студента за сессию"];
  2017. this.columnнаименование_предмета_первого_экзамена = base.Columns["наименование предмета первого экзамена"];
  2018. this.columnнаименование_предмета_третьего_экзамена = base.Columns["наименование предмета третьего экзамена"];
  2019. this.columnнаименование_предмета_второго_экзамена = base.Columns["наименование предмета второго экзамена"];
  2020. }
  2021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2022. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2023. private void InitClass() {
  2024. this.columnфио_студента = new global::System.Data.DataColumn("фио студента", typeof(string), null, global::System.Data.MappingType.Element);
  2025. base.Columns.Add(this.columnфио_студента);
  2026. this.columnоценка_первого_экзамена = new global::System.Data.DataColumn("оценка первого экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  2027. base.Columns.Add(this.columnоценка_первого_экзамена);
  2028. this.columnоценка_второго_экзамена = new global::System.Data.DataColumn("оценка второго экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  2029. base.Columns.Add(this.columnоценка_второго_экзамена);
  2030. this.columnоценка_третьего_экзамена = new global::System.Data.DataColumn("оценка третьего экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  2031. base.Columns.Add(this.columnоценка_третьего_экзамена);
  2032. this.columnдата_третьего_экзамена = new global::System.Data.DataColumn("дата третьего экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2033. base.Columns.Add(this.columnдата_третьего_экзамена);
  2034. this.columnдата_второго_экзамена = new global::System.Data.DataColumn("дата второго экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2035. base.Columns.Add(this.columnдата_второго_экзамена);
  2036. this.columnдата_первого_экзамена = new global::System.Data.DataColumn("дата первого экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2037. base.Columns.Add(this.columnдата_первого_экзамена);
  2038. this.columnсредний_балл_студента_за_сессию = new global::System.Data.DataColumn("средний балл студента за сессию", typeof(float), null, global::System.Data.MappingType.Element);
  2039. base.Columns.Add(this.columnсредний_балл_студента_за_сессию);
  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(string), 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фио_студента.MaxLength = 2147483647;
  2047. this.columnнаименование_предмета_первого_экзамена.MaxLength = 2147483647;
  2048. this.columnнаименование_предмета_третьего_экзамена.MaxLength = 2147483647;
  2049. this.columnнаименование_предмета_второго_экзамена.MaxLength = 2147483647;
  2050. this.ExtendedProperties.Add("Generator_TableVarName", "_tableзапрос_студенты_оценки");
  2051. this.ExtendedProperties.Add("Generator_UserTableName", "запрос студенты+оценки");
  2052. }
  2053. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2054. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2055. public _запрос_студенты_оценкиRow New_запрос_студенты_оценкиRow() {
  2056. return ((_запрос_студенты_оценкиRow)(this.NewRow()));
  2057. }
  2058. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2059. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2060. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2061. return new _запрос_студенты_оценкиRow(builder);
  2062. }
  2063. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2064. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2065. protected override global::System.Type GetRowType() {
  2066. return typeof(_запрос_студенты_оценкиRow);
  2067. }
  2068. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2069. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2070. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2071. base.OnRowChanged(e);
  2072. if ((this._запрос_студенты_оценкиRowChanged != null)) {
  2073. this._запрос_студенты_оценкиRowChanged(this, new _запрос_студенты_оценкиRowChangeEvent(((_запрос_студенты_оценкиRow)(e.Row)), e.Action));
  2074. }
  2075. }
  2076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2078. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2079. base.OnRowChanging(e);
  2080. if ((this._запрос_студенты_оценкиRowChanging != null)) {
  2081. this._запрос_студенты_оценкиRowChanging(this, new _запрос_студенты_оценкиRowChangeEvent(((_запрос_студенты_оценкиRow)(e.Row)), e.Action));
  2082. }
  2083. }
  2084. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2085. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2086. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2087. base.OnRowDeleted(e);
  2088. if ((this._запрос_студенты_оценкиRowDeleted != null)) {
  2089. this._запрос_студенты_оценкиRowDeleted(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 OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2095. base.OnRowDeleting(e);
  2096. if ((this._запрос_студенты_оценкиRowDeleting != null)) {
  2097. this._запрос_студенты_оценкиRowDeleting(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. public void Remove_запрос_студенты_оценкиRow(_запрос_студенты_оценкиRow row) {
  2103. this.Rows.Remove(row);
  2104. }
  2105. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2106. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2107. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2108. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2109. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2110. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  2111. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2112. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2113. any1.MinOccurs = new decimal(0);
  2114. any1.MaxOccurs = decimal.MaxValue;
  2115. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2116. sequence.Items.Add(any1);
  2117. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2118. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2119. any2.MinOccurs = new decimal(1);
  2120. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2121. sequence.Items.Add(any2);
  2122. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2123. attribute1.Name = "namespace";
  2124. attribute1.FixedValue = ds.Namespace;
  2125. type.Attributes.Add(attribute1);
  2126. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2127. attribute2.Name = "tableTypeName";
  2128. attribute2.FixedValue = "_запрос_студенты_оценкиDataTable";
  2129. type.Attributes.Add(attribute2);
  2130. type.Particle = sequence;
  2131. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2132. if (xs.Contains(dsSchema.TargetNamespace)) {
  2133. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2134. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2135. try {
  2136. global::System.Xml.Schema.XmlSchema schema = null;
  2137. dsSchema.Write(s1);
  2138. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2139. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2140. s2.SetLength(0);
  2141. schema.Write(s2);
  2142. if ((s1.Length == s2.Length)) {
  2143. s1.Position = 0;
  2144. s2.Position = 0;
  2145. for (; ((s1.Position != s1.Length)
  2146. && (s1.ReadByte() == s2.ReadByte())); ) {
  2147. ;
  2148. }
  2149. if ((s1.Position == s1.Length)) {
  2150. return type;
  2151. }
  2152. }
  2153. }
  2154. }
  2155. finally {
  2156. if ((s1 != null)) {
  2157. s1.Close();
  2158. }
  2159. if ((s2 != null)) {
  2160. s2.Close();
  2161. }
  2162. }
  2163. }
  2164. xs.Add(dsSchema);
  2165. return type;
  2166. }
  2167. }
  2168. /// <summary>
  2169. ///Represents the strongly named DataTable class.
  2170. ///</summary>
  2171. [global::System.Serializable()]
  2172. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2173. public partial class _Запрос_Студенты_СпециальностиDataTable : global::System.Data.TypedTableBase<_Запрос_Студенты_СпециальностиRow> {
  2174. private global::System.Data.DataColumn columnExpr1;
  2175. private global::System.Data.DataColumn columnФИО;
  2176. private global::System.Data.DataColumn columnПол;
  2177. private global::System.Data.DataColumn columnРодители;
  2178. private global::System.Data.DataColumn columnАдрес;
  2179. private global::System.Data.DataColumn columnПаспортные_данные;
  2180. private global::System.Data.DataColumn columnТелефон;
  2181. private global::System.Data.DataColumn columnГруппа;
  2182. private global::System.Data.DataColumn columnДата_рождения;
  2183. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2184. private global::System.Data.DataColumn columnНомер_зачетки;
  2185. private global::System.Data.DataColumn columnКурс;
  2186. private global::System.Data.DataColumn columnнаименование_специальности;
  2187. private global::System.Data.DataColumn columnописание_специальности;
  2188. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2189. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2190. public _Запрос_Студенты_СпециальностиDataTable() {
  2191. this.TableName = "Запрос Студенты+Специальности";
  2192. this.BeginInit();
  2193. this.InitClass();
  2194. this.EndInit();
  2195. }
  2196. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2197. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2198. internal _Запрос_Студенты_СпециальностиDataTable(global::System.Data.DataTable table) {
  2199. this.TableName = table.TableName;
  2200. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2201. this.CaseSensitive = table.CaseSensitive;
  2202. }
  2203. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2204. this.Locale = table.Locale;
  2205. }
  2206. if ((table.Namespace != table.DataSet.Namespace)) {
  2207. this.Namespace = table.Namespace;
  2208. }
  2209. this.Prefix = table.Prefix;
  2210. this.MinimumCapacity = table.MinimumCapacity;
  2211. }
  2212. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2213. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2214. protected _Запрос_Студенты_СпециальностиDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2215. base(info, context) {
  2216. this.InitVars();
  2217. }
  2218. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2219. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2220. public global::System.Data.DataColumn Expr1Column {
  2221. get {
  2222. return this.columnExpr1;
  2223. }
  2224. }
  2225. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2226. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2227. public global::System.Data.DataColumn ФИОColumn {
  2228. get {
  2229. return this.columnФИО;
  2230. }
  2231. }
  2232. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2233. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2234. public global::System.Data.DataColumn ПолColumn {
  2235. get {
  2236. return this.columnПол;
  2237. }
  2238. }
  2239. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2240. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2241. public global::System.Data.DataColumn РодителиColumn {
  2242. get {
  2243. return this.columnРодители;
  2244. }
  2245. }
  2246. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2247. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2248. public global::System.Data.DataColumn АдресColumn {
  2249. get {
  2250. return this.columnАдрес;
  2251. }
  2252. }
  2253. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2254. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2255. public global::System.Data.DataColumn Паспортные_данныеColumn {
  2256. get {
  2257. return this.columnПаспортные_данные;
  2258. }
  2259. }
  2260. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2261. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2262. public global::System.Data.DataColumn ТелефонColumn {
  2263. get {
  2264. return this.columnТелефон;
  2265. }
  2266. }
  2267. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2268. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2269. public global::System.Data.DataColumn ГруппаColumn {
  2270. get {
  2271. return this.columnГруппа;
  2272. }
  2273. }
  2274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2276. public global::System.Data.DataColumn Дата_рожденияColumn {
  2277. get {
  2278. return this.columnДата_рождения;
  2279. }
  2280. }
  2281. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2282. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2283. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  2284. get {
  2285. return this.columnОчная_форма_обучения;
  2286. }
  2287. }
  2288. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2289. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2290. public global::System.Data.DataColumn Номер_зачеткиColumn {
  2291. get {
  2292. return this.columnНомер_зачетки;
  2293. }
  2294. }
  2295. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2296. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2297. public global::System.Data.DataColumn КурсColumn {
  2298. get {
  2299. return this.columnКурс;
  2300. }
  2301. }
  2302. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2303. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2304. public global::System.Data.DataColumn наименование_специальностиColumn {
  2305. get {
  2306. return this.columnнаименование_специальности;
  2307. }
  2308. }
  2309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2311. public global::System.Data.DataColumn описание_специальностиColumn {
  2312. get {
  2313. return this.columnописание_специальности;
  2314. }
  2315. }
  2316. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2317. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2318. [global::System.ComponentModel.Browsable(false)]
  2319. public int Count {
  2320. get {
  2321. return this.Rows.Count;
  2322. }
  2323. }
  2324. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2325. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2326. public _Запрос_Студенты_СпециальностиRow this[int index] {
  2327. get {
  2328. return ((_Запрос_Студенты_СпециальностиRow)(this.Rows[index]));
  2329. }
  2330. }
  2331. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2332. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowChanging;
  2333. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2334. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowChanged;
  2335. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2336. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowDeleting;
  2337. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2338. public event _Запрос_Студенты_СпециальностиRowChangeEventHandler _Запрос_Студенты_СпециальностиRowDeleted;
  2339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2341. public void Add_Запрос_Студенты_СпециальностиRow(_Запрос_Студенты_СпециальностиRow row) {
  2342. this.Rows.Add(row);
  2343. }
  2344. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2345. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2346. public _Запрос_Студенты_СпециальностиRow Add_Запрос_Студенты_СпециальностиRow(System.DateTime Expr1, string ФИО, string Пол, string Родители, string Адрес, string Паспортные_данные, string Телефон, string Группа, System.DateTime Дата_рождения, bool Очная_форма_обучения, long Номер_зачетки, byte Курс, string наименование_специальности, string описание_специальности) {
  2347. _Запрос_Студенты_СпециальностиRow row_Запрос_Студенты_СпециальностиRow = ((_Запрос_Студенты_СпециальностиRow)(this.NewRow()));
  2348. object[] columnValuesArray = new object[] {
  2349. Expr1,
  2350. ФИО,
  2351. Пол,
  2352. Родители,
  2353. Адрес,
  2354. Паспортные_данные,
  2355. Телефон,
  2356. Группа,
  2357. Дата_рождения,
  2358. Очная_форма_обучения,
  2359. Номер_зачетки,
  2360. Курс,
  2361. наименование_специальности,
  2362. описание_специальности};
  2363. row_Запрос_Студенты_СпециальностиRow.ItemArray = columnValuesArray;
  2364. this.Rows.Add(row_Запрос_Студенты_СпециальностиRow);
  2365. return row_Запрос_Студенты_СпециальностиRow;
  2366. }
  2367. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2368. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2369. public override global::System.Data.DataTable Clone() {
  2370. _Запрос_Студенты_СпециальностиDataTable cln = ((_Запрос_Студенты_СпециальностиDataTable)(base.Clone()));
  2371. cln.InitVars();
  2372. return cln;
  2373. }
  2374. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2375. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2376. protected override global::System.Data.DataTable CreateInstance() {
  2377. return new _Запрос_Студенты_СпециальностиDataTable();
  2378. }
  2379. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2380. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2381. internal void InitVars() {
  2382. this.columnExpr1 = base.Columns["Expr1"];
  2383. this.columnФИО = base.Columns["ФИО"];
  2384. this.columnПол = base.Columns["Пол"];
  2385. this.columnРодители = base.Columns["Родители"];
  2386. this.columnАдрес = base.Columns["Адрес"];
  2387. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  2388. this.columnТелефон = base.Columns["Телефон"];
  2389. this.columnГруппа = base.Columns["Группа"];
  2390. this.columnДата_рождения = base.Columns["Дата рождения"];
  2391. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  2392. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  2393. this.columnКурс = base.Columns["Курс"];
  2394. this.columnнаименование_специальности = base.Columns["наименование специальности"];
  2395. this.columnописание_специальности = base.Columns["описание специальности"];
  2396. }
  2397. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2398. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2399. private void InitClass() {
  2400. this.columnExpr1 = new global::System.Data.DataColumn("Expr1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2401. base.Columns.Add(this.columnExpr1);
  2402. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  2403. base.Columns.Add(this.columnФИО);
  2404. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  2405. base.Columns.Add(this.columnПол);
  2406. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  2407. base.Columns.Add(this.columnРодители);
  2408. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  2409. base.Columns.Add(this.columnАдрес);
  2410. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  2411. base.Columns.Add(this.columnПаспортные_данные);
  2412. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  2413. base.Columns.Add(this.columnТелефон);
  2414. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  2415. base.Columns.Add(this.columnГруппа);
  2416. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2417. base.Columns.Add(this.columnДата_рождения);
  2418. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  2419. base.Columns.Add(this.columnОчная_форма_обучения);
  2420. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  2421. base.Columns.Add(this.columnНомер_зачетки);
  2422. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), 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ФИО.MaxLength = 2147483647;
  2429. this.columnПол.MaxLength = 2147483647;
  2430. this.columnРодители.MaxLength = 2147483647;
  2431. this.columnАдрес.MaxLength = 2147483647;
  2432. this.columnПаспортные_данные.MaxLength = 2147483647;
  2433. this.columnТелефон.MaxLength = 2147483647;
  2434. this.columnГруппа.MaxLength = 2147483647;
  2435. this.columnнаименование_специальности.AllowDBNull = false;
  2436. this.columnнаименование_специальности.MaxLength = 50;
  2437. this.columnописание_специальности.MaxLength = 2147483647;
  2438. this.ExtendedProperties.Add("Generator_TableVarName", "_tableЗапрос_Студенты_Специальности");
  2439. this.ExtendedProperties.Add("Generator_UserTableName", "Запрос Студенты+Специальности");
  2440. }
  2441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2442. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2443. public _Запрос_Студенты_СпециальностиRow New_Запрос_Студенты_СпециальностиRow() {
  2444. return ((_Запрос_Студенты_СпециальностиRow)(this.NewRow()));
  2445. }
  2446. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2447. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2448. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2449. return new _Запрос_Студенты_СпециальностиRow(builder);
  2450. }
  2451. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2452. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2453. protected override global::System.Type GetRowType() {
  2454. return typeof(_Запрос_Студенты_СпециальностиRow);
  2455. }
  2456. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2457. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2458. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2459. base.OnRowChanged(e);
  2460. if ((this._Запрос_Студенты_СпециальностиRowChanged != null)) {
  2461. this._Запрос_Студенты_СпециальностиRowChanged(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2462. }
  2463. }
  2464. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2465. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2466. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2467. base.OnRowChanging(e);
  2468. if ((this._Запрос_Студенты_СпециальностиRowChanging != null)) {
  2469. this._Запрос_Студенты_СпециальностиRowChanging(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2470. }
  2471. }
  2472. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2473. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2474. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2475. base.OnRowDeleted(e);
  2476. if ((this._Запрос_Студенты_СпециальностиRowDeleted != null)) {
  2477. this._Запрос_Студенты_СпециальностиRowDeleted(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2478. }
  2479. }
  2480. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2481. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2482. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2483. base.OnRowDeleting(e);
  2484. if ((this._Запрос_Студенты_СпециальностиRowDeleting != null)) {
  2485. this._Запрос_Студенты_СпециальностиRowDeleting(this, new _Запрос_Студенты_СпециальностиRowChangeEvent(((_Запрос_Студенты_СпециальностиRow)(e.Row)), e.Action));
  2486. }
  2487. }
  2488. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2489. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2490. public void Remove_Запрос_Студенты_СпециальностиRow(_Запрос_Студенты_СпециальностиRow row) {
  2491. this.Rows.Remove(row);
  2492. }
  2493. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2494. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2495. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2496. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2497. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2498. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  2499. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2500. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2501. any1.MinOccurs = new decimal(0);
  2502. any1.MaxOccurs = decimal.MaxValue;
  2503. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2504. sequence.Items.Add(any1);
  2505. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2506. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2507. any2.MinOccurs = new decimal(1);
  2508. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2509. sequence.Items.Add(any2);
  2510. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2511. attribute1.Name = "namespace";
  2512. attribute1.FixedValue = ds.Namespace;
  2513. type.Attributes.Add(attribute1);
  2514. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2515. attribute2.Name = "tableTypeName";
  2516. attribute2.FixedValue = "_Запрос_Студенты_СпециальностиDataTable";
  2517. type.Attributes.Add(attribute2);
  2518. type.Particle = sequence;
  2519. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2520. if (xs.Contains(dsSchema.TargetNamespace)) {
  2521. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2522. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2523. try {
  2524. global::System.Xml.Schema.XmlSchema schema = null;
  2525. dsSchema.Write(s1);
  2526. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2527. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2528. s2.SetLength(0);
  2529. schema.Write(s2);
  2530. if ((s1.Length == s2.Length)) {
  2531. s1.Position = 0;
  2532. s2.Position = 0;
  2533. for (; ((s1.Position != s1.Length)
  2534. && (s1.ReadByte() == s2.ReadByte())); ) {
  2535. ;
  2536. }
  2537. if ((s1.Position == s1.Length)) {
  2538. return type;
  2539. }
  2540. }
  2541. }
  2542. }
  2543. finally {
  2544. if ((s1 != null)) {
  2545. s1.Close();
  2546. }
  2547. if ((s2 != null)) {
  2548. s2.Close();
  2549. }
  2550. }
  2551. }
  2552. xs.Add(dsSchema);
  2553. return type;
  2554. }
  2555. }
  2556. /// <summary>
  2557. ///Represents the strongly named DataTable class.
  2558. ///</summary>
  2559. [global::System.Serializable()]
  2560. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2561. public partial class Фильтр_ММDataTable : global::System.Data.TypedTableBase<Фильтр_ММRow> {
  2562. private global::System.Data.DataColumn columnExpr1;
  2563. private global::System.Data.DataColumn columnФИО;
  2564. private global::System.Data.DataColumn columnПол;
  2565. private global::System.Data.DataColumn columnРодители;
  2566. private global::System.Data.DataColumn columnАдрес;
  2567. private global::System.Data.DataColumn columnПаспортные_данные;
  2568. private global::System.Data.DataColumn columnТелефон;
  2569. private global::System.Data.DataColumn columnГруппа;
  2570. private global::System.Data.DataColumn columnДата_рождения;
  2571. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2572. private global::System.Data.DataColumn columnНомер_зачетки;
  2573. private global::System.Data.DataColumn columnКурс;
  2574. private global::System.Data.DataColumn columnописание_специальности;
  2575. private global::System.Data.DataColumn columnнаименование_специальности;
  2576. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2577. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2578. public Фильтр_ММDataTable() {
  2579. this.TableName = "Фильтр ММ";
  2580. this.BeginInit();
  2581. this.InitClass();
  2582. this.EndInit();
  2583. }
  2584. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2585. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2586. internal Фильтр_ММDataTable(global::System.Data.DataTable table) {
  2587. this.TableName = table.TableName;
  2588. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2589. this.CaseSensitive = table.CaseSensitive;
  2590. }
  2591. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2592. this.Locale = table.Locale;
  2593. }
  2594. if ((table.Namespace != table.DataSet.Namespace)) {
  2595. this.Namespace = table.Namespace;
  2596. }
  2597. this.Prefix = table.Prefix;
  2598. this.MinimumCapacity = table.MinimumCapacity;
  2599. }
  2600. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2601. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2602. protected Фильтр_ММDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2603. base(info, context) {
  2604. this.InitVars();
  2605. }
  2606. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2607. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2608. public global::System.Data.DataColumn Expr1Column {
  2609. get {
  2610. return this.columnExpr1;
  2611. }
  2612. }
  2613. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2614. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2615. public global::System.Data.DataColumn ФИОColumn {
  2616. get {
  2617. return this.columnФИО;
  2618. }
  2619. }
  2620. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2621. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2622. public global::System.Data.DataColumn ПолColumn {
  2623. get {
  2624. return this.columnПол;
  2625. }
  2626. }
  2627. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2628. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2629. public global::System.Data.DataColumn РодителиColumn {
  2630. get {
  2631. return this.columnРодители;
  2632. }
  2633. }
  2634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2636. public global::System.Data.DataColumn АдресColumn {
  2637. get {
  2638. return this.columnАдрес;
  2639. }
  2640. }
  2641. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2642. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2643. public global::System.Data.DataColumn Паспортные_данныеColumn {
  2644. get {
  2645. return this.columnПаспортные_данные;
  2646. }
  2647. }
  2648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2650. public global::System.Data.DataColumn ТелефонColumn {
  2651. get {
  2652. return this.columnТелефон;
  2653. }
  2654. }
  2655. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2656. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2657. public global::System.Data.DataColumn ГруппаColumn {
  2658. get {
  2659. return this.columnГруппа;
  2660. }
  2661. }
  2662. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2663. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2664. public global::System.Data.DataColumn Дата_рожденияColumn {
  2665. get {
  2666. return this.columnДата_рождения;
  2667. }
  2668. }
  2669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2671. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  2672. get {
  2673. return this.columnОчная_форма_обучения;
  2674. }
  2675. }
  2676. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2677. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2678. public global::System.Data.DataColumn Номер_зачеткиColumn {
  2679. get {
  2680. return this.columnНомер_зачетки;
  2681. }
  2682. }
  2683. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2684. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2685. public global::System.Data.DataColumn КурсColumn {
  2686. get {
  2687. return this.columnКурс;
  2688. }
  2689. }
  2690. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2691. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2692. public global::System.Data.DataColumn описание_специальностиColumn {
  2693. get {
  2694. return this.columnописание_специальности;
  2695. }
  2696. }
  2697. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2698. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2699. public global::System.Data.DataColumn наименование_специальностиColumn {
  2700. get {
  2701. return this.columnнаименование_специальности;
  2702. }
  2703. }
  2704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2706. [global::System.ComponentModel.Browsable(false)]
  2707. public int Count {
  2708. get {
  2709. return this.Rows.Count;
  2710. }
  2711. }
  2712. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2713. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2714. public Фильтр_ММRow this[int index] {
  2715. get {
  2716. return ((Фильтр_ММRow)(this.Rows[index]));
  2717. }
  2718. }
  2719. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2720. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowChanging;
  2721. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2722. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowChanged;
  2723. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2724. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowDeleting;
  2725. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2726. public event Фильтр_ММRowChangeEventHandler Фильтр_ММRowDeleted;
  2727. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2728. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2729. public void AddФильтр_ММRow(Фильтр_ММRow row) {
  2730. this.Rows.Add(row);
  2731. }
  2732. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2733. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2734. public Фильтр_ММRow AddФильтр_ММRow(System.DateTime Expr1, string ФИО, string Пол, string Родители, string Адрес, string Паспортные_данные, string Телефон, string Группа, System.DateTime Дата_рождения, bool Очная_форма_обучения, long Номер_зачетки, byte Курс, string описание_специальности, string наименование_специальности) {
  2735. Фильтр_ММRow rowФильтр_ММRow = ((Фильтр_ММRow)(this.NewRow()));
  2736. object[] columnValuesArray = new object[] {
  2737. Expr1,
  2738. ФИО,
  2739. Пол,
  2740. Родители,
  2741. Адрес,
  2742. Паспортные_данные,
  2743. Телефон,
  2744. Группа,
  2745. Дата_рождения,
  2746. Очная_форма_обучения,
  2747. Номер_зачетки,
  2748. Курс,
  2749. описание_специальности,
  2750. наименование_специальности};
  2751. rowФильтр_ММRow.ItemArray = columnValuesArray;
  2752. this.Rows.Add(rowФильтр_ММRow);
  2753. return rowФильтр_ММRow;
  2754. }
  2755. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2756. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2757. public override global::System.Data.DataTable Clone() {
  2758. Фильтр_ММDataTable cln = ((Фильтр_ММDataTable)(base.Clone()));
  2759. cln.InitVars();
  2760. return cln;
  2761. }
  2762. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2763. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2764. protected override global::System.Data.DataTable CreateInstance() {
  2765. return new Фильтр_ММDataTable();
  2766. }
  2767. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2768. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2769. internal void InitVars() {
  2770. this.columnExpr1 = base.Columns["Expr1"];
  2771. this.columnФИО = base.Columns["ФИО"];
  2772. this.columnПол = base.Columns["Пол"];
  2773. this.columnРодители = base.Columns["Родители"];
  2774. this.columnАдрес = base.Columns["Адрес"];
  2775. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  2776. this.columnТелефон = base.Columns["Телефон"];
  2777. this.columnГруппа = base.Columns["Группа"];
  2778. this.columnДата_рождения = base.Columns["Дата рождения"];
  2779. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  2780. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  2781. this.columnКурс = base.Columns["Курс"];
  2782. this.columnописание_специальности = base.Columns["описание специальности"];
  2783. this.columnнаименование_специальности = base.Columns["наименование специальности"];
  2784. }
  2785. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2786. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2787. private void InitClass() {
  2788. this.columnExpr1 = new global::System.Data.DataColumn("Expr1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2789. base.Columns.Add(this.columnExpr1);
  2790. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  2791. base.Columns.Add(this.columnФИО);
  2792. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  2793. base.Columns.Add(this.columnПол);
  2794. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  2795. base.Columns.Add(this.columnРодители);
  2796. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  2797. base.Columns.Add(this.columnАдрес);
  2798. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  2799. base.Columns.Add(this.columnПаспортные_данные);
  2800. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  2801. base.Columns.Add(this.columnТелефон);
  2802. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  2803. base.Columns.Add(this.columnГруппа);
  2804. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  2805. base.Columns.Add(this.columnДата_рождения);
  2806. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  2807. base.Columns.Add(this.columnОчная_форма_обучения);
  2808. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  2809. base.Columns.Add(this.columnНомер_зачетки);
  2810. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  2811. base.Columns.Add(this.columnКурс);
  2812. this.columnописание_специальности = new global::System.Data.DataColumn("описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2813. base.Columns.Add(this.columnописание_специальности);
  2814. this.columnнаименование_специальности = new global::System.Data.DataColumn("наименование специальности", typeof(string), null, global::System.Data.MappingType.Element);
  2815. base.Columns.Add(this.columnнаименование_специальности);
  2816. this.columnФИО.MaxLength = 2147483647;
  2817. this.columnПол.MaxLength = 2147483647;
  2818. this.columnРодители.MaxLength = 2147483647;
  2819. this.columnАдрес.MaxLength = 2147483647;
  2820. this.columnПаспортные_данные.MaxLength = 2147483647;
  2821. this.columnТелефон.MaxLength = 2147483647;
  2822. this.columnГруппа.MaxLength = 2147483647;
  2823. this.columnописание_специальности.MaxLength = 2147483647;
  2824. this.columnнаименование_специальности.AllowDBNull = false;
  2825. this.columnнаименование_специальности.MaxLength = 50;
  2826. }
  2827. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2828. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2829. public Фильтр_ММRow NewФильтр_ММRow() {
  2830. return ((Фильтр_ММRow)(this.NewRow()));
  2831. }
  2832. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2833. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2834. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  2835. return new Фильтр_ММRow(builder);
  2836. }
  2837. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2838. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2839. protected override global::System.Type GetRowType() {
  2840. return typeof(Фильтр_ММRow);
  2841. }
  2842. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2843. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2844. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  2845. base.OnRowChanged(e);
  2846. if ((this.Фильтр_ММRowChanged != null)) {
  2847. this.Фильтр_ММRowChanged(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2848. }
  2849. }
  2850. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2851. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2852. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  2853. base.OnRowChanging(e);
  2854. if ((this.Фильтр_ММRowChanging != null)) {
  2855. this.Фильтр_ММRowChanging(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2856. }
  2857. }
  2858. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2859. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2860. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  2861. base.OnRowDeleted(e);
  2862. if ((this.Фильтр_ММRowDeleted != null)) {
  2863. this.Фильтр_ММRowDeleted(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2864. }
  2865. }
  2866. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2867. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2868. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  2869. base.OnRowDeleting(e);
  2870. if ((this.Фильтр_ММRowDeleting != null)) {
  2871. this.Фильтр_ММRowDeleting(this, new Фильтр_ММRowChangeEvent(((Фильтр_ММRow)(e.Row)), e.Action));
  2872. }
  2873. }
  2874. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2875. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2876. public void RemoveФильтр_ММRow(Фильтр_ММRow row) {
  2877. this.Rows.Remove(row);
  2878. }
  2879. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2880. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2881. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  2882. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  2883. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  2884. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  2885. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  2886. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  2887. any1.MinOccurs = new decimal(0);
  2888. any1.MaxOccurs = decimal.MaxValue;
  2889. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2890. sequence.Items.Add(any1);
  2891. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  2892. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  2893. any2.MinOccurs = new decimal(1);
  2894. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  2895. sequence.Items.Add(any2);
  2896. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2897. attribute1.Name = "namespace";
  2898. attribute1.FixedValue = ds.Namespace;
  2899. type.Attributes.Add(attribute1);
  2900. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  2901. attribute2.Name = "tableTypeName";
  2902. attribute2.FixedValue = "Фильтр_ММDataTable";
  2903. type.Attributes.Add(attribute2);
  2904. type.Particle = sequence;
  2905. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  2906. if (xs.Contains(dsSchema.TargetNamespace)) {
  2907. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  2908. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  2909. try {
  2910. global::System.Xml.Schema.XmlSchema schema = null;
  2911. dsSchema.Write(s1);
  2912. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  2913. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  2914. s2.SetLength(0);
  2915. schema.Write(s2);
  2916. if ((s1.Length == s2.Length)) {
  2917. s1.Position = 0;
  2918. s2.Position = 0;
  2919. for (; ((s1.Position != s1.Length)
  2920. && (s1.ReadByte() == s2.ReadByte())); ) {
  2921. ;
  2922. }
  2923. if ((s1.Position == s1.Length)) {
  2924. return type;
  2925. }
  2926. }
  2927. }
  2928. }
  2929. finally {
  2930. if ((s1 != null)) {
  2931. s1.Close();
  2932. }
  2933. if ((s2 != null)) {
  2934. s2.Close();
  2935. }
  2936. }
  2937. }
  2938. xs.Add(dsSchema);
  2939. return type;
  2940. }
  2941. }
  2942. /// <summary>
  2943. ///Represents the strongly named DataTable class.
  2944. ///</summary>
  2945. [global::System.Serializable()]
  2946. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  2947. public partial class Фильтр_ОтецDataTable : global::System.Data.TypedTableBase<Фильтр_ОтецRow> {
  2948. private global::System.Data.DataColumn columnФИО;
  2949. private global::System.Data.DataColumn columnПол;
  2950. private global::System.Data.DataColumn columnExpr1;
  2951. private global::System.Data.DataColumn columnРодители;
  2952. private global::System.Data.DataColumn columnАдрес;
  2953. private global::System.Data.DataColumn columnПаспортные_данные;
  2954. private global::System.Data.DataColumn columnТелефон;
  2955. private global::System.Data.DataColumn columnГруппа;
  2956. private global::System.Data.DataColumn columnДата_рождения;
  2957. private global::System.Data.DataColumn columnОчная_форма_обучения;
  2958. private global::System.Data.DataColumn columnНомер_зачетки;
  2959. private global::System.Data.DataColumn columnКурс;
  2960. private global::System.Data.DataColumn columnописание_специальности;
  2961. private global::System.Data.DataColumn columnнаименование_специальности;
  2962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2964. public Фильтр_ОтецDataTable() {
  2965. this.TableName = "Фильтр Отец";
  2966. this.BeginInit();
  2967. this.InitClass();
  2968. this.EndInit();
  2969. }
  2970. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2971. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2972. internal Фильтр_ОтецDataTable(global::System.Data.DataTable table) {
  2973. this.TableName = table.TableName;
  2974. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  2975. this.CaseSensitive = table.CaseSensitive;
  2976. }
  2977. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  2978. this.Locale = table.Locale;
  2979. }
  2980. if ((table.Namespace != table.DataSet.Namespace)) {
  2981. this.Namespace = table.Namespace;
  2982. }
  2983. this.Prefix = table.Prefix;
  2984. this.MinimumCapacity = table.MinimumCapacity;
  2985. }
  2986. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2987. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2988. protected Фильтр_ОтецDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  2989. base(info, context) {
  2990. this.InitVars();
  2991. }
  2992. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  2993. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  2994. public global::System.Data.DataColumn ФИОColumn {
  2995. get {
  2996. return this.columnФИО;
  2997. }
  2998. }
  2999. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3000. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3001. public global::System.Data.DataColumn ПолColumn {
  3002. get {
  3003. return this.columnПол;
  3004. }
  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 Expr1Column {
  3009. get {
  3010. return this.columnExpr1;
  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. [global::System.ComponentModel.Browsable(false)]
  3093. public int Count {
  3094. get {
  3095. return this.Rows.Count;
  3096. }
  3097. }
  3098. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3099. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3100. public Фильтр_ОтецRow this[int index] {
  3101. get {
  3102. return ((Фильтр_ОтецRow)(this.Rows[index]));
  3103. }
  3104. }
  3105. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3106. public event Фильтр_ОтецRowChangeEventHandler Фильтр_ОтецRowChanging;
  3107. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3108. public event Фильтр_ОтецRowChangeEventHandler Фильтр_ОтецRowChanged;
  3109. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3110. public event Фильтр_ОтецRowChangeEventHandler Фильтр_ОтецRowDeleting;
  3111. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3112. public event Фильтр_ОтецRowChangeEventHandler Фильтр_ОтецRowDeleted;
  3113. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3114. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3115. public void AddФильтр_ОтецRow(Фильтр_ОтецRow row) {
  3116. this.Rows.Add(row);
  3117. }
  3118. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3119. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3120. public Фильтр_ОтецRow AddФильтр_ОтецRow(string ФИО, string Пол, System.DateTime Expr1, string Родители, string Адрес, string Паспортные_данные, string Телефон, string Группа, System.DateTime Дата_рождения, bool Очная_форма_обучения, long Номер_зачетки, byte Курс, string описание_специальности, string наименование_специальности) {
  3121. Фильтр_ОтецRow rowФильтр_ОтецRow = ((Фильтр_ОтецRow)(this.NewRow()));
  3122. object[] columnValuesArray = new object[] {
  3123. ФИО,
  3124. Пол,
  3125. Expr1,
  3126. Родители,
  3127. Адрес,
  3128. Паспортные_данные,
  3129. Телефон,
  3130. Группа,
  3131. Дата_рождения,
  3132. Очная_форма_обучения,
  3133. Номер_зачетки,
  3134. Курс,
  3135. описание_специальности,
  3136. наименование_специальности};
  3137. rowФильтр_ОтецRow.ItemArray = columnValuesArray;
  3138. this.Rows.Add(rowФильтр_ОтецRow);
  3139. return rowФильтр_ОтецRow;
  3140. }
  3141. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3142. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3143. public override global::System.Data.DataTable Clone() {
  3144. Фильтр_ОтецDataTable cln = ((Фильтр_ОтецDataTable)(base.Clone()));
  3145. cln.InitVars();
  3146. return cln;
  3147. }
  3148. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3149. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3150. protected override global::System.Data.DataTable CreateInstance() {
  3151. return new Фильтр_ОтецDataTable();
  3152. }
  3153. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3154. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3155. internal void InitVars() {
  3156. this.columnФИО = base.Columns["ФИО"];
  3157. this.columnПол = base.Columns["Пол"];
  3158. this.columnExpr1 = base.Columns["Expr1"];
  3159. this.columnРодители = base.Columns["Родители"];
  3160. this.columnАдрес = base.Columns["Адрес"];
  3161. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  3162. this.columnТелефон = base.Columns["Телефон"];
  3163. this.columnГруппа = base.Columns["Группа"];
  3164. this.columnДата_рождения = base.Columns["Дата рождения"];
  3165. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  3166. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  3167. this.columnКурс = base.Columns["Курс"];
  3168. this.columnописание_специальности = base.Columns["описание специальности"];
  3169. this.columnнаименование_специальности = base.Columns["наименование специальности"];
  3170. }
  3171. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3172. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3173. private void InitClass() {
  3174. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  3175. base.Columns.Add(this.columnФИО);
  3176. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  3177. base.Columns.Add(this.columnПол);
  3178. this.columnExpr1 = new global::System.Data.DataColumn("Expr1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3179. base.Columns.Add(this.columnExpr1);
  3180. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  3181. base.Columns.Add(this.columnРодители);
  3182. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  3183. base.Columns.Add(this.columnАдрес);
  3184. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  3185. base.Columns.Add(this.columnПаспортные_данные);
  3186. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  3187. base.Columns.Add(this.columnТелефон);
  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(bool), null, global::System.Data.MappingType.Element);
  3193. base.Columns.Add(this.columnОчная_форма_обучения);
  3194. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  3195. base.Columns.Add(this.columnНомер_зачетки);
  3196. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), 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(string), null, global::System.Data.MappingType.Element);
  3201. base.Columns.Add(this.columnнаименование_специальности);
  3202. this.columnФИО.MaxLength = 2147483647;
  3203. this.columnПол.MaxLength = 2147483647;
  3204. this.columnРодители.MaxLength = 2147483647;
  3205. this.columnАдрес.MaxLength = 2147483647;
  3206. this.columnПаспортные_данные.MaxLength = 2147483647;
  3207. this.columnТелефон.MaxLength = 2147483647;
  3208. this.columnГруппа.MaxLength = 2147483647;
  3209. this.columnописание_специальности.MaxLength = 2147483647;
  3210. this.columnнаименование_специальности.AllowDBNull = false;
  3211. this.columnнаименование_специальности.MaxLength = 50;
  3212. }
  3213. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3214. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3215. public Фильтр_ОтецRow NewФильтр_ОтецRow() {
  3216. return ((Фильтр_ОтецRow)(this.NewRow()));
  3217. }
  3218. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3219. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3220. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3221. return new Фильтр_ОтецRow(builder);
  3222. }
  3223. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3224. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3225. protected override global::System.Type GetRowType() {
  3226. return typeof(Фильтр_ОтецRow);
  3227. }
  3228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3230. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3231. base.OnRowChanged(e);
  3232. if ((this.Фильтр_ОтецRowChanged != null)) {
  3233. this.Фильтр_ОтецRowChanged(this, new Фильтр_ОтецRowChangeEvent(((Фильтр_ОтецRow)(e.Row)), e.Action));
  3234. }
  3235. }
  3236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3237. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3238. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3239. base.OnRowChanging(e);
  3240. if ((this.Фильтр_ОтецRowChanging != null)) {
  3241. this.Фильтр_ОтецRowChanging(this, new Фильтр_ОтецRowChangeEvent(((Фильтр_ОтецRow)(e.Row)), e.Action));
  3242. }
  3243. }
  3244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3246. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3247. base.OnRowDeleted(e);
  3248. if ((this.Фильтр_ОтецRowDeleted != null)) {
  3249. this.Фильтр_ОтецRowDeleted(this, new Фильтр_ОтецRowChangeEvent(((Фильтр_ОтецRow)(e.Row)), e.Action));
  3250. }
  3251. }
  3252. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3253. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3254. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3255. base.OnRowDeleting(e);
  3256. if ((this.Фильтр_ОтецRowDeleting != null)) {
  3257. this.Фильтр_ОтецRowDeleting(this, new Фильтр_ОтецRowChangeEvent(((Фильтр_ОтецRow)(e.Row)), e.Action));
  3258. }
  3259. }
  3260. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3261. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3262. public void RemoveФильтр_ОтецRow(Фильтр_ОтецRow row) {
  3263. this.Rows.Remove(row);
  3264. }
  3265. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3266. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3267. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3268. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3269. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3270. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  3271. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3272. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3273. any1.MinOccurs = new decimal(0);
  3274. any1.MaxOccurs = decimal.MaxValue;
  3275. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3276. sequence.Items.Add(any1);
  3277. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3278. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3279. any2.MinOccurs = new decimal(1);
  3280. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3281. sequence.Items.Add(any2);
  3282. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3283. attribute1.Name = "namespace";
  3284. attribute1.FixedValue = ds.Namespace;
  3285. type.Attributes.Add(attribute1);
  3286. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3287. attribute2.Name = "tableTypeName";
  3288. attribute2.FixedValue = "Фильтр_ОтецDataTable";
  3289. type.Attributes.Add(attribute2);
  3290. type.Particle = sequence;
  3291. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3292. if (xs.Contains(dsSchema.TargetNamespace)) {
  3293. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3294. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3295. try {
  3296. global::System.Xml.Schema.XmlSchema schema = null;
  3297. dsSchema.Write(s1);
  3298. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3299. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3300. s2.SetLength(0);
  3301. schema.Write(s2);
  3302. if ((s1.Length == s2.Length)) {
  3303. s1.Position = 0;
  3304. s2.Position = 0;
  3305. for (; ((s1.Position != s1.Length)
  3306. && (s1.ReadByte() == s2.ReadByte())); ) {
  3307. ;
  3308. }
  3309. if ((s1.Position == s1.Length)) {
  3310. return type;
  3311. }
  3312. }
  3313. }
  3314. }
  3315. finally {
  3316. if ((s1 != null)) {
  3317. s1.Close();
  3318. }
  3319. if ((s2 != null)) {
  3320. s2.Close();
  3321. }
  3322. }
  3323. }
  3324. xs.Add(dsSchema);
  3325. return type;
  3326. }
  3327. }
  3328. /// <summary>
  3329. ///Represents the strongly named DataTable class.
  3330. ///</summary>
  3331. [global::System.Serializable()]
  3332. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3333. public partial class фильтр_очная_форма_обученияDataTable : global::System.Data.TypedTableBase<фильтр_очная_форма_обученияRow> {
  3334. private global::System.Data.DataColumn columnописание_специальности;
  3335. private global::System.Data.DataColumn columnнаименование_специальности;
  3336. private global::System.Data.DataColumn columnКурс;
  3337. private global::System.Data.DataColumn columnНомер_зачетки;
  3338. private global::System.Data.DataColumn columnОчная_форма_обучения;
  3339. private global::System.Data.DataColumn columnДата_рождения;
  3340. private global::System.Data.DataColumn columnГруппа;
  3341. private global::System.Data.DataColumn columnТелефон;
  3342. private global::System.Data.DataColumn columnАдрес;
  3343. private global::System.Data.DataColumn columnПаспортные_данные;
  3344. private global::System.Data.DataColumn columnРодители;
  3345. private global::System.Data.DataColumn columnПол;
  3346. private global::System.Data.DataColumn columnФИО;
  3347. private global::System.Data.DataColumn columnExpr1;
  3348. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3349. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3350. public фильтр_очная_форма_обученияDataTable() {
  3351. this.TableName = "фильтр очная форма обучения";
  3352. this.BeginInit();
  3353. this.InitClass();
  3354. this.EndInit();
  3355. }
  3356. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3357. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3358. internal фильтр_очная_форма_обученияDataTable(global::System.Data.DataTable table) {
  3359. this.TableName = table.TableName;
  3360. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3361. this.CaseSensitive = table.CaseSensitive;
  3362. }
  3363. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3364. this.Locale = table.Locale;
  3365. }
  3366. if ((table.Namespace != table.DataSet.Namespace)) {
  3367. this.Namespace = table.Namespace;
  3368. }
  3369. this.Prefix = table.Prefix;
  3370. this.MinimumCapacity = table.MinimumCapacity;
  3371. }
  3372. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3373. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3374. protected фильтр_очная_форма_обученияDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3375. base(info, context) {
  3376. this.InitVars();
  3377. }
  3378. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3379. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3380. public global::System.Data.DataColumn описание_специальностиColumn {
  3381. get {
  3382. return this.columnописание_специальности;
  3383. }
  3384. }
  3385. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3386. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3387. public global::System.Data.DataColumn наименование_специальностиColumn {
  3388. get {
  3389. return this.columnнаименование_специальности;
  3390. }
  3391. }
  3392. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3393. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3394. public global::System.Data.DataColumn КурсColumn {
  3395. get {
  3396. return this.columnКурс;
  3397. }
  3398. }
  3399. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3400. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3401. public global::System.Data.DataColumn Номер_зачеткиColumn {
  3402. get {
  3403. return this.columnНомер_зачетки;
  3404. }
  3405. }
  3406. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3407. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3408. public global::System.Data.DataColumn Очная_форма_обученияColumn {
  3409. get {
  3410. return this.columnОчная_форма_обучения;
  3411. }
  3412. }
  3413. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3414. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3415. public global::System.Data.DataColumn Дата_рожденияColumn {
  3416. get {
  3417. return this.columnДата_рождения;
  3418. }
  3419. }
  3420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3422. public global::System.Data.DataColumn ГруппаColumn {
  3423. get {
  3424. return this.columnГруппа;
  3425. }
  3426. }
  3427. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3428. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3429. public global::System.Data.DataColumn ТелефонColumn {
  3430. get {
  3431. return this.columnТелефон;
  3432. }
  3433. }
  3434. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3435. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3436. public global::System.Data.DataColumn АдресColumn {
  3437. get {
  3438. return this.columnАдрес;
  3439. }
  3440. }
  3441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3442. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3443. public global::System.Data.DataColumn Паспортные_данныеColumn {
  3444. get {
  3445. return this.columnПаспортные_данные;
  3446. }
  3447. }
  3448. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3449. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3450. public global::System.Data.DataColumn РодителиColumn {
  3451. get {
  3452. return this.columnРодители;
  3453. }
  3454. }
  3455. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3456. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3457. public global::System.Data.DataColumn ПолColumn {
  3458. get {
  3459. return this.columnПол;
  3460. }
  3461. }
  3462. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3463. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3464. public global::System.Data.DataColumn ФИОColumn {
  3465. get {
  3466. return this.columnФИО;
  3467. }
  3468. }
  3469. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3470. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3471. public global::System.Data.DataColumn Expr1Column {
  3472. get {
  3473. return this.columnExpr1;
  3474. }
  3475. }
  3476. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3477. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3478. [global::System.ComponentModel.Browsable(false)]
  3479. public int Count {
  3480. get {
  3481. return this.Rows.Count;
  3482. }
  3483. }
  3484. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3485. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3486. public фильтр_очная_форма_обученияRow this[int index] {
  3487. get {
  3488. return ((фильтр_очная_форма_обученияRow)(this.Rows[index]));
  3489. }
  3490. }
  3491. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3492. public event фильтр_очная_форма_обученияRowChangeEventHandler фильтр_очная_форма_обученияRowChanging;
  3493. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3494. public event фильтр_очная_форма_обученияRowChangeEventHandler фильтр_очная_форма_обученияRowChanged;
  3495. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3496. public event фильтр_очная_форма_обученияRowChangeEventHandler фильтр_очная_форма_обученияRowDeleting;
  3497. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3498. public event фильтр_очная_форма_обученияRowChangeEventHandler фильтр_очная_форма_обученияRowDeleted;
  3499. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3500. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3501. public void Addфильтр_очная_форма_обученияRow(фильтр_очная_форма_обученияRow row) {
  3502. this.Rows.Add(row);
  3503. }
  3504. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3505. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3506. public фильтр_очная_форма_обученияRow Addфильтр_очная_форма_обученияRow(string описание_специальности, string наименование_специальности, byte Курс, long Номер_зачетки, bool Очная_форма_обучения, System.DateTime Дата_рождения, string Группа, string Телефон, string Адрес, string Паспортные_данные, string Родители, string Пол, string ФИО, System.DateTime Expr1) {
  3507. фильтр_очная_форма_обученияRow rowфильтр_очная_форма_обученияRow = ((фильтр_очная_форма_обученияRow)(this.NewRow()));
  3508. object[] columnValuesArray = new object[] {
  3509. описание_специальности,
  3510. наименование_специальности,
  3511. Курс,
  3512. Номер_зачетки,
  3513. Очная_форма_обучения,
  3514. Дата_рождения,
  3515. Группа,
  3516. Телефон,
  3517. Адрес,
  3518. Паспортные_данные,
  3519. Родители,
  3520. Пол,
  3521. ФИО,
  3522. Expr1};
  3523. rowфильтр_очная_форма_обученияRow.ItemArray = columnValuesArray;
  3524. this.Rows.Add(rowфильтр_очная_форма_обученияRow);
  3525. return rowфильтр_очная_форма_обученияRow;
  3526. }
  3527. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3528. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3529. public override global::System.Data.DataTable Clone() {
  3530. фильтр_очная_форма_обученияDataTable cln = ((фильтр_очная_форма_обученияDataTable)(base.Clone()));
  3531. cln.InitVars();
  3532. return cln;
  3533. }
  3534. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3535. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3536. protected override global::System.Data.DataTable CreateInstance() {
  3537. return new фильтр_очная_форма_обученияDataTable();
  3538. }
  3539. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3540. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3541. internal void InitVars() {
  3542. this.columnописание_специальности = base.Columns["описание специальности"];
  3543. this.columnнаименование_специальности = base.Columns["наименование специальности"];
  3544. this.columnКурс = base.Columns["Курс"];
  3545. this.columnНомер_зачетки = base.Columns["Номер зачетки"];
  3546. this.columnОчная_форма_обучения = base.Columns["Очная форма обучения"];
  3547. this.columnДата_рождения = base.Columns["Дата рождения"];
  3548. this.columnГруппа = base.Columns["Группа"];
  3549. this.columnТелефон = base.Columns["Телефон"];
  3550. this.columnАдрес = base.Columns["Адрес"];
  3551. this.columnПаспортные_данные = base.Columns["Паспортные данные"];
  3552. this.columnРодители = base.Columns["Родители"];
  3553. this.columnПол = base.Columns["Пол"];
  3554. this.columnФИО = base.Columns["ФИО"];
  3555. this.columnExpr1 = base.Columns["Expr1"];
  3556. }
  3557. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3558. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3559. private void InitClass() {
  3560. this.columnописание_специальности = new global::System.Data.DataColumn("описание специальности", typeof(string), null, global::System.Data.MappingType.Element);
  3561. base.Columns.Add(this.columnописание_специальности);
  3562. this.columnнаименование_специальности = new global::System.Data.DataColumn("наименование специальности", typeof(string), null, global::System.Data.MappingType.Element);
  3563. base.Columns.Add(this.columnнаименование_специальности);
  3564. this.columnКурс = new global::System.Data.DataColumn("Курс", typeof(byte), null, global::System.Data.MappingType.Element);
  3565. base.Columns.Add(this.columnКурс);
  3566. this.columnНомер_зачетки = new global::System.Data.DataColumn("Номер зачетки", typeof(long), null, global::System.Data.MappingType.Element);
  3567. base.Columns.Add(this.columnНомер_зачетки);
  3568. this.columnОчная_форма_обучения = new global::System.Data.DataColumn("Очная форма обучения", typeof(bool), null, global::System.Data.MappingType.Element);
  3569. base.Columns.Add(this.columnОчная_форма_обучения);
  3570. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3571. base.Columns.Add(this.columnДата_рождения);
  3572. this.columnГруппа = new global::System.Data.DataColumn("Группа", typeof(string), null, global::System.Data.MappingType.Element);
  3573. base.Columns.Add(this.columnГруппа);
  3574. this.columnТелефон = new global::System.Data.DataColumn("Телефон", typeof(string), null, global::System.Data.MappingType.Element);
  3575. base.Columns.Add(this.columnТелефон);
  3576. this.columnАдрес = new global::System.Data.DataColumn("Адрес", typeof(string), null, global::System.Data.MappingType.Element);
  3577. base.Columns.Add(this.columnАдрес);
  3578. this.columnПаспортные_данные = new global::System.Data.DataColumn("Паспортные данные", typeof(string), null, global::System.Data.MappingType.Element);
  3579. base.Columns.Add(this.columnПаспортные_данные);
  3580. this.columnРодители = new global::System.Data.DataColumn("Родители", typeof(string), null, global::System.Data.MappingType.Element);
  3581. base.Columns.Add(this.columnРодители);
  3582. this.columnПол = new global::System.Data.DataColumn("Пол", typeof(string), null, global::System.Data.MappingType.Element);
  3583. base.Columns.Add(this.columnПол);
  3584. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  3585. base.Columns.Add(this.columnФИО);
  3586. this.columnExpr1 = new global::System.Data.DataColumn("Expr1", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3587. base.Columns.Add(this.columnExpr1);
  3588. this.columnописание_специальности.MaxLength = 2147483647;
  3589. this.columnнаименование_специальности.AllowDBNull = false;
  3590. this.columnнаименование_специальности.MaxLength = 50;
  3591. this.columnГруппа.MaxLength = 2147483647;
  3592. this.columnТелефон.MaxLength = 2147483647;
  3593. this.columnАдрес.MaxLength = 2147483647;
  3594. this.columnПаспортные_данные.MaxLength = 2147483647;
  3595. this.columnРодители.MaxLength = 2147483647;
  3596. this.columnПол.MaxLength = 2147483647;
  3597. this.columnФИО.MaxLength = 2147483647;
  3598. }
  3599. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3600. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3601. public фильтр_очная_форма_обученияRow Newфильтр_очная_форма_обученияRow() {
  3602. return ((фильтр_очная_форма_обученияRow)(this.NewRow()));
  3603. }
  3604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3606. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3607. return new фильтр_очная_форма_обученияRow(builder);
  3608. }
  3609. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3610. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3611. protected override global::System.Type GetRowType() {
  3612. return typeof(фильтр_очная_форма_обученияRow);
  3613. }
  3614. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3615. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3616. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3617. base.OnRowChanged(e);
  3618. if ((this.фильтр_очная_форма_обученияRowChanged != null)) {
  3619. this.фильтр_очная_форма_обученияRowChanged(this, new фильтр_очная_форма_обученияRowChangeEvent(((фильтр_очная_форма_обученияRow)(e.Row)), e.Action));
  3620. }
  3621. }
  3622. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3623. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3624. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3625. base.OnRowChanging(e);
  3626. if ((this.фильтр_очная_форма_обученияRowChanging != null)) {
  3627. this.фильтр_очная_форма_обученияRowChanging(this, new фильтр_очная_форма_обученияRowChangeEvent(((фильтр_очная_форма_обученияRow)(e.Row)), e.Action));
  3628. }
  3629. }
  3630. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3631. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3632. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3633. base.OnRowDeleted(e);
  3634. if ((this.фильтр_очная_форма_обученияRowDeleted != null)) {
  3635. this.фильтр_очная_форма_обученияRowDeleted(this, new фильтр_очная_форма_обученияRowChangeEvent(((фильтр_очная_форма_обученияRow)(e.Row)), e.Action));
  3636. }
  3637. }
  3638. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3639. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3640. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3641. base.OnRowDeleting(e);
  3642. if ((this.фильтр_очная_форма_обученияRowDeleting != null)) {
  3643. this.фильтр_очная_форма_обученияRowDeleting(this, new фильтр_очная_форма_обученияRowChangeEvent(((фильтр_очная_форма_обученияRow)(e.Row)), e.Action));
  3644. }
  3645. }
  3646. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3647. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3648. public void Removeфильтр_очная_форма_обученияRow(фильтр_очная_форма_обученияRow row) {
  3649. this.Rows.Remove(row);
  3650. }
  3651. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3652. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3653. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3654. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3655. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3656. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  3657. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3658. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3659. any1.MinOccurs = new decimal(0);
  3660. any1.MaxOccurs = decimal.MaxValue;
  3661. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3662. sequence.Items.Add(any1);
  3663. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3664. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3665. any2.MinOccurs = new decimal(1);
  3666. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3667. sequence.Items.Add(any2);
  3668. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3669. attribute1.Name = "namespace";
  3670. attribute1.FixedValue = ds.Namespace;
  3671. type.Attributes.Add(attribute1);
  3672. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3673. attribute2.Name = "tableTypeName";
  3674. attribute2.FixedValue = "фильтр_очная_форма_обученияDataTable";
  3675. type.Attributes.Add(attribute2);
  3676. type.Particle = sequence;
  3677. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3678. if (xs.Contains(dsSchema.TargetNamespace)) {
  3679. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3680. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3681. try {
  3682. global::System.Xml.Schema.XmlSchema schema = null;
  3683. dsSchema.Write(s1);
  3684. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3685. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3686. s2.SetLength(0);
  3687. schema.Write(s2);
  3688. if ((s1.Length == s2.Length)) {
  3689. s1.Position = 0;
  3690. s2.Position = 0;
  3691. for (; ((s1.Position != s1.Length)
  3692. && (s1.ReadByte() == s2.ReadByte())); ) {
  3693. ;
  3694. }
  3695. if ((s1.Position == s1.Length)) {
  3696. return type;
  3697. }
  3698. }
  3699. }
  3700. }
  3701. finally {
  3702. if ((s1 != null)) {
  3703. s1.Close();
  3704. }
  3705. if ((s2 != null)) {
  3706. s2.Close();
  3707. }
  3708. }
  3709. }
  3710. xs.Add(dsSchema);
  3711. return type;
  3712. }
  3713. }
  3714. /// <summary>
  3715. ///Represents the strongly named DataTable class.
  3716. ///</summary>
  3717. [global::System.Serializable()]
  3718. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3719. public partial class Отображение_студентов_по_возрастуDataTable : global::System.Data.TypedTableBase<Отображение_студентов_по_возрастуRow> {
  3720. private global::System.Data.DataColumn columnФИО;
  3721. private global::System.Data.DataColumn columnДата_рождения;
  3722. private global::System.Data.DataColumn columnВозраст;
  3723. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3724. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3725. public Отображение_студентов_по_возрастуDataTable() {
  3726. this.TableName = "Отображение студентов по возрасту";
  3727. this.BeginInit();
  3728. this.InitClass();
  3729. this.EndInit();
  3730. }
  3731. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3732. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3733. internal Отображение_студентов_по_возрастуDataTable(global::System.Data.DataTable table) {
  3734. this.TableName = table.TableName;
  3735. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3736. this.CaseSensitive = table.CaseSensitive;
  3737. }
  3738. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3739. this.Locale = table.Locale;
  3740. }
  3741. if ((table.Namespace != table.DataSet.Namespace)) {
  3742. this.Namespace = table.Namespace;
  3743. }
  3744. this.Prefix = table.Prefix;
  3745. this.MinimumCapacity = table.MinimumCapacity;
  3746. }
  3747. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3748. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3749. protected Отображение_студентов_по_возрастуDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  3750. base(info, context) {
  3751. this.InitVars();
  3752. }
  3753. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3754. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3755. public global::System.Data.DataColumn ФИОColumn {
  3756. get {
  3757. return this.columnФИО;
  3758. }
  3759. }
  3760. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3761. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3762. public global::System.Data.DataColumn Дата_рожденияColumn {
  3763. get {
  3764. return this.columnДата_рождения;
  3765. }
  3766. }
  3767. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3768. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3769. public global::System.Data.DataColumn ВозрастColumn {
  3770. get {
  3771. return this.columnВозраст;
  3772. }
  3773. }
  3774. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3775. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3776. [global::System.ComponentModel.Browsable(false)]
  3777. public int Count {
  3778. get {
  3779. return this.Rows.Count;
  3780. }
  3781. }
  3782. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3783. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3784. public Отображение_студентов_по_возрастуRow this[int index] {
  3785. get {
  3786. return ((Отображение_студентов_по_возрастуRow)(this.Rows[index]));
  3787. }
  3788. }
  3789. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3790. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowChanging;
  3791. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3792. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowChanged;
  3793. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3794. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowDeleting;
  3795. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3796. public event Отображение_студентов_по_возрастуRowChangeEventHandler Отображение_студентов_по_возрастуRowDeleted;
  3797. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3798. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3799. public void AddОтображение_студентов_по_возрастуRow(Отображение_студентов_по_возрастуRow row) {
  3800. this.Rows.Add(row);
  3801. }
  3802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3803. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3804. public Отображение_студентов_по_возрастуRow AddОтображение_студентов_по_возрастуRow(string ФИО, System.DateTime Дата_рождения, int Возраст) {
  3805. Отображение_студентов_по_возрастуRow rowОтображение_студентов_по_возрастуRow = ((Отображение_студентов_по_возрастуRow)(this.NewRow()));
  3806. object[] columnValuesArray = new object[] {
  3807. ФИО,
  3808. Дата_рождения,
  3809. Возраст};
  3810. rowОтображение_студентов_по_возрастуRow.ItemArray = columnValuesArray;
  3811. this.Rows.Add(rowОтображение_студентов_по_возрастуRow);
  3812. return rowОтображение_студентов_по_возрастуRow;
  3813. }
  3814. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3815. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3816. public override global::System.Data.DataTable Clone() {
  3817. Отображение_студентов_по_возрастуDataTable cln = ((Отображение_студентов_по_возрастуDataTable)(base.Clone()));
  3818. cln.InitVars();
  3819. return cln;
  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.DataTable CreateInstance() {
  3824. return new Отображение_студентов_по_возрастуDataTable();
  3825. }
  3826. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3827. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3828. internal void InitVars() {
  3829. this.columnФИО = base.Columns["ФИО"];
  3830. this.columnДата_рождения = base.Columns["Дата рождения"];
  3831. this.columnВозраст = base.Columns["Возраст"];
  3832. }
  3833. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3834. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3835. private void InitClass() {
  3836. this.columnФИО = new global::System.Data.DataColumn("ФИО", typeof(string), null, global::System.Data.MappingType.Element);
  3837. base.Columns.Add(this.columnФИО);
  3838. this.columnДата_рождения = new global::System.Data.DataColumn("Дата рождения", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  3839. base.Columns.Add(this.columnДата_рождения);
  3840. this.columnВозраст = new global::System.Data.DataColumn("Возраст", typeof(int), null, global::System.Data.MappingType.Element);
  3841. base.Columns.Add(this.columnВозраст);
  3842. this.columnФИО.MaxLength = 2147483647;
  3843. this.columnВозраст.ReadOnly = true;
  3844. }
  3845. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3846. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3847. public Отображение_студентов_по_возрастуRow NewОтображение_студентов_по_возрастуRow() {
  3848. return ((Отображение_студентов_по_возрастуRow)(this.NewRow()));
  3849. }
  3850. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3851. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3852. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  3853. return new Отображение_студентов_по_возрастуRow(builder);
  3854. }
  3855. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3856. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3857. protected override global::System.Type GetRowType() {
  3858. return typeof(Отображение_студентов_по_возрастуRow);
  3859. }
  3860. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3861. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3862. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  3863. base.OnRowChanged(e);
  3864. if ((this.Отображение_студентов_по_возрастуRowChanged != null)) {
  3865. this.Отображение_студентов_по_возрастуRowChanged(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3866. }
  3867. }
  3868. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3869. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3870. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  3871. base.OnRowChanging(e);
  3872. if ((this.Отображение_студентов_по_возрастуRowChanging != null)) {
  3873. this.Отображение_студентов_по_возрастуRowChanging(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3874. }
  3875. }
  3876. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3877. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3878. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  3879. base.OnRowDeleted(e);
  3880. if ((this.Отображение_студентов_по_возрастуRowDeleted != null)) {
  3881. this.Отображение_студентов_по_возрастуRowDeleted(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3882. }
  3883. }
  3884. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3885. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3886. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  3887. base.OnRowDeleting(e);
  3888. if ((this.Отображение_студентов_по_возрастуRowDeleting != null)) {
  3889. this.Отображение_студентов_по_возрастуRowDeleting(this, new Отображение_студентов_по_возрастуRowChangeEvent(((Отображение_студентов_по_возрастуRow)(e.Row)), e.Action));
  3890. }
  3891. }
  3892. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3893. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3894. public void RemoveОтображение_студентов_по_возрастуRow(Отображение_студентов_по_возрастуRow row) {
  3895. this.Rows.Remove(row);
  3896. }
  3897. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3898. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3899. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  3900. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  3901. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  3902. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  3903. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  3904. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  3905. any1.MinOccurs = new decimal(0);
  3906. any1.MaxOccurs = decimal.MaxValue;
  3907. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3908. sequence.Items.Add(any1);
  3909. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  3910. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  3911. any2.MinOccurs = new decimal(1);
  3912. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  3913. sequence.Items.Add(any2);
  3914. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3915. attribute1.Name = "namespace";
  3916. attribute1.FixedValue = ds.Namespace;
  3917. type.Attributes.Add(attribute1);
  3918. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  3919. attribute2.Name = "tableTypeName";
  3920. attribute2.FixedValue = "Отображение_студентов_по_возрастуDataTable";
  3921. type.Attributes.Add(attribute2);
  3922. type.Particle = sequence;
  3923. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  3924. if (xs.Contains(dsSchema.TargetNamespace)) {
  3925. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  3926. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  3927. try {
  3928. global::System.Xml.Schema.XmlSchema schema = null;
  3929. dsSchema.Write(s1);
  3930. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  3931. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  3932. s2.SetLength(0);
  3933. schema.Write(s2);
  3934. if ((s1.Length == s2.Length)) {
  3935. s1.Position = 0;
  3936. s2.Position = 0;
  3937. for (; ((s1.Position != s1.Length)
  3938. && (s1.ReadByte() == s2.ReadByte())); ) {
  3939. ;
  3940. }
  3941. if ((s1.Position == s1.Length)) {
  3942. return type;
  3943. }
  3944. }
  3945. }
  3946. }
  3947. finally {
  3948. if ((s1 != null)) {
  3949. s1.Close();
  3950. }
  3951. if ((s2 != null)) {
  3952. s2.Close();
  3953. }
  3954. }
  3955. }
  3956. xs.Add(dsSchema);
  3957. return type;
  3958. }
  3959. }
  3960. /// <summary>
  3961. ///Represents the strongly named DataTable class.
  3962. ///</summary>
  3963. [global::System.Serializable()]
  3964. [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
  3965. public partial class Отображение_студентов_по_среднему_баллуDataTable : global::System.Data.TypedTableBase<Отображение_студентов_по_среднему_баллуRow> {
  3966. private global::System.Data.DataColumn columnфио_студента;
  3967. private global::System.Data.DataColumn columnоценка_первого_экзамена;
  3968. private global::System.Data.DataColumn columnоценка_второго_экзамена;
  3969. private global::System.Data.DataColumn columnоценка_третьего_экзамена;
  3970. private global::System.Data.DataColumn columnдата_третьего_экзамена;
  3971. private global::System.Data.DataColumn columnдата_второго_экзамена;
  3972. private global::System.Data.DataColumn columnдата_первого_экзамена;
  3973. private global::System.Data.DataColumn columnсредний_балл_студента_за_сессию;
  3974. private global::System.Data.DataColumn columnнаименование_предмета_первого_экзамена;
  3975. private global::System.Data.DataColumn columnнаименование_предмета_третьего_экзамена;
  3976. private global::System.Data.DataColumn columnнаименование_предмета_второго_экзамена;
  3977. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3978. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3979. public Отображение_студентов_по_среднему_баллуDataTable() {
  3980. this.TableName = "Отображение студентов по среднему баллу";
  3981. this.BeginInit();
  3982. this.InitClass();
  3983. this.EndInit();
  3984. }
  3985. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  3986. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  3987. internal Отображение_студентов_по_среднему_баллуDataTable(global::System.Data.DataTable table) {
  3988. this.TableName = table.TableName;
  3989. if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
  3990. this.CaseSensitive = table.CaseSensitive;
  3991. }
  3992. if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
  3993. this.Locale = table.Locale;
  3994. }
  3995. if ((table.Namespace != table.DataSet.Namespace)) {
  3996. this.Namespace = table.Namespace;
  3997. }
  3998. this.Prefix = table.Prefix;
  3999. this.MinimumCapacity = table.MinimumCapacity;
  4000. }
  4001. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4002. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4003. protected Отображение_студентов_по_среднему_баллуDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
  4004. base(info, context) {
  4005. this.InitVars();
  4006. }
  4007. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4008. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4009. public global::System.Data.DataColumn фио_студентаColumn {
  4010. get {
  4011. return this.columnфио_студента;
  4012. }
  4013. }
  4014. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4015. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4016. public global::System.Data.DataColumn оценка_первого_экзаменаColumn {
  4017. get {
  4018. return this.columnоценка_первого_экзамена;
  4019. }
  4020. }
  4021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4022. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4023. public global::System.Data.DataColumn оценка_второго_экзаменаColumn {
  4024. get {
  4025. return this.columnоценка_второго_экзамена;
  4026. }
  4027. }
  4028. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4029. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4030. public global::System.Data.DataColumn оценка_третьего_экзаменаColumn {
  4031. get {
  4032. return this.columnоценка_третьего_экзамена;
  4033. }
  4034. }
  4035. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4036. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4037. public global::System.Data.DataColumn дата_третьего_экзаменаColumn {
  4038. get {
  4039. return this.columnдата_третьего_экзамена;
  4040. }
  4041. }
  4042. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4043. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4044. public global::System.Data.DataColumn дата_второго_экзаменаColumn {
  4045. get {
  4046. return this.columnдата_второго_экзамена;
  4047. }
  4048. }
  4049. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4050. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4051. public global::System.Data.DataColumn дата_первого_экзаменаColumn {
  4052. get {
  4053. return this.columnдата_первого_экзамена;
  4054. }
  4055. }
  4056. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4057. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4058. public global::System.Data.DataColumn средний_балл_студента_за_сессиюColumn {
  4059. get {
  4060. return this.columnсредний_балл_студента_за_сессию;
  4061. }
  4062. }
  4063. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4064. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4065. public global::System.Data.DataColumn наименование_предмета_первого_экзаменаColumn {
  4066. get {
  4067. return this.columnнаименование_предмета_первого_экзамена;
  4068. }
  4069. }
  4070. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4071. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4072. public global::System.Data.DataColumn наименование_предмета_третьего_экзаменаColumn {
  4073. get {
  4074. return this.columnнаименование_предмета_третьего_экзамена;
  4075. }
  4076. }
  4077. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4078. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4079. public global::System.Data.DataColumn наименование_предмета_второго_экзаменаColumn {
  4080. get {
  4081. return this.columnнаименование_предмета_второго_экзамена;
  4082. }
  4083. }
  4084. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4085. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4086. [global::System.ComponentModel.Browsable(false)]
  4087. public int Count {
  4088. get {
  4089. return this.Rows.Count;
  4090. }
  4091. }
  4092. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4093. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4094. public Отображение_студентов_по_среднему_баллуRow this[int index] {
  4095. get {
  4096. return ((Отображение_студентов_по_среднему_баллуRow)(this.Rows[index]));
  4097. }
  4098. }
  4099. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4100. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowChanging;
  4101. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4102. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowChanged;
  4103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4104. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowDeleting;
  4105. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4106. public event Отображение_студентов_по_среднему_баллуRowChangeEventHandler Отображение_студентов_по_среднему_баллуRowDeleted;
  4107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4108. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4109. public void AddОтображение_студентов_по_среднему_баллуRow(Отображение_студентов_по_среднему_баллуRow row) {
  4110. this.Rows.Add(row);
  4111. }
  4112. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4113. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4114. public Отображение_студентов_по_среднему_баллуRow AddОтображение_студентов_по_среднему_баллуRow(string фио_студента, byte оценка_первого_экзамена, byte оценка_второго_экзамена, byte оценка_третьего_экзамена, System.DateTime дата_третьего_экзамена, System.DateTime дата_второго_экзамена, System.DateTime дата_первого_экзамена, float средний_балл_студента_за_сессию, string наименование_предмета_первого_экзамена, string наименование_предмета_третьего_экзамена, string наименование_предмета_второго_экзамена) {
  4115. Отображение_студентов_по_среднему_баллуRow rowОтображение_студентов_по_среднему_баллуRow = ((Отображение_студентов_по_среднему_баллуRow)(this.NewRow()));
  4116. object[] columnValuesArray = new object[] {
  4117. фио_студента,
  4118. оценка_первого_экзамена,
  4119. оценка_второго_экзамена,
  4120. оценка_третьего_экзамена,
  4121. дата_третьего_экзамена,
  4122. дата_второго_экзамена,
  4123. дата_первого_экзамена,
  4124. средний_балл_студента_за_сессию,
  4125. наименование_предмета_первого_экзамена,
  4126. наименование_предмета_третьего_экзамена,
  4127. наименование_предмета_второго_экзамена};
  4128. rowОтображение_студентов_по_среднему_баллуRow.ItemArray = columnValuesArray;
  4129. this.Rows.Add(rowОтображение_студентов_по_среднему_баллуRow);
  4130. return rowОтображение_студентов_по_среднему_баллуRow;
  4131. }
  4132. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4134. public override global::System.Data.DataTable Clone() {
  4135. Отображение_студентов_по_среднему_баллуDataTable cln = ((Отображение_студентов_по_среднему_баллуDataTable)(base.Clone()));
  4136. cln.InitVars();
  4137. return cln;
  4138. }
  4139. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4140. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4141. protected override global::System.Data.DataTable CreateInstance() {
  4142. return new Отображение_студентов_по_среднему_баллуDataTable();
  4143. }
  4144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4145. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4146. internal void InitVars() {
  4147. this.columnфио_студента = base.Columns["фио студента"];
  4148. this.columnоценка_первого_экзамена = base.Columns["оценка первого экзамена"];
  4149. this.columnоценка_второго_экзамена = base.Columns["оценка второго экзамена"];
  4150. this.columnоценка_третьего_экзамена = base.Columns["оценка третьего экзамена"];
  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. }
  4159. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4160. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4161. private void InitClass() {
  4162. this.columnфио_студента = new global::System.Data.DataColumn("фио студента", typeof(string), null, global::System.Data.MappingType.Element);
  4163. base.Columns.Add(this.columnфио_студента);
  4164. this.columnоценка_первого_экзамена = new global::System.Data.DataColumn("оценка первого экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  4165. base.Columns.Add(this.columnоценка_первого_экзамена);
  4166. this.columnоценка_второго_экзамена = new global::System.Data.DataColumn("оценка второго экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  4167. base.Columns.Add(this.columnоценка_второго_экзамена);
  4168. this.columnоценка_третьего_экзамена = new global::System.Data.DataColumn("оценка третьего экзамена", typeof(byte), null, global::System.Data.MappingType.Element);
  4169. base.Columns.Add(this.columnоценка_третьего_экзамена);
  4170. this.columnдата_третьего_экзамена = new global::System.Data.DataColumn("дата третьего экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  4171. base.Columns.Add(this.columnдата_третьего_экзамена);
  4172. this.columnдата_второго_экзамена = new global::System.Data.DataColumn("дата второго экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  4173. base.Columns.Add(this.columnдата_второго_экзамена);
  4174. this.columnдата_первого_экзамена = new global::System.Data.DataColumn("дата первого экзамена", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
  4175. base.Columns.Add(this.columnдата_первого_экзамена);
  4176. this.columnсредний_балл_студента_за_сессию = new global::System.Data.DataColumn("средний балл студента за сессию", typeof(float), null, global::System.Data.MappingType.Element);
  4177. base.Columns.Add(this.columnсредний_балл_студента_за_сессию);
  4178. this.columnнаименование_предмета_первого_экзамена = new global::System.Data.DataColumn("наименование предмета первого экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  4179. base.Columns.Add(this.columnнаименование_предмета_первого_экзамена);
  4180. this.columnнаименование_предмета_третьего_экзамена = new global::System.Data.DataColumn("наименование предмета третьего экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  4181. base.Columns.Add(this.columnнаименование_предмета_третьего_экзамена);
  4182. this.columnнаименование_предмета_второго_экзамена = new global::System.Data.DataColumn("наименование предмета второго экзамена", typeof(string), null, global::System.Data.MappingType.Element);
  4183. base.Columns.Add(this.columnнаименование_предмета_второго_экзамена);
  4184. this.columnфио_студента.MaxLength = 2147483647;
  4185. this.columnнаименование_предмета_первого_экзамена.MaxLength = 2147483647;
  4186. this.columnнаименование_предмета_третьего_экзамена.MaxLength = 2147483647;
  4187. this.columnнаименование_предмета_второго_экзамена.MaxLength = 2147483647;
  4188. }
  4189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4190. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4191. public Отображение_студентов_по_среднему_баллуRow NewОтображение_студентов_по_среднему_баллуRow() {
  4192. return ((Отображение_студентов_по_среднему_баллуRow)(this.NewRow()));
  4193. }
  4194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4196. protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
  4197. return new Отображение_студентов_по_среднему_баллуRow(builder);
  4198. }
  4199. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4200. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4201. protected override global::System.Type GetRowType() {
  4202. return typeof(Отображение_студентов_по_среднему_баллуRow);
  4203. }
  4204. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4205. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4206. protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
  4207. base.OnRowChanged(e);
  4208. if ((this.Отображение_студентов_по_среднему_баллуRowChanged != null)) {
  4209. this.Отображение_студентов_по_среднему_баллуRowChanged(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  4210. }
  4211. }
  4212. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4213. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4214. protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
  4215. base.OnRowChanging(e);
  4216. if ((this.Отображение_студентов_по_среднему_баллуRowChanging != null)) {
  4217. this.Отображение_студентов_по_среднему_баллуRowChanging(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  4218. }
  4219. }
  4220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4222. protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
  4223. base.OnRowDeleted(e);
  4224. if ((this.Отображение_студентов_по_среднему_баллуRowDeleted != null)) {
  4225. this.Отображение_студентов_по_среднему_баллуRowDeleted(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  4226. }
  4227. }
  4228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4230. protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
  4231. base.OnRowDeleting(e);
  4232. if ((this.Отображение_студентов_по_среднему_баллуRowDeleting != null)) {
  4233. this.Отображение_студентов_по_среднему_баллуRowDeleting(this, new Отображение_студентов_по_среднему_баллуRowChangeEvent(((Отображение_студентов_по_среднему_баллуRow)(e.Row)), e.Action));
  4234. }
  4235. }
  4236. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4237. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4238. public void RemoveОтображение_студентов_по_среднему_баллуRow(Отображение_студентов_по_среднему_баллуRow row) {
  4239. this.Rows.Remove(row);
  4240. }
  4241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4243. public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
  4244. global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
  4245. global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
  4246. IS31KiselevStudDataSet ds = new IS31KiselevStudDataSet();
  4247. global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
  4248. any1.Namespace = "http://www.w3.org/2001/XMLSchema";
  4249. any1.MinOccurs = new decimal(0);
  4250. any1.MaxOccurs = decimal.MaxValue;
  4251. any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4252. sequence.Items.Add(any1);
  4253. global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
  4254. any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
  4255. any2.MinOccurs = new decimal(1);
  4256. any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
  4257. sequence.Items.Add(any2);
  4258. global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4259. attribute1.Name = "namespace";
  4260. attribute1.FixedValue = ds.Namespace;
  4261. type.Attributes.Add(attribute1);
  4262. global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
  4263. attribute2.Name = "tableTypeName";
  4264. attribute2.FixedValue = "Отображение_студентов_по_среднему_баллуDataTable";
  4265. type.Attributes.Add(attribute2);
  4266. type.Particle = sequence;
  4267. global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
  4268. if (xs.Contains(dsSchema.TargetNamespace)) {
  4269. global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
  4270. global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
  4271. try {
  4272. global::System.Xml.Schema.XmlSchema schema = null;
  4273. dsSchema.Write(s1);
  4274. for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
  4275. schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
  4276. s2.SetLength(0);
  4277. schema.Write(s2);
  4278. if ((s1.Length == s2.Length)) {
  4279. s1.Position = 0;
  4280. s2.Position = 0;
  4281. for (; ((s1.Position != s1.Length)
  4282. && (s1.ReadByte() == s2.ReadByte())); ) {
  4283. ;
  4284. }
  4285. if ((s1.Position == s1.Length)) {
  4286. return type;
  4287. }
  4288. }
  4289. }
  4290. }
  4291. finally {
  4292. if ((s1 != null)) {
  4293. s1.Close();
  4294. }
  4295. if ((s2 != null)) {
  4296. s2.Close();
  4297. }
  4298. }
  4299. }
  4300. xs.Add(dsSchema);
  4301. return type;
  4302. }
  4303. }
  4304. /// <summary>
  4305. ///Represents strongly named DataRow class.
  4306. ///</summary>
  4307. public partial class OcenkaRow : global::System.Data.DataRow {
  4308. private OcenkaDataTable tableOcenka;
  4309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4311. internal OcenkaRow(global::System.Data.DataRowBuilder rb) :
  4312. base(rb) {
  4313. this.tableOcenka = ((OcenkaDataTable)(this.Table));
  4314. }
  4315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4317. public long код_студента {
  4318. get {
  4319. return ((long)(this[this.tableOcenka.код_студентаColumn]));
  4320. }
  4321. set {
  4322. this[this.tableOcenka.код_студентаColumn] = value;
  4323. }
  4324. }
  4325. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4326. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4327. public System.DateTime дата_экзамена_1 {
  4328. get {
  4329. try {
  4330. return ((global::System.DateTime)(this[this.tableOcenka.дата_экзамена_1Column]));
  4331. }
  4332. catch (global::System.InvalidCastException e) {
  4333. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата экзамена 1\' в таблице \'Ocenka\' равно DBNull.", e);
  4334. }
  4335. }
  4336. set {
  4337. this[this.tableOcenka.дата_экзамена_1Column] = value;
  4338. }
  4339. }
  4340. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4341. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4342. public System.DateTime дата_экзамена_2 {
  4343. get {
  4344. try {
  4345. return ((global::System.DateTime)(this[this.tableOcenka.дата_экзамена_2Column]));
  4346. }
  4347. catch (global::System.InvalidCastException e) {
  4348. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата экзамена 2\' в таблице \'Ocenka\' равно DBNull.", e);
  4349. }
  4350. }
  4351. set {
  4352. this[this.tableOcenka.дата_экзамена_2Column] = value;
  4353. }
  4354. }
  4355. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4356. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4357. public System.DateTime Дата_экзамена_3 {
  4358. get {
  4359. try {
  4360. return ((global::System.DateTime)(this[this.tableOcenka.Дата_экзамена_3Column]));
  4361. }
  4362. catch (global::System.InvalidCastException e) {
  4363. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата экзамена 3\' в таблице \'Ocenka\' равно DBNull.", e);
  4364. }
  4365. }
  4366. set {
  4367. this[this.tableOcenka.Дата_экзамена_3Column] = value;
  4368. }
  4369. }
  4370. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4371. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4372. public byte Оценка_1 {
  4373. get {
  4374. try {
  4375. return ((byte)(this[this.tableOcenka.Оценка_1Column]));
  4376. }
  4377. catch (global::System.InvalidCastException e) {
  4378. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка 1\' в таблице \'Ocenka\' равно DBNull.", e);
  4379. }
  4380. }
  4381. set {
  4382. this[this.tableOcenka.Оценка_1Column] = value;
  4383. }
  4384. }
  4385. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4386. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4387. public byte Оценка_2 {
  4388. get {
  4389. try {
  4390. return ((byte)(this[this.tableOcenka.Оценка_2Column]));
  4391. }
  4392. catch (global::System.InvalidCastException e) {
  4393. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка 2\' в таблице \'Ocenka\' равно DBNull.", e);
  4394. }
  4395. }
  4396. set {
  4397. this[this.tableOcenka.Оценка_2Column] = value;
  4398. }
  4399. }
  4400. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4401. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4402. public byte Оценка_3 {
  4403. get {
  4404. try {
  4405. return ((byte)(this[this.tableOcenka.Оценка_3Column]));
  4406. }
  4407. catch (global::System.InvalidCastException e) {
  4408. throw new global::System.Data.StrongTypingException("Значение для столбца \'Оценка 3\' в таблице \'Ocenka\' равно DBNull.", e);
  4409. }
  4410. }
  4411. set {
  4412. this[this.tableOcenka.Оценка_3Column] = value;
  4413. }
  4414. }
  4415. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4416. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4417. public float Средний_балл {
  4418. get {
  4419. try {
  4420. return ((float)(this[this.tableOcenka.Средний_баллColumn]));
  4421. }
  4422. catch (global::System.InvalidCastException e) {
  4423. throw new global::System.Data.StrongTypingException("Значение для столбца \'Средний балл\' в таблице \'Ocenka\' равно DBNull.", e);
  4424. }
  4425. }
  4426. set {
  4427. this[this.tableOcenka.Средний_баллColumn] = value;
  4428. }
  4429. }
  4430. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4431. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4432. public long Код_предмета_1 {
  4433. get {
  4434. try {
  4435. return ((long)(this[this.tableOcenka.Код_предмета_1Column]));
  4436. }
  4437. catch (global::System.InvalidCastException e) {
  4438. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код предмета 1\' в таблице \'Ocenka\' равно DBNull.", e);
  4439. }
  4440. }
  4441. set {
  4442. this[this.tableOcenka.Код_предмета_1Column] = value;
  4443. }
  4444. }
  4445. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4446. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4447. public long Код_предмета_2 {
  4448. get {
  4449. try {
  4450. return ((long)(this[this.tableOcenka.Код_предмета_2Column]));
  4451. }
  4452. catch (global::System.InvalidCastException e) {
  4453. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код предмета 2\' в таблице \'Ocenka\' равно DBNull.", e);
  4454. }
  4455. }
  4456. set {
  4457. this[this.tableOcenka.Код_предмета_2Column] = value;
  4458. }
  4459. }
  4460. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4461. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4462. public long Код_предмета_3 {
  4463. get {
  4464. try {
  4465. return ((long)(this[this.tableOcenka.Код_предмета_3Column]));
  4466. }
  4467. catch (global::System.InvalidCastException e) {
  4468. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код предмета 3\' в таблице \'Ocenka\' равно DBNull.", e);
  4469. }
  4470. }
  4471. set {
  4472. this[this.tableOcenka.Код_предмета_3Column] = value;
  4473. }
  4474. }
  4475. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4476. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4477. public bool Isдата_экзамена_1Null() {
  4478. return this.IsNull(this.tableOcenka.дата_экзамена_1Column);
  4479. }
  4480. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4481. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4482. public void Setдата_экзамена_1Null() {
  4483. this[this.tableOcenka.дата_экзамена_1Column] = global::System.Convert.DBNull;
  4484. }
  4485. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4486. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4487. public bool Isдата_экзамена_2Null() {
  4488. return this.IsNull(this.tableOcenka.дата_экзамена_2Column);
  4489. }
  4490. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4491. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4492. public void Setдата_экзамена_2Null() {
  4493. this[this.tableOcenka.дата_экзамена_2Column] = global::System.Convert.DBNull;
  4494. }
  4495. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4496. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4497. public bool IsДата_экзамена_3Null() {
  4498. return this.IsNull(this.tableOcenka.Дата_экзамена_3Column);
  4499. }
  4500. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4501. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4502. public void SetДата_экзамена_3Null() {
  4503. this[this.tableOcenka.Дата_экзамена_3Column] = global::System.Convert.DBNull;
  4504. }
  4505. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4506. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4507. public bool IsОценка_1Null() {
  4508. return this.IsNull(this.tableOcenka.Оценка_1Column);
  4509. }
  4510. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4511. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4512. public void SetОценка_1Null() {
  4513. this[this.tableOcenka.Оценка_1Column] = global::System.Convert.DBNull;
  4514. }
  4515. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4516. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4517. public bool IsОценка_2Null() {
  4518. return this.IsNull(this.tableOcenka.Оценка_2Column);
  4519. }
  4520. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4521. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4522. public void SetОценка_2Null() {
  4523. this[this.tableOcenka.Оценка_2Column] = global::System.Convert.DBNull;
  4524. }
  4525. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4526. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4527. public bool IsОценка_3Null() {
  4528. return this.IsNull(this.tableOcenka.Оценка_3Column);
  4529. }
  4530. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4531. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4532. public void SetОценка_3Null() {
  4533. this[this.tableOcenka.Оценка_3Column] = global::System.Convert.DBNull;
  4534. }
  4535. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4536. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4537. public bool IsСредний_баллNull() {
  4538. return this.IsNull(this.tableOcenka.Средний_баллColumn);
  4539. }
  4540. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4541. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4542. public void SetСредний_баллNull() {
  4543. this[this.tableOcenka.Средний_баллColumn] = global::System.Convert.DBNull;
  4544. }
  4545. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4546. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4547. public bool IsКод_предмета_1Null() {
  4548. return this.IsNull(this.tableOcenka.Код_предмета_1Column);
  4549. }
  4550. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4551. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4552. public void SetКод_предмета_1Null() {
  4553. this[this.tableOcenka.Код_предмета_1Column] = global::System.Convert.DBNull;
  4554. }
  4555. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4556. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4557. public bool IsКод_предмета_2Null() {
  4558. return this.IsNull(this.tableOcenka.Код_предмета_2Column);
  4559. }
  4560. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4561. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4562. public void SetКод_предмета_2Null() {
  4563. this[this.tableOcenka.Код_предмета_2Column] = global::System.Convert.DBNull;
  4564. }
  4565. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4566. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4567. public bool IsКод_предмета_3Null() {
  4568. return this.IsNull(this.tableOcenka.Код_предмета_3Column);
  4569. }
  4570. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4571. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4572. public void SetКод_предмета_3Null() {
  4573. this[this.tableOcenka.Код_предмета_3Column] = global::System.Convert.DBNull;
  4574. }
  4575. }
  4576. /// <summary>
  4577. ///Represents strongly named DataRow class.
  4578. ///</summary>
  4579. public partial class PredmetRow : global::System.Data.DataRow {
  4580. private PredmetDataTable tablePredmet;
  4581. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4582. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4583. internal PredmetRow(global::System.Data.DataRowBuilder rb) :
  4584. base(rb) {
  4585. this.tablePredmet = ((PredmetDataTable)(this.Table));
  4586. }
  4587. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4588. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4589. public long код_предмета {
  4590. get {
  4591. return ((long)(this[this.tablePredmet.код_предметаColumn]));
  4592. }
  4593. set {
  4594. this[this.tablePredmet.код_предметаColumn] = value;
  4595. }
  4596. }
  4597. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4598. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4599. public string наименование_предмета {
  4600. get {
  4601. try {
  4602. return ((string)(this[this.tablePredmet.наименование_предметаColumn]));
  4603. }
  4604. catch (global::System.InvalidCastException e) {
  4605. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета\' в таблице \'Predmet\' равно DBNull.", e);
  4606. }
  4607. }
  4608. set {
  4609. this[this.tablePredmet.наименование_предметаColumn] = value;
  4610. }
  4611. }
  4612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4614. public string описание_предмета {
  4615. get {
  4616. try {
  4617. return ((string)(this[this.tablePredmet.описание_предметаColumn]));
  4618. }
  4619. catch (global::System.InvalidCastException e) {
  4620. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание предмета\' в таблице \'Predmet\' равно DBNull.", e);
  4621. }
  4622. }
  4623. set {
  4624. this[this.tablePredmet.описание_предметаColumn] = value;
  4625. }
  4626. }
  4627. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4628. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4629. public bool Isнаименование_предметаNull() {
  4630. return this.IsNull(this.tablePredmet.наименование_предметаColumn);
  4631. }
  4632. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4633. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4634. public void Setнаименование_предметаNull() {
  4635. this[this.tablePredmet.наименование_предметаColumn] = global::System.Convert.DBNull;
  4636. }
  4637. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4638. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4639. public bool Isописание_предметаNull() {
  4640. return this.IsNull(this.tablePredmet.описание_предметаColumn);
  4641. }
  4642. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4643. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4644. public void Setописание_предметаNull() {
  4645. this[this.tablePredmet.описание_предметаColumn] = global::System.Convert.DBNull;
  4646. }
  4647. }
  4648. /// <summary>
  4649. ///Represents strongly named DataRow class.
  4650. ///</summary>
  4651. public partial class specRow : global::System.Data.DataRow {
  4652. private specDataTable tablespec;
  4653. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4654. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4655. internal specRow(global::System.Data.DataRowBuilder rb) :
  4656. base(rb) {
  4657. this.tablespec = ((specDataTable)(this.Table));
  4658. }
  4659. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4660. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4661. public long код_специальности {
  4662. get {
  4663. return ((long)(this[this.tablespec.код_специальностиColumn]));
  4664. }
  4665. set {
  4666. this[this.tablespec.код_специальностиColumn] = value;
  4667. }
  4668. }
  4669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4671. public string наименование_специальности {
  4672. get {
  4673. return ((string)(this[this.tablespec.наименование_специальностиColumn]));
  4674. }
  4675. set {
  4676. this[this.tablespec.наименование_специальностиColumn] = value;
  4677. }
  4678. }
  4679. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4680. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4681. public string описание_специальности {
  4682. get {
  4683. try {
  4684. return ((string)(this[this.tablespec.описание_специальностиColumn]));
  4685. }
  4686. catch (global::System.InvalidCastException e) {
  4687. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание специальности\' в таблице \'spec\' равно DBNull.", e);
  4688. }
  4689. }
  4690. set {
  4691. this[this.tablespec.описание_специальностиColumn] = value;
  4692. }
  4693. }
  4694. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4695. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4696. public bool Isописание_специальностиNull() {
  4697. return this.IsNull(this.tablespec.описание_специальностиColumn);
  4698. }
  4699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4701. public void Setописание_специальностиNull() {
  4702. this[this.tablespec.описание_специальностиColumn] = global::System.Convert.DBNull;
  4703. }
  4704. }
  4705. /// <summary>
  4706. ///Represents strongly named DataRow class.
  4707. ///</summary>
  4708. public partial class StudentsRow : global::System.Data.DataRow {
  4709. private StudentsDataTable tableStudents;
  4710. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4711. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4712. internal StudentsRow(global::System.Data.DataRowBuilder rb) :
  4713. base(rb) {
  4714. this.tableStudents = ((StudentsDataTable)(this.Table));
  4715. }
  4716. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4717. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4718. public long Код_студента {
  4719. get {
  4720. return ((long)(this[this.tableStudents.Код_студентаColumn]));
  4721. }
  4722. set {
  4723. this[this.tableStudents.Код_студентаColumn] = value;
  4724. }
  4725. }
  4726. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4727. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4728. public string ФИО {
  4729. get {
  4730. try {
  4731. return ((string)(this[this.tableStudents.ФИОColumn]));
  4732. }
  4733. catch (global::System.InvalidCastException e) {
  4734. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Students\' равно DBNull.", e);
  4735. }
  4736. }
  4737. set {
  4738. this[this.tableStudents.ФИОColumn] = value;
  4739. }
  4740. }
  4741. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4742. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4743. public string Пол {
  4744. get {
  4745. try {
  4746. return ((string)(this[this.tableStudents.ПолColumn]));
  4747. }
  4748. catch (global::System.InvalidCastException e) {
  4749. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Students\' равно DBNull.", e);
  4750. }
  4751. }
  4752. set {
  4753. this[this.tableStudents.ПолColumn] = value;
  4754. }
  4755. }
  4756. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4757. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4758. public string Родители {
  4759. get {
  4760. try {
  4761. return ((string)(this[this.tableStudents.РодителиColumn]));
  4762. }
  4763. catch (global::System.InvalidCastException e) {
  4764. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Students\' равно DBNull.", e);
  4765. }
  4766. }
  4767. set {
  4768. this[this.tableStudents.РодителиColumn] = value;
  4769. }
  4770. }
  4771. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4772. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4773. public string Адрес {
  4774. get {
  4775. try {
  4776. return ((string)(this[this.tableStudents.АдресColumn]));
  4777. }
  4778. catch (global::System.InvalidCastException e) {
  4779. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Students\' равно DBNull.", e);
  4780. }
  4781. }
  4782. set {
  4783. this[this.tableStudents.АдресColumn] = value;
  4784. }
  4785. }
  4786. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4787. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4788. public string Телефон {
  4789. get {
  4790. try {
  4791. return ((string)(this[this.tableStudents.ТелефонColumn]));
  4792. }
  4793. catch (global::System.InvalidCastException e) {
  4794. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Students\' равно DBNull.", e);
  4795. }
  4796. }
  4797. set {
  4798. this[this.tableStudents.ТелефонColumn] = value;
  4799. }
  4800. }
  4801. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4802. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4803. public string Паспортные_данные {
  4804. get {
  4805. try {
  4806. return ((string)(this[this.tableStudents.Паспортные_данныеColumn]));
  4807. }
  4808. catch (global::System.InvalidCastException e) {
  4809. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Students\' равно DBNull.", e);
  4810. }
  4811. }
  4812. set {
  4813. this[this.tableStudents.Паспортные_данныеColumn] = value;
  4814. }
  4815. }
  4816. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4817. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4818. public string Группа {
  4819. get {
  4820. try {
  4821. return ((string)(this[this.tableStudents.ГруппаColumn]));
  4822. }
  4823. catch (global::System.InvalidCastException e) {
  4824. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Students\' равно DBNull.", e);
  4825. }
  4826. }
  4827. set {
  4828. this[this.tableStudents.ГруппаColumn] = value;
  4829. }
  4830. }
  4831. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4832. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4833. public System.DateTime Дата_рождения {
  4834. get {
  4835. try {
  4836. return ((global::System.DateTime)(this[this.tableStudents.Дата_рожденияColumn]));
  4837. }
  4838. catch (global::System.InvalidCastException e) {
  4839. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Students\' равно DBNull.", e);
  4840. }
  4841. }
  4842. set {
  4843. this[this.tableStudents.Дата_рожденияColumn] = value;
  4844. }
  4845. }
  4846. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4847. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4848. public System.DateTime Дата_поступления {
  4849. get {
  4850. try {
  4851. return ((global::System.DateTime)(this[this.tableStudents.Дата_поступленияColumn]));
  4852. }
  4853. catch (global::System.InvalidCastException e) {
  4854. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата поступления\' в таблице \'Students\' равно DBNull.", e);
  4855. }
  4856. }
  4857. set {
  4858. this[this.tableStudents.Дата_поступленияColumn] = value;
  4859. }
  4860. }
  4861. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4862. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4863. public bool Очная_форма_обучения {
  4864. get {
  4865. try {
  4866. return ((bool)(this[this.tableStudents.Очная_форма_обученияColumn]));
  4867. }
  4868. catch (global::System.InvalidCastException e) {
  4869. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Students\' равно DBNull.", e);
  4870. }
  4871. }
  4872. set {
  4873. this[this.tableStudents.Очная_форма_обученияColumn] = value;
  4874. }
  4875. }
  4876. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4877. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4878. public long Номер_зачетки {
  4879. get {
  4880. try {
  4881. return ((long)(this[this.tableStudents.Номер_зачеткиColumn]));
  4882. }
  4883. catch (global::System.InvalidCastException e) {
  4884. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Students\' равно DBNull.", e);
  4885. }
  4886. }
  4887. set {
  4888. this[this.tableStudents.Номер_зачеткиColumn] = value;
  4889. }
  4890. }
  4891. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4892. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4893. public byte Курс {
  4894. get {
  4895. try {
  4896. return ((byte)(this[this.tableStudents.КурсColumn]));
  4897. }
  4898. catch (global::System.InvalidCastException e) {
  4899. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Students\' равно DBNull.", e);
  4900. }
  4901. }
  4902. set {
  4903. this[this.tableStudents.КурсColumn] = value;
  4904. }
  4905. }
  4906. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4907. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4908. public long Код_специальности {
  4909. get {
  4910. try {
  4911. return ((long)(this[this.tableStudents.Код_специальностиColumn]));
  4912. }
  4913. catch (global::System.InvalidCastException e) {
  4914. throw new global::System.Data.StrongTypingException("Значение для столбца \'Код специальности\' в таблице \'Students\' равно DBNull.", e);
  4915. }
  4916. }
  4917. set {
  4918. this[this.tableStudents.Код_специальностиColumn] = value;
  4919. }
  4920. }
  4921. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4922. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4923. public bool IsФИОNull() {
  4924. return this.IsNull(this.tableStudents.ФИОColumn);
  4925. }
  4926. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4927. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4928. public void SetФИОNull() {
  4929. this[this.tableStudents.ФИОColumn] = global::System.Convert.DBNull;
  4930. }
  4931. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4932. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4933. public bool IsПолNull() {
  4934. return this.IsNull(this.tableStudents.ПолColumn);
  4935. }
  4936. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4937. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4938. public void SetПолNull() {
  4939. this[this.tableStudents.ПолColumn] = global::System.Convert.DBNull;
  4940. }
  4941. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4942. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4943. public bool IsРодителиNull() {
  4944. return this.IsNull(this.tableStudents.РодителиColumn);
  4945. }
  4946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4948. public void SetРодителиNull() {
  4949. this[this.tableStudents.РодителиColumn] = global::System.Convert.DBNull;
  4950. }
  4951. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4952. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4953. public bool IsАдресNull() {
  4954. return this.IsNull(this.tableStudents.АдресColumn);
  4955. }
  4956. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4957. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4958. public void SetАдресNull() {
  4959. this[this.tableStudents.АдресColumn] = global::System.Convert.DBNull;
  4960. }
  4961. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4962. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4963. public bool IsТелефонNull() {
  4964. return this.IsNull(this.tableStudents.ТелефонColumn);
  4965. }
  4966. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4967. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4968. public void SetТелефонNull() {
  4969. this[this.tableStudents.ТелефонColumn] = global::System.Convert.DBNull;
  4970. }
  4971. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4972. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4973. public bool IsПаспортные_данныеNull() {
  4974. return this.IsNull(this.tableStudents.Паспортные_данныеColumn);
  4975. }
  4976. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4977. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4978. public void SetПаспортные_данныеNull() {
  4979. this[this.tableStudents.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  4980. }
  4981. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4982. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4983. public bool IsГруппаNull() {
  4984. return this.IsNull(this.tableStudents.ГруппаColumn);
  4985. }
  4986. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4987. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4988. public void SetГруппаNull() {
  4989. this[this.tableStudents.ГруппаColumn] = global::System.Convert.DBNull;
  4990. }
  4991. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4992. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4993. public bool IsДата_рожденияNull() {
  4994. return this.IsNull(this.tableStudents.Дата_рожденияColumn);
  4995. }
  4996. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  4997. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  4998. public void SetДата_рожденияNull() {
  4999. this[this.tableStudents.Дата_рожденияColumn] = global::System.Convert.DBNull;
  5000. }
  5001. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5002. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5003. public bool IsДата_поступленияNull() {
  5004. return this.IsNull(this.tableStudents.Дата_поступленияColumn);
  5005. }
  5006. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5007. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5008. public void SetДата_поступленияNull() {
  5009. this[this.tableStudents.Дата_поступленияColumn] = global::System.Convert.DBNull;
  5010. }
  5011. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5012. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5013. public bool IsОчная_форма_обученияNull() {
  5014. return this.IsNull(this.tableStudents.Очная_форма_обученияColumn);
  5015. }
  5016. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5017. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5018. public void SetОчная_форма_обученияNull() {
  5019. this[this.tableStudents.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  5020. }
  5021. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5022. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5023. public bool IsНомер_зачеткиNull() {
  5024. return this.IsNull(this.tableStudents.Номер_зачеткиColumn);
  5025. }
  5026. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5027. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5028. public void SetНомер_зачеткиNull() {
  5029. this[this.tableStudents.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  5030. }
  5031. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5032. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5033. public bool IsКурсNull() {
  5034. return this.IsNull(this.tableStudents.КурсColumn);
  5035. }
  5036. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5037. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5038. public void SetКурсNull() {
  5039. this[this.tableStudents.КурсColumn] = global::System.Convert.DBNull;
  5040. }
  5041. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5042. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5043. public bool IsКод_специальностиNull() {
  5044. return this.IsNull(this.tableStudents.Код_специальностиColumn);
  5045. }
  5046. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5048. public void SetКод_специальностиNull() {
  5049. this[this.tableStudents.Код_специальностиColumn] = global::System.Convert.DBNull;
  5050. }
  5051. }
  5052. /// <summary>
  5053. ///Represents strongly named DataRow class.
  5054. ///</summary>
  5055. public partial class _запрос_студенты_оценкиRow : global::System.Data.DataRow {
  5056. private _запрос_студенты_оценкиDataTable _tableзапрос_студенты_оценки;
  5057. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5058. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5059. internal _запрос_студенты_оценкиRow(global::System.Data.DataRowBuilder rb) :
  5060. base(rb) {
  5061. this._tableзапрос_студенты_оценки = ((_запрос_студенты_оценкиDataTable)(this.Table));
  5062. }
  5063. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5064. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5065. public string фио_студента {
  5066. get {
  5067. try {
  5068. return ((string)(this[this._tableзапрос_студенты_оценки.фио_студентаColumn]));
  5069. }
  5070. catch (global::System.InvalidCastException e) {
  5071. throw new global::System.Data.StrongTypingException("Значение для столбца \'фио студента\' в таблице \'запрос студенты+оценки\' равно DBNu" +
  5072. "ll.", e);
  5073. }
  5074. }
  5075. set {
  5076. this[this._tableзапрос_студенты_оценки.фио_студентаColumn] = value;
  5077. }
  5078. }
  5079. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5080. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5081. public byte оценка_первого_экзамена {
  5082. get {
  5083. try {
  5084. return ((byte)(this[this._tableзапрос_студенты_оценки.оценка_первого_экзаменаColumn]));
  5085. }
  5086. catch (global::System.InvalidCastException e) {
  5087. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка первого экзамена\' в таблице \'запрос студенты+оценки\'" +
  5088. " равно DBNull.", e);
  5089. }
  5090. }
  5091. set {
  5092. this[this._tableзапрос_студенты_оценки.оценка_первого_экзаменаColumn] = value;
  5093. }
  5094. }
  5095. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5096. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5097. public byte оценка_второго_экзамена {
  5098. get {
  5099. try {
  5100. return ((byte)(this[this._tableзапрос_студенты_оценки.оценка_второго_экзаменаColumn]));
  5101. }
  5102. catch (global::System.InvalidCastException e) {
  5103. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка второго экзамена\' в таблице \'запрос студенты+оценки\'" +
  5104. " равно DBNull.", e);
  5105. }
  5106. }
  5107. set {
  5108. this[this._tableзапрос_студенты_оценки.оценка_второго_экзаменаColumn] = value;
  5109. }
  5110. }
  5111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5113. public byte оценка_третьего_экзамена {
  5114. get {
  5115. try {
  5116. return ((byte)(this[this._tableзапрос_студенты_оценки.оценка_третьего_экзаменаColumn]));
  5117. }
  5118. catch (global::System.InvalidCastException e) {
  5119. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка третьего экзамена\' в таблице \'запрос студенты+оценки" +
  5120. "\' равно DBNull.", e);
  5121. }
  5122. }
  5123. set {
  5124. this[this._tableзапрос_студенты_оценки.оценка_третьего_экзаменаColumn] = value;
  5125. }
  5126. }
  5127. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5128. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5129. public System.DateTime дата_третьего_экзамена {
  5130. get {
  5131. try {
  5132. return ((global::System.DateTime)(this[this._tableзапрос_студенты_оценки.дата_третьего_экзаменаColumn]));
  5133. }
  5134. catch (global::System.InvalidCastException e) {
  5135. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата третьего экзамена\' в таблице \'запрос студенты+оценки\' " +
  5136. "равно DBNull.", e);
  5137. }
  5138. }
  5139. set {
  5140. this[this._tableзапрос_студенты_оценки.дата_третьего_экзаменаColumn] = value;
  5141. }
  5142. }
  5143. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5144. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5145. public System.DateTime дата_второго_экзамена {
  5146. get {
  5147. try {
  5148. return ((global::System.DateTime)(this[this._tableзапрос_студенты_оценки.дата_второго_экзаменаColumn]));
  5149. }
  5150. catch (global::System.InvalidCastException e) {
  5151. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата второго экзамена\' в таблице \'запрос студенты+оценки\' р" +
  5152. "авно DBNull.", e);
  5153. }
  5154. }
  5155. set {
  5156. this[this._tableзапрос_студенты_оценки.дата_второго_экзаменаColumn] = value;
  5157. }
  5158. }
  5159. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5160. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5161. public System.DateTime дата_первого_экзамена {
  5162. get {
  5163. try {
  5164. return ((global::System.DateTime)(this[this._tableзапрос_студенты_оценки.дата_первого_экзаменаColumn]));
  5165. }
  5166. catch (global::System.InvalidCastException e) {
  5167. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата первого экзамена\' в таблице \'запрос студенты+оценки\' р" +
  5168. "авно DBNull.", e);
  5169. }
  5170. }
  5171. set {
  5172. this[this._tableзапрос_студенты_оценки.дата_первого_экзаменаColumn] = value;
  5173. }
  5174. }
  5175. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5176. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5177. public float средний_балл_студента_за_сессию {
  5178. get {
  5179. try {
  5180. return ((float)(this[this._tableзапрос_студенты_оценки.средний_балл_студента_за_сессиюColumn]));
  5181. }
  5182. catch (global::System.InvalidCastException e) {
  5183. throw new global::System.Data.StrongTypingException("Значение для столбца \'средний балл студента за сессию\' в таблице \'запрос студенты" +
  5184. "+оценки\' равно DBNull.", e);
  5185. }
  5186. }
  5187. set {
  5188. this[this._tableзапрос_студенты_оценки.средний_балл_студента_за_сессиюColumn] = value;
  5189. }
  5190. }
  5191. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5192. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5193. public string наименование_предмета_первого_экзамена {
  5194. get {
  5195. try {
  5196. return ((string)(this[this._tableзапрос_студенты_оценки.наименование_предмета_первого_экзаменаColumn]));
  5197. }
  5198. catch (global::System.InvalidCastException e) {
  5199. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета первого экзамена\' в таблице \'запрос с" +
  5200. "туденты+оценки\' равно DBNull.", e);
  5201. }
  5202. }
  5203. set {
  5204. this[this._tableзапрос_студенты_оценки.наименование_предмета_первого_экзаменаColumn] = value;
  5205. }
  5206. }
  5207. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5208. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5209. public string наименование_предмета_третьего_экзамена {
  5210. get {
  5211. try {
  5212. return ((string)(this[this._tableзапрос_студенты_оценки.наименование_предмета_третьего_экзаменаColumn]));
  5213. }
  5214. catch (global::System.InvalidCastException e) {
  5215. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета третьего экзамена\' в таблице \'запрос " +
  5216. "студенты+оценки\' равно DBNull.", e);
  5217. }
  5218. }
  5219. set {
  5220. this[this._tableзапрос_студенты_оценки.наименование_предмета_третьего_экзаменаColumn] = value;
  5221. }
  5222. }
  5223. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5224. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5225. public string наименование_предмета_второго_экзамена {
  5226. get {
  5227. try {
  5228. return ((string)(this[this._tableзапрос_студенты_оценки.наименование_предмета_второго_экзаменаColumn]));
  5229. }
  5230. catch (global::System.InvalidCastException e) {
  5231. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета второго экзамена\' в таблице \'запрос с" +
  5232. "туденты+оценки\' равно DBNull.", e);
  5233. }
  5234. }
  5235. set {
  5236. this[this._tableзапрос_студенты_оценки.наименование_предмета_второго_экзаменаColumn] = value;
  5237. }
  5238. }
  5239. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5240. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5241. public bool Isфио_студентаNull() {
  5242. return this.IsNull(this._tableзапрос_студенты_оценки.фио_студентаColumn);
  5243. }
  5244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5246. public void Setфио_студентаNull() {
  5247. this[this._tableзапрос_студенты_оценки.фио_студентаColumn] = global::System.Convert.DBNull;
  5248. }
  5249. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5250. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5251. public bool Isоценка_первого_экзаменаNull() {
  5252. return this.IsNull(this._tableзапрос_студенты_оценки.оценка_первого_экзаменаColumn);
  5253. }
  5254. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5255. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5256. public void Setоценка_первого_экзаменаNull() {
  5257. this[this._tableзапрос_студенты_оценки.оценка_первого_экзаменаColumn] = global::System.Convert.DBNull;
  5258. }
  5259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5261. public bool Isоценка_второго_экзаменаNull() {
  5262. return this.IsNull(this._tableзапрос_студенты_оценки.оценка_второго_экзаменаColumn);
  5263. }
  5264. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5265. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5266. public void Setоценка_второго_экзаменаNull() {
  5267. this[this._tableзапрос_студенты_оценки.оценка_второго_экзаменаColumn] = global::System.Convert.DBNull;
  5268. }
  5269. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5270. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5271. public bool Isоценка_третьего_экзаменаNull() {
  5272. return this.IsNull(this._tableзапрос_студенты_оценки.оценка_третьего_экзаменаColumn);
  5273. }
  5274. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5275. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5276. public void Setоценка_третьего_экзаменаNull() {
  5277. this[this._tableзапрос_студенты_оценки.оценка_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  5278. }
  5279. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5280. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5281. public bool Isдата_третьего_экзаменаNull() {
  5282. return this.IsNull(this._tableзапрос_студенты_оценки.дата_третьего_экзаменаColumn);
  5283. }
  5284. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5285. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5286. public void Setдата_третьего_экзаменаNull() {
  5287. this[this._tableзапрос_студенты_оценки.дата_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  5288. }
  5289. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5290. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5291. public bool Isдата_второго_экзаменаNull() {
  5292. return this.IsNull(this._tableзапрос_студенты_оценки.дата_второго_экзаменаColumn);
  5293. }
  5294. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5295. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5296. public void Setдата_второго_экзаменаNull() {
  5297. this[this._tableзапрос_студенты_оценки.дата_второго_экзаменаColumn] = global::System.Convert.DBNull;
  5298. }
  5299. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5300. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5301. public bool Isдата_первого_экзаменаNull() {
  5302. return this.IsNull(this._tableзапрос_студенты_оценки.дата_первого_экзаменаColumn);
  5303. }
  5304. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5305. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5306. public void Setдата_первого_экзаменаNull() {
  5307. this[this._tableзапрос_студенты_оценки.дата_первого_экзаменаColumn] = global::System.Convert.DBNull;
  5308. }
  5309. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5310. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5311. public bool Isсредний_балл_студента_за_сессиюNull() {
  5312. return this.IsNull(this._tableзапрос_студенты_оценки.средний_балл_студента_за_сессиюColumn);
  5313. }
  5314. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5315. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5316. public void Setсредний_балл_студента_за_сессиюNull() {
  5317. this[this._tableзапрос_студенты_оценки.средний_балл_студента_за_сессиюColumn] = global::System.Convert.DBNull;
  5318. }
  5319. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5320. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5321. public bool Isнаименование_предмета_первого_экзаменаNull() {
  5322. return this.IsNull(this._tableзапрос_студенты_оценки.наименование_предмета_первого_экзаменаColumn);
  5323. }
  5324. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5325. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5326. public void Setнаименование_предмета_первого_экзаменаNull() {
  5327. this[this._tableзапрос_студенты_оценки.наименование_предмета_первого_экзаменаColumn] = global::System.Convert.DBNull;
  5328. }
  5329. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5330. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5331. public bool Isнаименование_предмета_третьего_экзаменаNull() {
  5332. return this.IsNull(this._tableзапрос_студенты_оценки.наименование_предмета_третьего_экзаменаColumn);
  5333. }
  5334. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5335. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5336. public void Setнаименование_предмета_третьего_экзаменаNull() {
  5337. this[this._tableзапрос_студенты_оценки.наименование_предмета_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  5338. }
  5339. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5340. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5341. public bool Isнаименование_предмета_второго_экзаменаNull() {
  5342. return this.IsNull(this._tableзапрос_студенты_оценки.наименование_предмета_второго_экзаменаColumn);
  5343. }
  5344. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5345. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5346. public void Setнаименование_предмета_второго_экзаменаNull() {
  5347. this[this._tableзапрос_студенты_оценки.наименование_предмета_второго_экзаменаColumn] = global::System.Convert.DBNull;
  5348. }
  5349. }
  5350. /// <summary>
  5351. ///Represents strongly named DataRow class.
  5352. ///</summary>
  5353. public partial class _Запрос_Студенты_СпециальностиRow : global::System.Data.DataRow {
  5354. private _Запрос_Студенты_СпециальностиDataTable _tableЗапрос_Студенты_Специальности;
  5355. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5356. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5357. internal _Запрос_Студенты_СпециальностиRow(global::System.Data.DataRowBuilder rb) :
  5358. base(rb) {
  5359. this._tableЗапрос_Студенты_Специальности = ((_Запрос_Студенты_СпециальностиDataTable)(this.Table));
  5360. }
  5361. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5362. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5363. public System.DateTime Expr1 {
  5364. get {
  5365. try {
  5366. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Специальности.Expr1Column]));
  5367. }
  5368. catch (global::System.InvalidCastException e) {
  5369. throw new global::System.Data.StrongTypingException("Значение для столбца \'Expr1\' в таблице \'Запрос Студенты+Специальности\' равно DBNu" +
  5370. "ll.", e);
  5371. }
  5372. }
  5373. set {
  5374. this[this._tableЗапрос_Студенты_Специальности.Expr1Column] = value;
  5375. }
  5376. }
  5377. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5378. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5379. public string ФИО {
  5380. get {
  5381. try {
  5382. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ФИОColumn]));
  5383. }
  5384. catch (global::System.InvalidCastException e) {
  5385. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Запрос Студенты+Специальности\' равно DBNull" +
  5386. ".", e);
  5387. }
  5388. }
  5389. set {
  5390. this[this._tableЗапрос_Студенты_Специальности.ФИОColumn] = value;
  5391. }
  5392. }
  5393. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5394. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5395. public string Пол {
  5396. get {
  5397. try {
  5398. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ПолColumn]));
  5399. }
  5400. catch (global::System.InvalidCastException e) {
  5401. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Запрос Студенты+Специальности\' равно DBNull" +
  5402. ".", e);
  5403. }
  5404. }
  5405. set {
  5406. this[this._tableЗапрос_Студенты_Специальности.ПолColumn] = value;
  5407. }
  5408. }
  5409. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5410. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5411. public string Родители {
  5412. get {
  5413. try {
  5414. return ((string)(this[this._tableЗапрос_Студенты_Специальности.РодителиColumn]));
  5415. }
  5416. catch (global::System.InvalidCastException e) {
  5417. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Запрос Студенты+Специальности\' равно D" +
  5418. "BNull.", e);
  5419. }
  5420. }
  5421. set {
  5422. this[this._tableЗапрос_Студенты_Специальности.РодителиColumn] = value;
  5423. }
  5424. }
  5425. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5426. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5427. public string Адрес {
  5428. get {
  5429. try {
  5430. return ((string)(this[this._tableЗапрос_Студенты_Специальности.АдресColumn]));
  5431. }
  5432. catch (global::System.InvalidCastException e) {
  5433. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Запрос Студенты+Специальности\' равно DBNu" +
  5434. "ll.", e);
  5435. }
  5436. }
  5437. set {
  5438. this[this._tableЗапрос_Студенты_Специальности.АдресColumn] = value;
  5439. }
  5440. }
  5441. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5442. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5443. public string Паспортные_данные {
  5444. get {
  5445. try {
  5446. return ((string)(this[this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn]));
  5447. }
  5448. catch (global::System.InvalidCastException e) {
  5449. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Запрос Студенты+Специальности" +
  5450. "\' равно DBNull.", e);
  5451. }
  5452. }
  5453. set {
  5454. this[this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn] = value;
  5455. }
  5456. }
  5457. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5458. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5459. public string Телефон {
  5460. get {
  5461. try {
  5462. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ТелефонColumn]));
  5463. }
  5464. catch (global::System.InvalidCastException e) {
  5465. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Запрос Студенты+Специальности\' равно DB" +
  5466. "Null.", e);
  5467. }
  5468. }
  5469. set {
  5470. this[this._tableЗапрос_Студенты_Специальности.ТелефонColumn] = value;
  5471. }
  5472. }
  5473. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5474. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5475. public string Группа {
  5476. get {
  5477. try {
  5478. return ((string)(this[this._tableЗапрос_Студенты_Специальности.ГруппаColumn]));
  5479. }
  5480. catch (global::System.InvalidCastException e) {
  5481. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Запрос Студенты+Специальности\' равно DBN" +
  5482. "ull.", e);
  5483. }
  5484. }
  5485. set {
  5486. this[this._tableЗапрос_Студенты_Специальности.ГруппаColumn] = value;
  5487. }
  5488. }
  5489. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5490. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5491. public System.DateTime Дата_рождения {
  5492. get {
  5493. try {
  5494. return ((global::System.DateTime)(this[this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn]));
  5495. }
  5496. catch (global::System.InvalidCastException e) {
  5497. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Запрос Студенты+Специальности\' ра" +
  5498. "вно DBNull.", e);
  5499. }
  5500. }
  5501. set {
  5502. this[this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn] = value;
  5503. }
  5504. }
  5505. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5506. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5507. public bool Очная_форма_обучения {
  5508. get {
  5509. try {
  5510. return ((bool)(this[this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn]));
  5511. }
  5512. catch (global::System.InvalidCastException e) {
  5513. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Запрос Студенты+Специально" +
  5514. "сти\' равно DBNull.", e);
  5515. }
  5516. }
  5517. set {
  5518. this[this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn] = value;
  5519. }
  5520. }
  5521. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5522. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5523. public long Номер_зачетки {
  5524. get {
  5525. try {
  5526. return ((long)(this[this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn]));
  5527. }
  5528. catch (global::System.InvalidCastException e) {
  5529. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Запрос Студенты+Специальности\' ра" +
  5530. "вно DBNull.", e);
  5531. }
  5532. }
  5533. set {
  5534. this[this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn] = value;
  5535. }
  5536. }
  5537. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5538. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5539. public byte Курс {
  5540. get {
  5541. try {
  5542. return ((byte)(this[this._tableЗапрос_Студенты_Специальности.КурсColumn]));
  5543. }
  5544. catch (global::System.InvalidCastException e) {
  5545. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Запрос Студенты+Специальности\' равно DBNul" +
  5546. "l.", e);
  5547. }
  5548. }
  5549. set {
  5550. this[this._tableЗапрос_Студенты_Специальности.КурсColumn] = value;
  5551. }
  5552. }
  5553. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5554. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5555. public string наименование_специальности {
  5556. get {
  5557. return ((string)(this[this._tableЗапрос_Студенты_Специальности.наименование_специальностиColumn]));
  5558. }
  5559. set {
  5560. this[this._tableЗапрос_Студенты_Специальности.наименование_специальностиColumn] = value;
  5561. }
  5562. }
  5563. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5564. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5565. public string описание_специальности {
  5566. get {
  5567. try {
  5568. return ((string)(this[this._tableЗапрос_Студенты_Специальности.описание_специальностиColumn]));
  5569. }
  5570. catch (global::System.InvalidCastException e) {
  5571. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание специальности\' в таблице \'Запрос Студенты+Специаль" +
  5572. "ности\' равно DBNull.", e);
  5573. }
  5574. }
  5575. set {
  5576. this[this._tableЗапрос_Студенты_Специальности.описание_специальностиColumn] = value;
  5577. }
  5578. }
  5579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5581. public bool IsExpr1Null() {
  5582. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Expr1Column);
  5583. }
  5584. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5585. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5586. public void SetExpr1Null() {
  5587. this[this._tableЗапрос_Студенты_Специальности.Expr1Column] = global::System.Convert.DBNull;
  5588. }
  5589. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5590. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5591. public bool IsФИОNull() {
  5592. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ФИОColumn);
  5593. }
  5594. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5595. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5596. public void SetФИОNull() {
  5597. this[this._tableЗапрос_Студенты_Специальности.ФИОColumn] = global::System.Convert.DBNull;
  5598. }
  5599. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5600. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5601. public bool IsПолNull() {
  5602. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ПолColumn);
  5603. }
  5604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5606. public void SetПолNull() {
  5607. this[this._tableЗапрос_Студенты_Специальности.ПолColumn] = global::System.Convert.DBNull;
  5608. }
  5609. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5610. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5611. public bool IsРодителиNull() {
  5612. return this.IsNull(this._tableЗапрос_Студенты_Специальности.РодителиColumn);
  5613. }
  5614. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5615. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5616. public void SetРодителиNull() {
  5617. this[this._tableЗапрос_Студенты_Специальности.РодителиColumn] = global::System.Convert.DBNull;
  5618. }
  5619. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5620. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5621. public bool IsАдресNull() {
  5622. return this.IsNull(this._tableЗапрос_Студенты_Специальности.АдресColumn);
  5623. }
  5624. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5626. public void SetАдресNull() {
  5627. this[this._tableЗапрос_Студенты_Специальности.АдресColumn] = global::System.Convert.DBNull;
  5628. }
  5629. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5630. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5631. public bool IsПаспортные_данныеNull() {
  5632. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn);
  5633. }
  5634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5636. public void SetПаспортные_данныеNull() {
  5637. this[this._tableЗапрос_Студенты_Специальности.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  5638. }
  5639. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5640. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5641. public bool IsТелефонNull() {
  5642. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ТелефонColumn);
  5643. }
  5644. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5645. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5646. public void SetТелефонNull() {
  5647. this[this._tableЗапрос_Студенты_Специальности.ТелефонColumn] = global::System.Convert.DBNull;
  5648. }
  5649. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5650. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5651. public bool IsГруппаNull() {
  5652. return this.IsNull(this._tableЗапрос_Студенты_Специальности.ГруппаColumn);
  5653. }
  5654. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5655. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5656. public void SetГруппаNull() {
  5657. this[this._tableЗапрос_Студенты_Специальности.ГруппаColumn] = global::System.Convert.DBNull;
  5658. }
  5659. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5660. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5661. public bool IsДата_рожденияNull() {
  5662. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn);
  5663. }
  5664. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5665. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5666. public void SetДата_рожденияNull() {
  5667. this[this._tableЗапрос_Студенты_Специальности.Дата_рожденияColumn] = global::System.Convert.DBNull;
  5668. }
  5669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5671. public bool IsОчная_форма_обученияNull() {
  5672. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn);
  5673. }
  5674. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5675. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5676. public void SetОчная_форма_обученияNull() {
  5677. this[this._tableЗапрос_Студенты_Специальности.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  5678. }
  5679. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5680. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5681. public bool IsНомер_зачеткиNull() {
  5682. return this.IsNull(this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn);
  5683. }
  5684. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5685. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5686. public void SetНомер_зачеткиNull() {
  5687. this[this._tableЗапрос_Студенты_Специальности.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  5688. }
  5689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5690. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5691. public bool IsКурсNull() {
  5692. return this.IsNull(this._tableЗапрос_Студенты_Специальности.КурсColumn);
  5693. }
  5694. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5695. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5696. public void SetКурсNull() {
  5697. this[this._tableЗапрос_Студенты_Специальности.КурсColumn] = global::System.Convert.DBNull;
  5698. }
  5699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5701. public bool Isописание_специальностиNull() {
  5702. return this.IsNull(this._tableЗапрос_Студенты_Специальности.описание_специальностиColumn);
  5703. }
  5704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5706. public void Setописание_специальностиNull() {
  5707. this[this._tableЗапрос_Студенты_Специальности.описание_специальностиColumn] = global::System.Convert.DBNull;
  5708. }
  5709. }
  5710. /// <summary>
  5711. ///Represents strongly named DataRow class.
  5712. ///</summary>
  5713. public partial class Фильтр_ММRow : global::System.Data.DataRow {
  5714. private Фильтр_ММDataTable tableФильтр_ММ;
  5715. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5716. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5717. internal Фильтр_ММRow(global::System.Data.DataRowBuilder rb) :
  5718. base(rb) {
  5719. this.tableФильтр_ММ = ((Фильтр_ММDataTable)(this.Table));
  5720. }
  5721. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5722. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5723. public System.DateTime Expr1 {
  5724. get {
  5725. try {
  5726. return ((global::System.DateTime)(this[this.tableФильтр_ММ.Expr1Column]));
  5727. }
  5728. catch (global::System.InvalidCastException e) {
  5729. throw new global::System.Data.StrongTypingException("Значение для столбца \'Expr1\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5730. }
  5731. }
  5732. set {
  5733. this[this.tableФильтр_ММ.Expr1Column] = value;
  5734. }
  5735. }
  5736. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5737. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5738. public string ФИО {
  5739. get {
  5740. try {
  5741. return ((string)(this[this.tableФильтр_ММ.ФИОColumn]));
  5742. }
  5743. catch (global::System.InvalidCastException e) {
  5744. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5745. }
  5746. }
  5747. set {
  5748. this[this.tableФильтр_ММ.ФИОColumn] = value;
  5749. }
  5750. }
  5751. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5752. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5753. public string Пол {
  5754. get {
  5755. try {
  5756. return ((string)(this[this.tableФильтр_ММ.ПолColumn]));
  5757. }
  5758. catch (global::System.InvalidCastException e) {
  5759. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5760. }
  5761. }
  5762. set {
  5763. this[this.tableФильтр_ММ.ПолColumn] = value;
  5764. }
  5765. }
  5766. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5767. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5768. public string Родители {
  5769. get {
  5770. try {
  5771. return ((string)(this[this.tableФильтр_ММ.РодителиColumn]));
  5772. }
  5773. catch (global::System.InvalidCastException e) {
  5774. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5775. }
  5776. }
  5777. set {
  5778. this[this.tableФильтр_ММ.РодителиColumn] = value;
  5779. }
  5780. }
  5781. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5782. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5783. public string Адрес {
  5784. get {
  5785. try {
  5786. return ((string)(this[this.tableФильтр_ММ.АдресColumn]));
  5787. }
  5788. catch (global::System.InvalidCastException e) {
  5789. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Фильтр ММ\' равно DBNull.", 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 string Паспортные_данные {
  5799. get {
  5800. try {
  5801. return ((string)(this[this.tableФильтр_ММ.Паспортные_данныеColumn]));
  5802. }
  5803. catch (global::System.InvalidCastException e) {
  5804. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5805. }
  5806. }
  5807. set {
  5808. this[this.tableФильтр_ММ.Паспортные_данныеColumn] = value;
  5809. }
  5810. }
  5811. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5812. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5813. public string Телефон {
  5814. get {
  5815. try {
  5816. return ((string)(this[this.tableФильтр_ММ.ТелефонColumn]));
  5817. }
  5818. catch (global::System.InvalidCastException e) {
  5819. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5820. }
  5821. }
  5822. set {
  5823. this[this.tableФильтр_ММ.ТелефонColumn] = value;
  5824. }
  5825. }
  5826. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5827. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5828. public string Группа {
  5829. get {
  5830. try {
  5831. return ((string)(this[this.tableФильтр_ММ.ГруппаColumn]));
  5832. }
  5833. catch (global::System.InvalidCastException e) {
  5834. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5835. }
  5836. }
  5837. set {
  5838. this[this.tableФильтр_ММ.ГруппаColumn] = value;
  5839. }
  5840. }
  5841. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5842. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5843. public System.DateTime Дата_рождения {
  5844. get {
  5845. try {
  5846. return ((global::System.DateTime)(this[this.tableФильтр_ММ.Дата_рожденияColumn]));
  5847. }
  5848. catch (global::System.InvalidCastException e) {
  5849. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5850. }
  5851. }
  5852. set {
  5853. this[this.tableФильтр_ММ.Дата_рожденияColumn] = value;
  5854. }
  5855. }
  5856. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5857. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5858. public bool Очная_форма_обучения {
  5859. get {
  5860. try {
  5861. return ((bool)(this[this.tableФильтр_ММ.Очная_форма_обученияColumn]));
  5862. }
  5863. catch (global::System.InvalidCastException e) {
  5864. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5865. }
  5866. }
  5867. set {
  5868. this[this.tableФильтр_ММ.Очная_форма_обученияColumn] = value;
  5869. }
  5870. }
  5871. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5872. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5873. public long Номер_зачетки {
  5874. get {
  5875. try {
  5876. return ((long)(this[this.tableФильтр_ММ.Номер_зачеткиColumn]));
  5877. }
  5878. catch (global::System.InvalidCastException e) {
  5879. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5880. }
  5881. }
  5882. set {
  5883. this[this.tableФильтр_ММ.Номер_зачеткиColumn] = value;
  5884. }
  5885. }
  5886. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5887. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5888. public byte Курс {
  5889. get {
  5890. try {
  5891. return ((byte)(this[this.tableФильтр_ММ.КурсColumn]));
  5892. }
  5893. catch (global::System.InvalidCastException e) {
  5894. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Фильтр ММ\' равно DBNull.", e);
  5895. }
  5896. }
  5897. set {
  5898. this[this.tableФильтр_ММ.КурсColumn] = value;
  5899. }
  5900. }
  5901. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5902. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5903. public string описание_специальности {
  5904. get {
  5905. try {
  5906. return ((string)(this[this.tableФильтр_ММ.описание_специальностиColumn]));
  5907. }
  5908. catch (global::System.InvalidCastException e) {
  5909. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание специальности\' в таблице \'Фильтр ММ\' равно DBNull." +
  5910. "", e);
  5911. }
  5912. }
  5913. set {
  5914. this[this.tableФильтр_ММ.описание_специальностиColumn] = value;
  5915. }
  5916. }
  5917. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5918. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5919. public string наименование_специальности {
  5920. get {
  5921. return ((string)(this[this.tableФильтр_ММ.наименование_специальностиColumn]));
  5922. }
  5923. set {
  5924. this[this.tableФильтр_ММ.наименование_специальностиColumn] = value;
  5925. }
  5926. }
  5927. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5928. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5929. public bool IsExpr1Null() {
  5930. return this.IsNull(this.tableФильтр_ММ.Expr1Column);
  5931. }
  5932. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5933. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5934. public void SetExpr1Null() {
  5935. this[this.tableФильтр_ММ.Expr1Column] = global::System.Convert.DBNull;
  5936. }
  5937. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5938. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5939. public bool IsФИОNull() {
  5940. return this.IsNull(this.tableФильтр_ММ.ФИОColumn);
  5941. }
  5942. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5943. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5944. public void SetФИОNull() {
  5945. this[this.tableФильтр_ММ.ФИОColumn] = global::System.Convert.DBNull;
  5946. }
  5947. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5948. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5949. public bool IsПолNull() {
  5950. return this.IsNull(this.tableФильтр_ММ.ПолColumn);
  5951. }
  5952. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5953. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5954. public void SetПолNull() {
  5955. this[this.tableФильтр_ММ.ПолColumn] = global::System.Convert.DBNull;
  5956. }
  5957. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5958. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5959. public bool IsРодителиNull() {
  5960. return this.IsNull(this.tableФильтр_ММ.РодителиColumn);
  5961. }
  5962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5964. public void SetРодителиNull() {
  5965. this[this.tableФильтр_ММ.РодителиColumn] = global::System.Convert.DBNull;
  5966. }
  5967. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5968. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5969. public bool IsАдресNull() {
  5970. return this.IsNull(this.tableФильтр_ММ.АдресColumn);
  5971. }
  5972. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5973. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5974. public void SetАдресNull() {
  5975. this[this.tableФильтр_ММ.АдресColumn] = global::System.Convert.DBNull;
  5976. }
  5977. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5978. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5979. public bool IsПаспортные_данныеNull() {
  5980. return this.IsNull(this.tableФильтр_ММ.Паспортные_данныеColumn);
  5981. }
  5982. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5983. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5984. public void SetПаспортные_данныеNull() {
  5985. this[this.tableФильтр_ММ.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  5986. }
  5987. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5988. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5989. public bool IsТелефонNull() {
  5990. return this.IsNull(this.tableФильтр_ММ.ТелефонColumn);
  5991. }
  5992. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5993. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5994. public void SetТелефонNull() {
  5995. this[this.tableФильтр_ММ.ТелефонColumn] = global::System.Convert.DBNull;
  5996. }
  5997. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5998. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  5999. public bool IsГруппаNull() {
  6000. return this.IsNull(this.tableФильтр_ММ.ГруппаColumn);
  6001. }
  6002. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6003. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6004. public void SetГруппаNull() {
  6005. this[this.tableФильтр_ММ.ГруппаColumn] = global::System.Convert.DBNull;
  6006. }
  6007. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6008. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6009. public bool IsДата_рожденияNull() {
  6010. return this.IsNull(this.tableФильтр_ММ.Дата_рожденияColumn);
  6011. }
  6012. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6013. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6014. public void SetДата_рожденияNull() {
  6015. this[this.tableФильтр_ММ.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6016. }
  6017. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6018. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6019. public bool IsОчная_форма_обученияNull() {
  6020. return this.IsNull(this.tableФильтр_ММ.Очная_форма_обученияColumn);
  6021. }
  6022. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6023. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6024. public void SetОчная_форма_обученияNull() {
  6025. this[this.tableФильтр_ММ.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  6026. }
  6027. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6028. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6029. public bool IsНомер_зачеткиNull() {
  6030. return this.IsNull(this.tableФильтр_ММ.Номер_зачеткиColumn);
  6031. }
  6032. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6033. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6034. public void SetНомер_зачеткиNull() {
  6035. this[this.tableФильтр_ММ.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  6036. }
  6037. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6038. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6039. public bool IsКурсNull() {
  6040. return this.IsNull(this.tableФильтр_ММ.КурсColumn);
  6041. }
  6042. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6043. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6044. public void SetКурсNull() {
  6045. this[this.tableФильтр_ММ.КурсColumn] = global::System.Convert.DBNull;
  6046. }
  6047. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6048. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6049. public bool Isописание_специальностиNull() {
  6050. return this.IsNull(this.tableФильтр_ММ.описание_специальностиColumn);
  6051. }
  6052. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6053. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6054. public void Setописание_специальностиNull() {
  6055. this[this.tableФильтр_ММ.описание_специальностиColumn] = global::System.Convert.DBNull;
  6056. }
  6057. }
  6058. /// <summary>
  6059. ///Represents strongly named DataRow class.
  6060. ///</summary>
  6061. public partial class Фильтр_ОтецRow : global::System.Data.DataRow {
  6062. private Фильтр_ОтецDataTable tableФильтр_Отец;
  6063. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6064. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6065. internal Фильтр_ОтецRow(global::System.Data.DataRowBuilder rb) :
  6066. base(rb) {
  6067. this.tableФильтр_Отец = ((Фильтр_ОтецDataTable)(this.Table));
  6068. }
  6069. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6070. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6071. public string ФИО {
  6072. get {
  6073. try {
  6074. return ((string)(this[this.tableФильтр_Отец.ФИОColumn]));
  6075. }
  6076. catch (global::System.InvalidCastException e) {
  6077. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6078. }
  6079. }
  6080. set {
  6081. this[this.tableФильтр_Отец.ФИОColumn] = value;
  6082. }
  6083. }
  6084. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6085. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6086. public string Пол {
  6087. get {
  6088. try {
  6089. return ((string)(this[this.tableФильтр_Отец.ПолColumn]));
  6090. }
  6091. catch (global::System.InvalidCastException e) {
  6092. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6093. }
  6094. }
  6095. set {
  6096. this[this.tableФильтр_Отец.ПолColumn] = value;
  6097. }
  6098. }
  6099. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6100. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6101. public System.DateTime Expr1 {
  6102. get {
  6103. try {
  6104. return ((global::System.DateTime)(this[this.tableФильтр_Отец.Expr1Column]));
  6105. }
  6106. catch (global::System.InvalidCastException e) {
  6107. throw new global::System.Data.StrongTypingException("Значение для столбца \'Expr1\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6108. }
  6109. }
  6110. set {
  6111. this[this.tableФильтр_Отец.Expr1Column] = value;
  6112. }
  6113. }
  6114. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6115. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6116. public string Родители {
  6117. get {
  6118. try {
  6119. return ((string)(this[this.tableФильтр_Отец.РодителиColumn]));
  6120. }
  6121. catch (global::System.InvalidCastException e) {
  6122. throw new global::System.Data.StrongTypingException("Значение для столбца \'Родители\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6123. }
  6124. }
  6125. set {
  6126. this[this.tableФильтр_Отец.РодителиColumn] = value;
  6127. }
  6128. }
  6129. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6130. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6131. public string Адрес {
  6132. get {
  6133. try {
  6134. return ((string)(this[this.tableФильтр_Отец.АдресColumn]));
  6135. }
  6136. catch (global::System.InvalidCastException e) {
  6137. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6138. }
  6139. }
  6140. set {
  6141. this[this.tableФильтр_Отец.АдресColumn] = value;
  6142. }
  6143. }
  6144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6145. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6146. public string Паспортные_данные {
  6147. get {
  6148. try {
  6149. return ((string)(this[this.tableФильтр_Отец.Паспортные_данныеColumn]));
  6150. }
  6151. catch (global::System.InvalidCastException e) {
  6152. throw new global::System.Data.StrongTypingException("Значение для столбца \'Паспортные данные\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6153. }
  6154. }
  6155. set {
  6156. this[this.tableФильтр_Отец.Паспортные_данныеColumn] = value;
  6157. }
  6158. }
  6159. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6160. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6161. public string Телефон {
  6162. get {
  6163. try {
  6164. return ((string)(this[this.tableФильтр_Отец.ТелефонColumn]));
  6165. }
  6166. catch (global::System.InvalidCastException e) {
  6167. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6168. }
  6169. }
  6170. set {
  6171. this[this.tableФильтр_Отец.ТелефонColumn] = value;
  6172. }
  6173. }
  6174. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6175. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6176. public string Группа {
  6177. get {
  6178. try {
  6179. return ((string)(this[this.tableФильтр_Отец.ГруппаColumn]));
  6180. }
  6181. catch (global::System.InvalidCastException e) {
  6182. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6183. }
  6184. }
  6185. set {
  6186. this[this.tableФильтр_Отец.ГруппаColumn] = value;
  6187. }
  6188. }
  6189. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6190. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6191. public System.DateTime Дата_рождения {
  6192. get {
  6193. try {
  6194. return ((global::System.DateTime)(this[this.tableФильтр_Отец.Дата_рожденияColumn]));
  6195. }
  6196. catch (global::System.InvalidCastException e) {
  6197. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6198. }
  6199. }
  6200. set {
  6201. this[this.tableФильтр_Отец.Дата_рожденияColumn] = value;
  6202. }
  6203. }
  6204. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6205. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6206. public bool Очная_форма_обучения {
  6207. get {
  6208. try {
  6209. return ((bool)(this[this.tableФильтр_Отец.Очная_форма_обученияColumn]));
  6210. }
  6211. catch (global::System.InvalidCastException e) {
  6212. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'Фильтр Отец\' равно DBNull." +
  6213. "", e);
  6214. }
  6215. }
  6216. set {
  6217. this[this.tableФильтр_Отец.Очная_форма_обученияColumn] = value;
  6218. }
  6219. }
  6220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6222. public long Номер_зачетки {
  6223. get {
  6224. try {
  6225. return ((long)(this[this.tableФильтр_Отец.Номер_зачеткиColumn]));
  6226. }
  6227. catch (global::System.InvalidCastException e) {
  6228. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6229. }
  6230. }
  6231. set {
  6232. this[this.tableФильтр_Отец.Номер_зачеткиColumn] = value;
  6233. }
  6234. }
  6235. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6236. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6237. public byte Курс {
  6238. get {
  6239. try {
  6240. return ((byte)(this[this.tableФильтр_Отец.КурсColumn]));
  6241. }
  6242. catch (global::System.InvalidCastException e) {
  6243. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'Фильтр Отец\' равно DBNull.", e);
  6244. }
  6245. }
  6246. set {
  6247. this[this.tableФильтр_Отец.КурсColumn] = value;
  6248. }
  6249. }
  6250. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6251. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6252. public string описание_специальности {
  6253. get {
  6254. try {
  6255. return ((string)(this[this.tableФильтр_Отец.описание_специальностиColumn]));
  6256. }
  6257. catch (global::System.InvalidCastException e) {
  6258. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание специальности\' в таблице \'Фильтр Отец\' равно DBNul" +
  6259. "l.", e);
  6260. }
  6261. }
  6262. set {
  6263. this[this.tableФильтр_Отец.описание_специальностиColumn] = value;
  6264. }
  6265. }
  6266. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6267. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6268. public string наименование_специальности {
  6269. get {
  6270. return ((string)(this[this.tableФильтр_Отец.наименование_специальностиColumn]));
  6271. }
  6272. set {
  6273. this[this.tableФильтр_Отец.наименование_специальностиColumn] = value;
  6274. }
  6275. }
  6276. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6277. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6278. public bool IsФИОNull() {
  6279. return this.IsNull(this.tableФильтр_Отец.ФИОColumn);
  6280. }
  6281. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6282. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6283. public void SetФИОNull() {
  6284. this[this.tableФильтр_Отец.ФИОColumn] = global::System.Convert.DBNull;
  6285. }
  6286. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6287. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6288. public bool IsПолNull() {
  6289. return this.IsNull(this.tableФильтр_Отец.ПолColumn);
  6290. }
  6291. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6292. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6293. public void SetПолNull() {
  6294. this[this.tableФильтр_Отец.ПолColumn] = global::System.Convert.DBNull;
  6295. }
  6296. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6297. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6298. public bool IsExpr1Null() {
  6299. return this.IsNull(this.tableФильтр_Отец.Expr1Column);
  6300. }
  6301. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6302. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6303. public void SetExpr1Null() {
  6304. this[this.tableФильтр_Отец.Expr1Column] = global::System.Convert.DBNull;
  6305. }
  6306. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6307. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6308. public bool IsРодителиNull() {
  6309. return this.IsNull(this.tableФильтр_Отец.РодителиColumn);
  6310. }
  6311. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6312. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6313. public void SetРодителиNull() {
  6314. this[this.tableФильтр_Отец.РодителиColumn] = global::System.Convert.DBNull;
  6315. }
  6316. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6317. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6318. public bool IsАдресNull() {
  6319. return this.IsNull(this.tableФильтр_Отец.АдресColumn);
  6320. }
  6321. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6322. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6323. public void SetАдресNull() {
  6324. this[this.tableФильтр_Отец.АдресColumn] = global::System.Convert.DBNull;
  6325. }
  6326. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6327. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6328. public bool IsПаспортные_данныеNull() {
  6329. return this.IsNull(this.tableФильтр_Отец.Паспортные_данныеColumn);
  6330. }
  6331. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6332. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6333. public void SetПаспортные_данныеNull() {
  6334. this[this.tableФильтр_Отец.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  6335. }
  6336. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6337. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6338. public bool IsТелефонNull() {
  6339. return this.IsNull(this.tableФильтр_Отец.ТелефонColumn);
  6340. }
  6341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6343. public void SetТелефонNull() {
  6344. this[this.tableФильтр_Отец.ТелефонColumn] = global::System.Convert.DBNull;
  6345. }
  6346. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6347. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6348. public bool IsГруппаNull() {
  6349. return this.IsNull(this.tableФильтр_Отец.ГруппаColumn);
  6350. }
  6351. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6352. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6353. public void SetГруппаNull() {
  6354. this[this.tableФильтр_Отец.ГруппаColumn] = global::System.Convert.DBNull;
  6355. }
  6356. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6357. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6358. public bool IsДата_рожденияNull() {
  6359. return this.IsNull(this.tableФильтр_Отец.Дата_рожденияColumn);
  6360. }
  6361. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6362. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6363. public void SetДата_рожденияNull() {
  6364. this[this.tableФильтр_Отец.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6365. }
  6366. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6367. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6368. public bool IsОчная_форма_обученияNull() {
  6369. return this.IsNull(this.tableФильтр_Отец.Очная_форма_обученияColumn);
  6370. }
  6371. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6372. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6373. public void SetОчная_форма_обученияNull() {
  6374. this[this.tableФильтр_Отец.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  6375. }
  6376. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6377. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6378. public bool IsНомер_зачеткиNull() {
  6379. return this.IsNull(this.tableФильтр_Отец.Номер_зачеткиColumn);
  6380. }
  6381. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6382. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6383. public void SetНомер_зачеткиNull() {
  6384. this[this.tableФильтр_Отец.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  6385. }
  6386. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6387. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6388. public bool IsКурсNull() {
  6389. return this.IsNull(this.tableФильтр_Отец.КурсColumn);
  6390. }
  6391. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6392. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6393. public void SetКурсNull() {
  6394. this[this.tableФильтр_Отец.КурсColumn] = global::System.Convert.DBNull;
  6395. }
  6396. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6397. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6398. public bool Isописание_специальностиNull() {
  6399. return this.IsNull(this.tableФильтр_Отец.описание_специальностиColumn);
  6400. }
  6401. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6402. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6403. public void Setописание_специальностиNull() {
  6404. this[this.tableФильтр_Отец.описание_специальностиColumn] = global::System.Convert.DBNull;
  6405. }
  6406. }
  6407. /// <summary>
  6408. ///Represents strongly named DataRow class.
  6409. ///</summary>
  6410. public partial class фильтр_очная_форма_обученияRow : global::System.Data.DataRow {
  6411. private фильтр_очная_форма_обученияDataTable tableфильтр_очная_форма_обучения;
  6412. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6413. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6414. internal фильтр_очная_форма_обученияRow(global::System.Data.DataRowBuilder rb) :
  6415. base(rb) {
  6416. this.tableфильтр_очная_форма_обучения = ((фильтр_очная_форма_обученияDataTable)(this.Table));
  6417. }
  6418. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6419. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6420. public string описание_специальности {
  6421. get {
  6422. try {
  6423. return ((string)(this[this.tableфильтр_очная_форма_обучения.описание_специальностиColumn]));
  6424. }
  6425. catch (global::System.InvalidCastException e) {
  6426. throw new global::System.Data.StrongTypingException("Значение для столбца \'описание специальности\' в таблице \'фильтр очная форма обуче" +
  6427. "ния\' равно DBNull.", e);
  6428. }
  6429. }
  6430. set {
  6431. this[this.tableфильтр_очная_форма_обучения.описание_специальностиColumn] = value;
  6432. }
  6433. }
  6434. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6435. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6436. public string наименование_специальности {
  6437. get {
  6438. return ((string)(this[this.tableфильтр_очная_форма_обучения.наименование_специальностиColumn]));
  6439. }
  6440. set {
  6441. this[this.tableфильтр_очная_форма_обучения.наименование_специальностиColumn] = value;
  6442. }
  6443. }
  6444. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6445. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6446. public byte Курс {
  6447. get {
  6448. try {
  6449. return ((byte)(this[this.tableфильтр_очная_форма_обучения.КурсColumn]));
  6450. }
  6451. catch (global::System.InvalidCastException e) {
  6452. throw new global::System.Data.StrongTypingException("Значение для столбца \'Курс\' в таблице \'фильтр очная форма обучения\' равно DBNull." +
  6453. "", e);
  6454. }
  6455. }
  6456. set {
  6457. this[this.tableфильтр_очная_форма_обучения.КурсColumn] = value;
  6458. }
  6459. }
  6460. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6461. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6462. public long Номер_зачетки {
  6463. get {
  6464. try {
  6465. return ((long)(this[this.tableфильтр_очная_форма_обучения.Номер_зачеткиColumn]));
  6466. }
  6467. catch (global::System.InvalidCastException e) {
  6468. throw new global::System.Data.StrongTypingException("Значение для столбца \'Номер зачетки\' в таблице \'фильтр очная форма обучения\' равн" +
  6469. "о DBNull.", e);
  6470. }
  6471. }
  6472. set {
  6473. this[this.tableфильтр_очная_форма_обучения.Номер_зачеткиColumn] = value;
  6474. }
  6475. }
  6476. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6477. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6478. public bool Очная_форма_обучения {
  6479. get {
  6480. try {
  6481. return ((bool)(this[this.tableфильтр_очная_форма_обучения.Очная_форма_обученияColumn]));
  6482. }
  6483. catch (global::System.InvalidCastException e) {
  6484. throw new global::System.Data.StrongTypingException("Значение для столбца \'Очная форма обучения\' в таблице \'фильтр очная форма обучени" +
  6485. "я\' равно DBNull.", e);
  6486. }
  6487. }
  6488. set {
  6489. this[this.tableфильтр_очная_форма_обучения.Очная_форма_обученияColumn] = value;
  6490. }
  6491. }
  6492. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6493. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6494. public System.DateTime Дата_рождения {
  6495. get {
  6496. try {
  6497. return ((global::System.DateTime)(this[this.tableфильтр_очная_форма_обучения.Дата_рожденияColumn]));
  6498. }
  6499. catch (global::System.InvalidCastException e) {
  6500. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'фильтр очная форма обучения\' равн" +
  6501. "о DBNull.", e);
  6502. }
  6503. }
  6504. set {
  6505. this[this.tableфильтр_очная_форма_обучения.Дата_рожденияColumn] = value;
  6506. }
  6507. }
  6508. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6509. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6510. public string Группа {
  6511. get {
  6512. try {
  6513. return ((string)(this[this.tableфильтр_очная_форма_обучения.ГруппаColumn]));
  6514. }
  6515. catch (global::System.InvalidCastException e) {
  6516. throw new global::System.Data.StrongTypingException("Значение для столбца \'Группа\' в таблице \'фильтр очная форма обучения\' равно DBNul" +
  6517. "l.", e);
  6518. }
  6519. }
  6520. set {
  6521. this[this.tableфильтр_очная_форма_обучения.ГруппаColumn] = value;
  6522. }
  6523. }
  6524. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6525. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6526. public string Телефон {
  6527. get {
  6528. try {
  6529. return ((string)(this[this.tableфильтр_очная_форма_обучения.ТелефонColumn]));
  6530. }
  6531. catch (global::System.InvalidCastException e) {
  6532. throw new global::System.Data.StrongTypingException("Значение для столбца \'Телефон\' в таблице \'фильтр очная форма обучения\' равно DBNu" +
  6533. "ll.", e);
  6534. }
  6535. }
  6536. set {
  6537. this[this.tableфильтр_очная_форма_обучения.ТелефонColumn] = value;
  6538. }
  6539. }
  6540. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6541. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6542. public string Адрес {
  6543. get {
  6544. try {
  6545. return ((string)(this[this.tableфильтр_очная_форма_обучения.АдресColumn]));
  6546. }
  6547. catch (global::System.InvalidCastException e) {
  6548. throw new global::System.Data.StrongTypingException("Значение для столбца \'Адрес\' в таблице \'фильтр очная форма обучения\' равно DBNull" +
  6549. ".", 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("Значение для столбца \'Паспортные данные\' в таблице \'фильтр очная форма обучения\' " +
  6565. "равно DBNull.", 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("Значение для столбца \'Родители\' в таблице \'фильтр очная форма обучения\' равно DBN" +
  6581. "ull.", 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 string Пол {
  6591. get {
  6592. try {
  6593. return ((string)(this[this.tableфильтр_очная_форма_обучения.ПолColumn]));
  6594. }
  6595. catch (global::System.InvalidCastException e) {
  6596. throw new global::System.Data.StrongTypingException("Значение для столбца \'Пол\' в таблице \'фильтр очная форма обучения\' равно DBNull.", e);
  6597. }
  6598. }
  6599. set {
  6600. this[this.tableфильтр_очная_форма_обучения.ПолColumn] = value;
  6601. }
  6602. }
  6603. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6604. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6605. public string ФИО {
  6606. get {
  6607. try {
  6608. return ((string)(this[this.tableфильтр_очная_форма_обучения.ФИОColumn]));
  6609. }
  6610. catch (global::System.InvalidCastException e) {
  6611. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'фильтр очная форма обучения\' равно DBNull.", e);
  6612. }
  6613. }
  6614. set {
  6615. this[this.tableфильтр_очная_форма_обучения.ФИОColumn] = value;
  6616. }
  6617. }
  6618. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6619. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6620. public System.DateTime Expr1 {
  6621. get {
  6622. try {
  6623. return ((global::System.DateTime)(this[this.tableфильтр_очная_форма_обучения.Expr1Column]));
  6624. }
  6625. catch (global::System.InvalidCastException e) {
  6626. throw new global::System.Data.StrongTypingException("Значение для столбца \'Expr1\' в таблице \'фильтр очная форма обучения\' равно DBNull" +
  6627. ".", e);
  6628. }
  6629. }
  6630. set {
  6631. this[this.tableфильтр_очная_форма_обучения.Expr1Column] = value;
  6632. }
  6633. }
  6634. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6635. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6636. public bool Isописание_специальностиNull() {
  6637. return this.IsNull(this.tableфильтр_очная_форма_обучения.описание_специальностиColumn);
  6638. }
  6639. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6640. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6641. public void Setописание_специальностиNull() {
  6642. this[this.tableфильтр_очная_форма_обучения.описание_специальностиColumn] = global::System.Convert.DBNull;
  6643. }
  6644. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6645. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6646. public bool IsКурсNull() {
  6647. return this.IsNull(this.tableфильтр_очная_форма_обучения.КурсColumn);
  6648. }
  6649. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6650. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6651. public void SetКурсNull() {
  6652. this[this.tableфильтр_очная_форма_обучения.КурсColumn] = global::System.Convert.DBNull;
  6653. }
  6654. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6655. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6656. public bool IsНомер_зачеткиNull() {
  6657. return this.IsNull(this.tableфильтр_очная_форма_обучения.Номер_зачеткиColumn);
  6658. }
  6659. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6660. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6661. public void SetНомер_зачеткиNull() {
  6662. this[this.tableфильтр_очная_форма_обучения.Номер_зачеткиColumn] = global::System.Convert.DBNull;
  6663. }
  6664. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6665. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6666. public bool IsОчная_форма_обученияNull() {
  6667. return this.IsNull(this.tableфильтр_очная_форма_обучения.Очная_форма_обученияColumn);
  6668. }
  6669. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6670. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6671. public void SetОчная_форма_обученияNull() {
  6672. this[this.tableфильтр_очная_форма_обучения.Очная_форма_обученияColumn] = global::System.Convert.DBNull;
  6673. }
  6674. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6675. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6676. public bool IsДата_рожденияNull() {
  6677. return this.IsNull(this.tableфильтр_очная_форма_обучения.Дата_рожденияColumn);
  6678. }
  6679. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6680. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6681. public void SetДата_рожденияNull() {
  6682. this[this.tableфильтр_очная_форма_обучения.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6683. }
  6684. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6685. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6686. public bool IsГруппаNull() {
  6687. return this.IsNull(this.tableфильтр_очная_форма_обучения.ГруппаColumn);
  6688. }
  6689. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6690. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6691. public void SetГруппаNull() {
  6692. this[this.tableфильтр_очная_форма_обучения.ГруппаColumn] = global::System.Convert.DBNull;
  6693. }
  6694. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6695. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6696. public bool IsТелефонNull() {
  6697. return this.IsNull(this.tableфильтр_очная_форма_обучения.ТелефонColumn);
  6698. }
  6699. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6700. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6701. public void SetТелефонNull() {
  6702. this[this.tableфильтр_очная_форма_обучения.ТелефонColumn] = global::System.Convert.DBNull;
  6703. }
  6704. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6705. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6706. public bool IsАдресNull() {
  6707. return this.IsNull(this.tableфильтр_очная_форма_обучения.АдресColumn);
  6708. }
  6709. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6710. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6711. public void SetАдресNull() {
  6712. this[this.tableфильтр_очная_форма_обучения.АдресColumn] = global::System.Convert.DBNull;
  6713. }
  6714. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6715. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6716. public bool IsПаспортные_данныеNull() {
  6717. return this.IsNull(this.tableфильтр_очная_форма_обучения.Паспортные_данныеColumn);
  6718. }
  6719. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6720. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6721. public void SetПаспортные_данныеNull() {
  6722. this[this.tableфильтр_очная_форма_обучения.Паспортные_данныеColumn] = global::System.Convert.DBNull;
  6723. }
  6724. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6725. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6726. public bool IsРодителиNull() {
  6727. return this.IsNull(this.tableфильтр_очная_форма_обучения.РодителиColumn);
  6728. }
  6729. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6730. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6731. public void SetРодителиNull() {
  6732. this[this.tableфильтр_очная_форма_обучения.РодителиColumn] = global::System.Convert.DBNull;
  6733. }
  6734. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6735. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6736. public bool IsПолNull() {
  6737. return this.IsNull(this.tableфильтр_очная_форма_обучения.ПолColumn);
  6738. }
  6739. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6740. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6741. public void SetПолNull() {
  6742. this[this.tableфильтр_очная_форма_обучения.ПолColumn] = global::System.Convert.DBNull;
  6743. }
  6744. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6745. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6746. public bool IsФИОNull() {
  6747. return this.IsNull(this.tableфильтр_очная_форма_обучения.ФИОColumn);
  6748. }
  6749. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6750. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6751. public void SetФИОNull() {
  6752. this[this.tableфильтр_очная_форма_обучения.ФИОColumn] = global::System.Convert.DBNull;
  6753. }
  6754. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6755. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6756. public bool IsExpr1Null() {
  6757. return this.IsNull(this.tableфильтр_очная_форма_обучения.Expr1Column);
  6758. }
  6759. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6760. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6761. public void SetExpr1Null() {
  6762. this[this.tableфильтр_очная_форма_обучения.Expr1Column] = global::System.Convert.DBNull;
  6763. }
  6764. }
  6765. /// <summary>
  6766. ///Represents strongly named DataRow class.
  6767. ///</summary>
  6768. public partial class Отображение_студентов_по_возрастуRow : global::System.Data.DataRow {
  6769. private Отображение_студентов_по_возрастуDataTable tableОтображение_студентов_по_возрасту;
  6770. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6771. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6772. internal Отображение_студентов_по_возрастуRow(global::System.Data.DataRowBuilder rb) :
  6773. base(rb) {
  6774. this.tableОтображение_студентов_по_возрасту = ((Отображение_студентов_по_возрастуDataTable)(this.Table));
  6775. }
  6776. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6777. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6778. public string ФИО {
  6779. get {
  6780. try {
  6781. return ((string)(this[this.tableОтображение_студентов_по_возрасту.ФИОColumn]));
  6782. }
  6783. catch (global::System.InvalidCastException e) {
  6784. throw new global::System.Data.StrongTypingException("Значение для столбца \'ФИО\' в таблице \'Отображение студентов по возрасту\' равно DB" +
  6785. "Null.", e);
  6786. }
  6787. }
  6788. set {
  6789. this[this.tableОтображение_студентов_по_возрасту.ФИОColumn] = value;
  6790. }
  6791. }
  6792. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6793. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6794. public System.DateTime Дата_рождения {
  6795. get {
  6796. try {
  6797. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn]));
  6798. }
  6799. catch (global::System.InvalidCastException e) {
  6800. throw new global::System.Data.StrongTypingException("Значение для столбца \'Дата рождения\' в таблице \'Отображение студентов по возрасту" +
  6801. "\' равно DBNull.", e);
  6802. }
  6803. }
  6804. set {
  6805. this[this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn] = value;
  6806. }
  6807. }
  6808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6810. public int Возраст {
  6811. get {
  6812. try {
  6813. return ((int)(this[this.tableОтображение_студентов_по_возрасту.ВозрастColumn]));
  6814. }
  6815. catch (global::System.InvalidCastException e) {
  6816. throw new global::System.Data.StrongTypingException("Значение для столбца \'Возраст\' в таблице \'Отображение студентов по возрасту\' равн" +
  6817. "о DBNull.", e);
  6818. }
  6819. }
  6820. set {
  6821. this[this.tableОтображение_студентов_по_возрасту.ВозрастColumn] = value;
  6822. }
  6823. }
  6824. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6825. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6826. public bool IsФИОNull() {
  6827. return this.IsNull(this.tableОтображение_студентов_по_возрасту.ФИОColumn);
  6828. }
  6829. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6830. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6831. public void SetФИОNull() {
  6832. this[this.tableОтображение_студентов_по_возрасту.ФИОColumn] = global::System.Convert.DBNull;
  6833. }
  6834. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6835. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6836. public bool IsДата_рожденияNull() {
  6837. return this.IsNull(this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn);
  6838. }
  6839. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6840. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6841. public void SetДата_рожденияNull() {
  6842. this[this.tableОтображение_студентов_по_возрасту.Дата_рожденияColumn] = global::System.Convert.DBNull;
  6843. }
  6844. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6845. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6846. public bool IsВозрастNull() {
  6847. return this.IsNull(this.tableОтображение_студентов_по_возрасту.ВозрастColumn);
  6848. }
  6849. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6850. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6851. public void SetВозрастNull() {
  6852. this[this.tableОтображение_студентов_по_возрасту.ВозрастColumn] = global::System.Convert.DBNull;
  6853. }
  6854. }
  6855. /// <summary>
  6856. ///Represents strongly named DataRow class.
  6857. ///</summary>
  6858. public partial class Отображение_студентов_по_среднему_баллуRow : global::System.Data.DataRow {
  6859. private Отображение_студентов_по_среднему_баллуDataTable tableОтображение_студентов_по_среднему_баллу;
  6860. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6861. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6862. internal Отображение_студентов_по_среднему_баллуRow(global::System.Data.DataRowBuilder rb) :
  6863. base(rb) {
  6864. this.tableОтображение_студентов_по_среднему_баллу = ((Отображение_студентов_по_среднему_баллуDataTable)(this.Table));
  6865. }
  6866. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6867. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6868. public string фио_студента {
  6869. get {
  6870. try {
  6871. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.фио_студентаColumn]));
  6872. }
  6873. catch (global::System.InvalidCastException e) {
  6874. throw new global::System.Data.StrongTypingException("Значение для столбца \'фио студента\' в таблице \'Отображение студентов по среднему " +
  6875. "баллу\' равно DBNull.", e);
  6876. }
  6877. }
  6878. set {
  6879. this[this.tableОтображение_студентов_по_среднему_баллу.фио_студентаColumn] = value;
  6880. }
  6881. }
  6882. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6883. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6884. public byte оценка_первого_экзамена {
  6885. get {
  6886. try {
  6887. return ((byte)(this[this.tableОтображение_студентов_по_среднему_баллу.оценка_первого_экзаменаColumn]));
  6888. }
  6889. catch (global::System.InvalidCastException e) {
  6890. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка первого экзамена\' в таблице \'Отображение студентов п" +
  6891. "о среднему баллу\' равно DBNull.", e);
  6892. }
  6893. }
  6894. set {
  6895. this[this.tableОтображение_студентов_по_среднему_баллу.оценка_первого_экзаменаColumn] = value;
  6896. }
  6897. }
  6898. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6899. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6900. public byte оценка_второго_экзамена {
  6901. get {
  6902. try {
  6903. return ((byte)(this[this.tableОтображение_студентов_по_среднему_баллу.оценка_второго_экзаменаColumn]));
  6904. }
  6905. catch (global::System.InvalidCastException e) {
  6906. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка второго экзамена\' в таблице \'Отображение студентов п" +
  6907. "о среднему баллу\' равно DBNull.", e);
  6908. }
  6909. }
  6910. set {
  6911. this[this.tableОтображение_студентов_по_среднему_баллу.оценка_второго_экзаменаColumn] = value;
  6912. }
  6913. }
  6914. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6915. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6916. public byte оценка_третьего_экзамена {
  6917. get {
  6918. try {
  6919. return ((byte)(this[this.tableОтображение_студентов_по_среднему_баллу.оценка_третьего_экзаменаColumn]));
  6920. }
  6921. catch (global::System.InvalidCastException e) {
  6922. throw new global::System.Data.StrongTypingException("Значение для столбца \'оценка третьего экзамена\' в таблице \'Отображение студентов " +
  6923. "по среднему баллу\' равно DBNull.", e);
  6924. }
  6925. }
  6926. set {
  6927. this[this.tableОтображение_студентов_по_среднему_баллу.оценка_третьего_экзаменаColumn] = value;
  6928. }
  6929. }
  6930. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6931. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6932. public System.DateTime дата_третьего_экзамена {
  6933. get {
  6934. try {
  6935. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_среднему_баллу.дата_третьего_экзаменаColumn]));
  6936. }
  6937. catch (global::System.InvalidCastException e) {
  6938. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата третьего экзамена\' в таблице \'Отображение студентов по" +
  6939. " среднему баллу\' равно DBNull.", e);
  6940. }
  6941. }
  6942. set {
  6943. this[this.tableОтображение_студентов_по_среднему_баллу.дата_третьего_экзаменаColumn] = value;
  6944. }
  6945. }
  6946. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6947. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6948. public System.DateTime дата_второго_экзамена {
  6949. get {
  6950. try {
  6951. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_среднему_баллу.дата_второго_экзаменаColumn]));
  6952. }
  6953. catch (global::System.InvalidCastException e) {
  6954. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата второго экзамена\' в таблице \'Отображение студентов по " +
  6955. "среднему баллу\' равно DBNull.", e);
  6956. }
  6957. }
  6958. set {
  6959. this[this.tableОтображение_студентов_по_среднему_баллу.дата_второго_экзаменаColumn] = value;
  6960. }
  6961. }
  6962. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6963. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6964. public System.DateTime дата_первого_экзамена {
  6965. get {
  6966. try {
  6967. return ((global::System.DateTime)(this[this.tableОтображение_студентов_по_среднему_баллу.дата_первого_экзаменаColumn]));
  6968. }
  6969. catch (global::System.InvalidCastException e) {
  6970. throw new global::System.Data.StrongTypingException("Значение для столбца \'дата первого экзамена\' в таблице \'Отображение студентов по " +
  6971. "среднему баллу\' равно DBNull.", e);
  6972. }
  6973. }
  6974. set {
  6975. this[this.tableОтображение_студентов_по_среднему_баллу.дата_первого_экзаменаColumn] = value;
  6976. }
  6977. }
  6978. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6979. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6980. public float средний_балл_студента_за_сессию {
  6981. get {
  6982. try {
  6983. return ((float)(this[this.tableОтображение_студентов_по_среднему_баллу.средний_балл_студента_за_сессиюColumn]));
  6984. }
  6985. catch (global::System.InvalidCastException e) {
  6986. throw new global::System.Data.StrongTypingException("Значение для столбца \'средний балл студента за сессию\' в таблице \'Отображение сту" +
  6987. "дентов по среднему баллу\' равно DBNull.", e);
  6988. }
  6989. }
  6990. set {
  6991. this[this.tableОтображение_студентов_по_среднему_баллу.средний_балл_студента_за_сессиюColumn] = value;
  6992. }
  6993. }
  6994. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  6995. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  6996. public string наименование_предмета_первого_экзамена {
  6997. get {
  6998. try {
  6999. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_первого_экзаменаColumn]));
  7000. }
  7001. catch (global::System.InvalidCastException e) {
  7002. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета первого экзамена\' в таблице \'Отображе" +
  7003. "ние студентов по среднему баллу\' равно DBNull.", e);
  7004. }
  7005. }
  7006. set {
  7007. this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_первого_экзаменаColumn] = value;
  7008. }
  7009. }
  7010. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7011. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7012. public string наименование_предмета_третьего_экзамена {
  7013. get {
  7014. try {
  7015. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_третьего_экзаменаColumn]));
  7016. }
  7017. catch (global::System.InvalidCastException e) {
  7018. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета третьего экзамена\' в таблице \'Отображ" +
  7019. "ение студентов по среднему баллу\' равно DBNull.", e);
  7020. }
  7021. }
  7022. set {
  7023. this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_третьего_экзаменаColumn] = value;
  7024. }
  7025. }
  7026. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7027. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7028. public string наименование_предмета_второго_экзамена {
  7029. get {
  7030. try {
  7031. return ((string)(this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_второго_экзаменаColumn]));
  7032. }
  7033. catch (global::System.InvalidCastException e) {
  7034. throw new global::System.Data.StrongTypingException("Значение для столбца \'наименование предмета второго экзамена\' в таблице \'Отображе" +
  7035. "ние студентов по среднему баллу\' равно DBNull.", e);
  7036. }
  7037. }
  7038. set {
  7039. this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_второго_экзаменаColumn] = value;
  7040. }
  7041. }
  7042. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7043. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7044. public bool Isфио_студентаNull() {
  7045. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.фио_студентаColumn);
  7046. }
  7047. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7048. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7049. public void Setфио_студентаNull() {
  7050. this[this.tableОтображение_студентов_по_среднему_баллу.фио_студентаColumn] = global::System.Convert.DBNull;
  7051. }
  7052. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7053. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7054. public bool Isоценка_первого_экзаменаNull() {
  7055. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.оценка_первого_экзаменаColumn);
  7056. }
  7057. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7058. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7059. public void Setоценка_первого_экзаменаNull() {
  7060. this[this.tableОтображение_студентов_по_среднему_баллу.оценка_первого_экзаменаColumn] = global::System.Convert.DBNull;
  7061. }
  7062. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7063. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7064. public bool Isоценка_второго_экзаменаNull() {
  7065. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.оценка_второго_экзаменаColumn);
  7066. }
  7067. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7068. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7069. public void Setоценка_второго_экзаменаNull() {
  7070. this[this.tableОтображение_студентов_по_среднему_баллу.оценка_второго_экзаменаColumn] = global::System.Convert.DBNull;
  7071. }
  7072. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7073. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7074. public bool Isоценка_третьего_экзаменаNull() {
  7075. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.оценка_третьего_экзаменаColumn);
  7076. }
  7077. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7078. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7079. public void Setоценка_третьего_экзаменаNull() {
  7080. this[this.tableОтображение_студентов_по_среднему_баллу.оценка_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  7081. }
  7082. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7083. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7084. public bool Isдата_третьего_экзаменаNull() {
  7085. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.дата_третьего_экзаменаColumn);
  7086. }
  7087. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7088. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7089. public void Setдата_третьего_экзаменаNull() {
  7090. this[this.tableОтображение_студентов_по_среднему_баллу.дата_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  7091. }
  7092. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7093. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7094. public bool Isдата_второго_экзаменаNull() {
  7095. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.дата_второго_экзаменаColumn);
  7096. }
  7097. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7098. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7099. public void Setдата_второго_экзаменаNull() {
  7100. this[this.tableОтображение_студентов_по_среднему_баллу.дата_второго_экзаменаColumn] = global::System.Convert.DBNull;
  7101. }
  7102. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7103. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7104. public bool Isдата_первого_экзаменаNull() {
  7105. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.дата_первого_экзаменаColumn);
  7106. }
  7107. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7108. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7109. public void Setдата_первого_экзаменаNull() {
  7110. this[this.tableОтображение_студентов_по_среднему_баллу.дата_первого_экзаменаColumn] = global::System.Convert.DBNull;
  7111. }
  7112. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7113. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7114. public bool Isсредний_балл_студента_за_сессиюNull() {
  7115. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.средний_балл_студента_за_сессиюColumn);
  7116. }
  7117. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7118. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7119. public void Setсредний_балл_студента_за_сессиюNull() {
  7120. this[this.tableОтображение_студентов_по_среднему_баллу.средний_балл_студента_за_сессиюColumn] = global::System.Convert.DBNull;
  7121. }
  7122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7123. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7124. public bool Isнаименование_предмета_первого_экзаменаNull() {
  7125. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_первого_экзаменаColumn);
  7126. }
  7127. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7128. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7129. public void Setнаименование_предмета_первого_экзаменаNull() {
  7130. this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_первого_экзаменаColumn] = global::System.Convert.DBNull;
  7131. }
  7132. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7134. public bool Isнаименование_предмета_третьего_экзаменаNull() {
  7135. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_третьего_экзаменаColumn);
  7136. }
  7137. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7138. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7139. public void Setнаименование_предмета_третьего_экзаменаNull() {
  7140. this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_третьего_экзаменаColumn] = global::System.Convert.DBNull;
  7141. }
  7142. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7143. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7144. public bool Isнаименование_предмета_второго_экзаменаNull() {
  7145. return this.IsNull(this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_второго_экзаменаColumn);
  7146. }
  7147. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7148. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7149. public void Setнаименование_предмета_второго_экзаменаNull() {
  7150. this[this.tableОтображение_студентов_по_среднему_баллу.наименование_предмета_второго_экзаменаColumn] = global::System.Convert.DBNull;
  7151. }
  7152. }
  7153. /// <summary>
  7154. ///Row event argument class
  7155. ///</summary>
  7156. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7157. public class OcenkaRowChangeEvent : global::System.EventArgs {
  7158. private OcenkaRow eventRow;
  7159. private global::System.Data.DataRowAction eventAction;
  7160. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7161. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7162. public OcenkaRowChangeEvent(OcenkaRow row, global::System.Data.DataRowAction action) {
  7163. this.eventRow = row;
  7164. this.eventAction = action;
  7165. }
  7166. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7167. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7168. public OcenkaRow Row {
  7169. get {
  7170. return this.eventRow;
  7171. }
  7172. }
  7173. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7174. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7175. public global::System.Data.DataRowAction Action {
  7176. get {
  7177. return this.eventAction;
  7178. }
  7179. }
  7180. }
  7181. /// <summary>
  7182. ///Row event argument class
  7183. ///</summary>
  7184. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7185. public class PredmetRowChangeEvent : global::System.EventArgs {
  7186. private PredmetRow eventRow;
  7187. private global::System.Data.DataRowAction eventAction;
  7188. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7189. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7190. public PredmetRowChangeEvent(PredmetRow row, global::System.Data.DataRowAction action) {
  7191. this.eventRow = row;
  7192. this.eventAction = action;
  7193. }
  7194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7196. public PredmetRow Row {
  7197. get {
  7198. return this.eventRow;
  7199. }
  7200. }
  7201. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7202. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7203. public global::System.Data.DataRowAction Action {
  7204. get {
  7205. return this.eventAction;
  7206. }
  7207. }
  7208. }
  7209. /// <summary>
  7210. ///Row event argument class
  7211. ///</summary>
  7212. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7213. public class specRowChangeEvent : global::System.EventArgs {
  7214. private specRow eventRow;
  7215. private global::System.Data.DataRowAction eventAction;
  7216. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7217. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7218. public specRowChangeEvent(specRow row, global::System.Data.DataRowAction action) {
  7219. this.eventRow = row;
  7220. this.eventAction = action;
  7221. }
  7222. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7223. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7224. public specRow Row {
  7225. get {
  7226. return this.eventRow;
  7227. }
  7228. }
  7229. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7230. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7231. public global::System.Data.DataRowAction Action {
  7232. get {
  7233. return this.eventAction;
  7234. }
  7235. }
  7236. }
  7237. /// <summary>
  7238. ///Row event argument class
  7239. ///</summary>
  7240. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7241. public class StudentsRowChangeEvent : global::System.EventArgs {
  7242. private StudentsRow eventRow;
  7243. private global::System.Data.DataRowAction eventAction;
  7244. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7245. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7246. public StudentsRowChangeEvent(StudentsRow row, global::System.Data.DataRowAction action) {
  7247. this.eventRow = row;
  7248. this.eventAction = action;
  7249. }
  7250. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7251. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7252. public StudentsRow Row {
  7253. get {
  7254. return this.eventRow;
  7255. }
  7256. }
  7257. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7258. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7259. public global::System.Data.DataRowAction Action {
  7260. get {
  7261. return this.eventAction;
  7262. }
  7263. }
  7264. }
  7265. /// <summary>
  7266. ///Row event argument class
  7267. ///</summary>
  7268. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7269. public class _запрос_студенты_оценкиRowChangeEvent : global::System.EventArgs {
  7270. private _запрос_студенты_оценкиRow eventRow;
  7271. private global::System.Data.DataRowAction eventAction;
  7272. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7273. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7274. public _запрос_студенты_оценкиRowChangeEvent(_запрос_студенты_оценкиRow row, global::System.Data.DataRowAction action) {
  7275. this.eventRow = row;
  7276. this.eventAction = action;
  7277. }
  7278. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7279. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7280. public _запрос_студенты_оценкиRow Row {
  7281. get {
  7282. return this.eventRow;
  7283. }
  7284. }
  7285. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7286. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7287. public global::System.Data.DataRowAction Action {
  7288. get {
  7289. return this.eventAction;
  7290. }
  7291. }
  7292. }
  7293. /// <summary>
  7294. ///Row event argument class
  7295. ///</summary>
  7296. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7297. public class _Запрос_Студенты_СпециальностиRowChangeEvent : global::System.EventArgs {
  7298. private _Запрос_Студенты_СпециальностиRow eventRow;
  7299. private global::System.Data.DataRowAction eventAction;
  7300. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7301. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7302. public _Запрос_Студенты_СпециальностиRowChangeEvent(_Запрос_Студенты_СпециальностиRow row, global::System.Data.DataRowAction action) {
  7303. this.eventRow = row;
  7304. this.eventAction = action;
  7305. }
  7306. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7307. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7308. public _Запрос_Студенты_СпециальностиRow Row {
  7309. get {
  7310. return this.eventRow;
  7311. }
  7312. }
  7313. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7314. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7315. public global::System.Data.DataRowAction Action {
  7316. get {
  7317. return this.eventAction;
  7318. }
  7319. }
  7320. }
  7321. /// <summary>
  7322. ///Row event argument class
  7323. ///</summary>
  7324. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7325. public class Фильтр_ММRowChangeEvent : global::System.EventArgs {
  7326. private Фильтр_ММRow eventRow;
  7327. private global::System.Data.DataRowAction eventAction;
  7328. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7329. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7330. public Фильтр_ММRowChangeEvent(Фильтр_ММRow row, global::System.Data.DataRowAction action) {
  7331. this.eventRow = row;
  7332. this.eventAction = action;
  7333. }
  7334. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7335. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7336. public Фильтр_ММRow Row {
  7337. get {
  7338. return this.eventRow;
  7339. }
  7340. }
  7341. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7342. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7343. public global::System.Data.DataRowAction Action {
  7344. get {
  7345. return this.eventAction;
  7346. }
  7347. }
  7348. }
  7349. /// <summary>
  7350. ///Row event argument class
  7351. ///</summary>
  7352. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7353. public class Фильтр_ОтецRowChangeEvent : global::System.EventArgs {
  7354. private Фильтр_ОтецRow eventRow;
  7355. private global::System.Data.DataRowAction eventAction;
  7356. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7357. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7358. public Фильтр_ОтецRowChangeEvent(Фильтр_ОтецRow row, global::System.Data.DataRowAction action) {
  7359. this.eventRow = row;
  7360. this.eventAction = action;
  7361. }
  7362. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7363. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7364. public Фильтр_ОтецRow Row {
  7365. get {
  7366. return this.eventRow;
  7367. }
  7368. }
  7369. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7370. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7371. public global::System.Data.DataRowAction Action {
  7372. get {
  7373. return this.eventAction;
  7374. }
  7375. }
  7376. }
  7377. /// <summary>
  7378. ///Row event argument class
  7379. ///</summary>
  7380. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7381. public class фильтр_очная_форма_обученияRowChangeEvent : global::System.EventArgs {
  7382. private фильтр_очная_форма_обученияRow eventRow;
  7383. private global::System.Data.DataRowAction eventAction;
  7384. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7385. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7386. public фильтр_очная_форма_обученияRowChangeEvent(фильтр_очная_форма_обученияRow row, global::System.Data.DataRowAction action) {
  7387. this.eventRow = row;
  7388. this.eventAction = action;
  7389. }
  7390. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7391. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7392. public фильтр_очная_форма_обученияRow Row {
  7393. get {
  7394. return this.eventRow;
  7395. }
  7396. }
  7397. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7398. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7399. public global::System.Data.DataRowAction Action {
  7400. get {
  7401. return this.eventAction;
  7402. }
  7403. }
  7404. }
  7405. /// <summary>
  7406. ///Row event argument class
  7407. ///</summary>
  7408. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7409. public class Отображение_студентов_по_возрастуRowChangeEvent : global::System.EventArgs {
  7410. private Отображение_студентов_по_возрастуRow eventRow;
  7411. private global::System.Data.DataRowAction eventAction;
  7412. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7413. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7414. public Отображение_студентов_по_возрастуRowChangeEvent(Отображение_студентов_по_возрастуRow row, global::System.Data.DataRowAction action) {
  7415. this.eventRow = row;
  7416. this.eventAction = action;
  7417. }
  7418. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7419. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7420. public Отображение_студентов_по_возрастуRow Row {
  7421. get {
  7422. return this.eventRow;
  7423. }
  7424. }
  7425. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7426. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7427. public global::System.Data.DataRowAction Action {
  7428. get {
  7429. return this.eventAction;
  7430. }
  7431. }
  7432. }
  7433. /// <summary>
  7434. ///Row event argument class
  7435. ///</summary>
  7436. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7437. public class Отображение_студентов_по_среднему_баллуRowChangeEvent : global::System.EventArgs {
  7438. private Отображение_студентов_по_среднему_баллуRow eventRow;
  7439. private global::System.Data.DataRowAction eventAction;
  7440. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7441. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7442. public Отображение_студентов_по_среднему_баллуRowChangeEvent(Отображение_студентов_по_среднему_баллуRow row, global::System.Data.DataRowAction action) {
  7443. this.eventRow = row;
  7444. this.eventAction = action;
  7445. }
  7446. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7447. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7448. public Отображение_студентов_по_среднему_баллуRow Row {
  7449. get {
  7450. return this.eventRow;
  7451. }
  7452. }
  7453. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7454. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7455. public global::System.Data.DataRowAction Action {
  7456. get {
  7457. return this.eventAction;
  7458. }
  7459. }
  7460. }
  7461. }
  7462. }
  7463. namespace IS31BorovikAleksandrStudents.IS31KiselevStudDataSetTableAdapters {
  7464. /// <summary>
  7465. ///Represents the connection and commands used to retrieve and save data.
  7466. ///</summary>
  7467. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7468. [global::System.ComponentModel.ToolboxItem(true)]
  7469. [global::System.ComponentModel.DataObjectAttribute(true)]
  7470. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7471. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7472. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7473. public partial class OcenkaTableAdapter : global::System.ComponentModel.Component {
  7474. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7475. private global::System.Data.SqlClient.SqlConnection _connection;
  7476. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7477. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7478. private bool _clearBeforeFill;
  7479. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7480. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7481. public OcenkaTableAdapter() {
  7482. this.ClearBeforeFill = true;
  7483. }
  7484. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7485. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7486. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7487. get {
  7488. if ((this._adapter == null)) {
  7489. this.InitAdapter();
  7490. }
  7491. return this._adapter;
  7492. }
  7493. }
  7494. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7495. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7496. internal global::System.Data.SqlClient.SqlConnection Connection {
  7497. get {
  7498. if ((this._connection == null)) {
  7499. this.InitConnection();
  7500. }
  7501. return this._connection;
  7502. }
  7503. set {
  7504. this._connection = value;
  7505. if ((this.Adapter.InsertCommand != null)) {
  7506. this.Adapter.InsertCommand.Connection = value;
  7507. }
  7508. if ((this.Adapter.DeleteCommand != null)) {
  7509. this.Adapter.DeleteCommand.Connection = value;
  7510. }
  7511. if ((this.Adapter.UpdateCommand != null)) {
  7512. this.Adapter.UpdateCommand.Connection = value;
  7513. }
  7514. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7515. if ((this.CommandCollection[i] != null)) {
  7516. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7517. }
  7518. }
  7519. }
  7520. }
  7521. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7522. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7523. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7524. get {
  7525. return this._transaction;
  7526. }
  7527. set {
  7528. this._transaction = value;
  7529. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7530. this.CommandCollection[i].Transaction = this._transaction;
  7531. }
  7532. if (((this.Adapter != null)
  7533. && (this.Adapter.DeleteCommand != null))) {
  7534. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7535. }
  7536. if (((this.Adapter != null)
  7537. && (this.Adapter.InsertCommand != null))) {
  7538. this.Adapter.InsertCommand.Transaction = this._transaction;
  7539. }
  7540. if (((this.Adapter != null)
  7541. && (this.Adapter.UpdateCommand != null))) {
  7542. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7543. }
  7544. }
  7545. }
  7546. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7547. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7548. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7549. get {
  7550. if ((this._commandCollection == null)) {
  7551. this.InitCommandCollection();
  7552. }
  7553. return this._commandCollection;
  7554. }
  7555. }
  7556. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7557. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7558. public bool ClearBeforeFill {
  7559. get {
  7560. return this._clearBeforeFill;
  7561. }
  7562. set {
  7563. this._clearBeforeFill = value;
  7564. }
  7565. }
  7566. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7567. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7568. private void InitAdapter() {
  7569. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7570. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7571. tableMapping.SourceTable = "Table";
  7572. tableMapping.DataSetTable = "Ocenka";
  7573. tableMapping.ColumnMappings.Add("код студента", "код студента");
  7574. tableMapping.ColumnMappings.Add("дата экзамена 1", "дата экзамена 1");
  7575. tableMapping.ColumnMappings.Add("дата экзамена 2", "дата экзамена 2");
  7576. tableMapping.ColumnMappings.Add("Дата экзамена 3", "Дата экзамена 3");
  7577. tableMapping.ColumnMappings.Add("Оценка 1", "Оценка 1");
  7578. tableMapping.ColumnMappings.Add("Оценка 2", "Оценка 2");
  7579. tableMapping.ColumnMappings.Add("Оценка 3", "Оценка 3");
  7580. tableMapping.ColumnMappings.Add("Средний балл", "Средний балл");
  7581. tableMapping.ColumnMappings.Add("Код предмета 1", "Код предмета 1");
  7582. tableMapping.ColumnMappings.Add("Код предмета 2", "Код предмета 2");
  7583. tableMapping.ColumnMappings.Add("Код предмета 3", "Код предмета 3");
  7584. this._adapter.TableMappings.Add(tableMapping);
  7585. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  7586. this._adapter.InsertCommand.Connection = this.Connection;
  7587. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[Ocenka] ([дата экзамена 1], [дата экзамена 2], [Дата экзамена 3], [Оценка 1], [Оценка 2], [Оценка 3], [Средний балл], [Код предмета 1], [Код предмета 2], [Код предмета 3]) VALUES (@дата_экзамена_1, @дата_экзамена_2, @Дата_экзамена_3, @Оценка_1, @Оценка_2, @Оценка_3, @Средний_балл, @Код_предмета_1, @Код_предмета_2, @Код_предмета_3)";
  7588. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  7589. 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, "", "", ""));
  7590. 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, "", "", ""));
  7591. 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, "", "", ""));
  7592. 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, "", "", ""));
  7593. 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, "", "", ""));
  7594. 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, "", "", ""));
  7595. 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, "", "", ""));
  7596. 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, "", "", ""));
  7597. 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, "", "", ""));
  7598. 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, "", "", ""));
  7599. }
  7600. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7601. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7602. private void InitConnection() {
  7603. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7604. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  7605. }
  7606. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7607. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7608. private void InitCommandCollection() {
  7609. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7610. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7611. this._commandCollection[0].Connection = this.Connection;
  7612. this._commandCollection[0].CommandText = "SELECT [код студента], [дата экзамена 1], [дата экзамена 2], [Дата экзамена 3], [" +
  7613. "Оценка 1], [Оценка 2], [Оценка 3], [Средний балл], [Код предмета 1], [Код предме" +
  7614. "та 2], [Код предмета 3] FROM dbo.Ocenka";
  7615. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7616. }
  7617. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7618. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7619. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7620. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7621. public virtual int Fill(IS31KiselevStudDataSet.OcenkaDataTable dataTable) {
  7622. this.Adapter.SelectCommand = this.CommandCollection[0];
  7623. if ((this.ClearBeforeFill == true)) {
  7624. dataTable.Clear();
  7625. }
  7626. int returnValue = this.Adapter.Fill(dataTable);
  7627. return returnValue;
  7628. }
  7629. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7630. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7631. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7632. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7633. public virtual IS31KiselevStudDataSet.OcenkaDataTable GetData() {
  7634. this.Adapter.SelectCommand = this.CommandCollection[0];
  7635. IS31KiselevStudDataSet.OcenkaDataTable dataTable = new IS31KiselevStudDataSet.OcenkaDataTable();
  7636. this.Adapter.Fill(dataTable);
  7637. return dataTable;
  7638. }
  7639. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7640. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7641. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7642. public virtual int Update(IS31KiselevStudDataSet.OcenkaDataTable dataTable) {
  7643. return this.Adapter.Update(dataTable);
  7644. }
  7645. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7646. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7647. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7648. public virtual int Update(IS31KiselevStudDataSet dataSet) {
  7649. return this.Adapter.Update(dataSet, "Ocenka");
  7650. }
  7651. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7652. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7653. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7654. public virtual int Update(global::System.Data.DataRow dataRow) {
  7655. return this.Adapter.Update(new global::System.Data.DataRow[] {
  7656. dataRow});
  7657. }
  7658. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7659. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7660. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7661. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  7662. return this.Adapter.Update(dataRows);
  7663. }
  7664. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7665. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7666. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7667. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  7668. public virtual int Insert(global::System.Nullable<global::System.DateTime> дата_экзамена_1, global::System.Nullable<global::System.DateTime> дата_экзамена_2, global::System.Nullable<global::System.DateTime> Дата_экзамена_3, global::System.Nullable<byte> Оценка_1, global::System.Nullable<byte> Оценка_2, global::System.Nullable<byte> Оценка_3, global::System.Nullable<float> Средний_балл, global::System.Nullable<long> Код_предмета_1, global::System.Nullable<long> Код_предмета_2, global::System.Nullable<long> Код_предмета_3) {
  7669. if ((дата_экзамена_1.HasValue == true)) {
  7670. this.Adapter.InsertCommand.Parameters[0].Value = ((System.DateTime)(дата_экзамена_1.Value));
  7671. }
  7672. else {
  7673. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  7674. }
  7675. if ((дата_экзамена_2.HasValue == true)) {
  7676. this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(дата_экзамена_2.Value));
  7677. }
  7678. else {
  7679. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  7680. }
  7681. if ((Дата_экзамена_3.HasValue == true)) {
  7682. this.Adapter.InsertCommand.Parameters[2].Value = ((System.DateTime)(Дата_экзамена_3.Value));
  7683. }
  7684. else {
  7685. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  7686. }
  7687. if ((Оценка_1.HasValue == true)) {
  7688. this.Adapter.InsertCommand.Parameters[3].Value = ((byte)(Оценка_1.Value));
  7689. }
  7690. else {
  7691. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  7692. }
  7693. if ((Оценка_2.HasValue == true)) {
  7694. this.Adapter.InsertCommand.Parameters[4].Value = ((byte)(Оценка_2.Value));
  7695. }
  7696. else {
  7697. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  7698. }
  7699. if ((Оценка_3.HasValue == true)) {
  7700. this.Adapter.InsertCommand.Parameters[5].Value = ((byte)(Оценка_3.Value));
  7701. }
  7702. else {
  7703. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  7704. }
  7705. if ((Средний_балл.HasValue == true)) {
  7706. this.Adapter.InsertCommand.Parameters[6].Value = ((float)(Средний_балл.Value));
  7707. }
  7708. else {
  7709. this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
  7710. }
  7711. if ((Код_предмета_1.HasValue == true)) {
  7712. this.Adapter.InsertCommand.Parameters[7].Value = ((long)(Код_предмета_1.Value));
  7713. }
  7714. else {
  7715. this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
  7716. }
  7717. if ((Код_предмета_2.HasValue == true)) {
  7718. this.Adapter.InsertCommand.Parameters[8].Value = ((long)(Код_предмета_2.Value));
  7719. }
  7720. else {
  7721. this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
  7722. }
  7723. if ((Код_предмета_3.HasValue == true)) {
  7724. this.Adapter.InsertCommand.Parameters[9].Value = ((long)(Код_предмета_3.Value));
  7725. }
  7726. else {
  7727. this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
  7728. }
  7729. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  7730. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  7731. != global::System.Data.ConnectionState.Open)) {
  7732. this.Adapter.InsertCommand.Connection.Open();
  7733. }
  7734. try {
  7735. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  7736. return returnValue;
  7737. }
  7738. finally {
  7739. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  7740. this.Adapter.InsertCommand.Connection.Close();
  7741. }
  7742. }
  7743. }
  7744. }
  7745. /// <summary>
  7746. ///Represents the connection and commands used to retrieve and save data.
  7747. ///</summary>
  7748. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  7749. [global::System.ComponentModel.ToolboxItem(true)]
  7750. [global::System.ComponentModel.DataObjectAttribute(true)]
  7751. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  7752. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  7753. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7754. public partial class PredmetTableAdapter : global::System.ComponentModel.Component {
  7755. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  7756. private global::System.Data.SqlClient.SqlConnection _connection;
  7757. private global::System.Data.SqlClient.SqlTransaction _transaction;
  7758. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  7759. private bool _clearBeforeFill;
  7760. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7761. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7762. public PredmetTableAdapter() {
  7763. this.ClearBeforeFill = true;
  7764. }
  7765. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7766. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7767. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  7768. get {
  7769. if ((this._adapter == null)) {
  7770. this.InitAdapter();
  7771. }
  7772. return this._adapter;
  7773. }
  7774. }
  7775. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7776. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7777. internal global::System.Data.SqlClient.SqlConnection Connection {
  7778. get {
  7779. if ((this._connection == null)) {
  7780. this.InitConnection();
  7781. }
  7782. return this._connection;
  7783. }
  7784. set {
  7785. this._connection = value;
  7786. if ((this.Adapter.InsertCommand != null)) {
  7787. this.Adapter.InsertCommand.Connection = value;
  7788. }
  7789. if ((this.Adapter.DeleteCommand != null)) {
  7790. this.Adapter.DeleteCommand.Connection = value;
  7791. }
  7792. if ((this.Adapter.UpdateCommand != null)) {
  7793. this.Adapter.UpdateCommand.Connection = value;
  7794. }
  7795. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7796. if ((this.CommandCollection[i] != null)) {
  7797. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  7798. }
  7799. }
  7800. }
  7801. }
  7802. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7803. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7804. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  7805. get {
  7806. return this._transaction;
  7807. }
  7808. set {
  7809. this._transaction = value;
  7810. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  7811. this.CommandCollection[i].Transaction = this._transaction;
  7812. }
  7813. if (((this.Adapter != null)
  7814. && (this.Adapter.DeleteCommand != null))) {
  7815. this.Adapter.DeleteCommand.Transaction = this._transaction;
  7816. }
  7817. if (((this.Adapter != null)
  7818. && (this.Adapter.InsertCommand != null))) {
  7819. this.Adapter.InsertCommand.Transaction = this._transaction;
  7820. }
  7821. if (((this.Adapter != null)
  7822. && (this.Adapter.UpdateCommand != null))) {
  7823. this.Adapter.UpdateCommand.Transaction = this._transaction;
  7824. }
  7825. }
  7826. }
  7827. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7828. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7829. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  7830. get {
  7831. if ((this._commandCollection == null)) {
  7832. this.InitCommandCollection();
  7833. }
  7834. return this._commandCollection;
  7835. }
  7836. }
  7837. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7838. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7839. public bool ClearBeforeFill {
  7840. get {
  7841. return this._clearBeforeFill;
  7842. }
  7843. set {
  7844. this._clearBeforeFill = value;
  7845. }
  7846. }
  7847. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7848. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7849. private void InitAdapter() {
  7850. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  7851. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  7852. tableMapping.SourceTable = "Table";
  7853. tableMapping.DataSetTable = "Predmet";
  7854. tableMapping.ColumnMappings.Add("код предмета", "код предмета");
  7855. tableMapping.ColumnMappings.Add("наименование предмета", "наименование предмета");
  7856. tableMapping.ColumnMappings.Add("описание предмета", "описание предмета");
  7857. this._adapter.TableMappings.Add(tableMapping);
  7858. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  7859. this._adapter.DeleteCommand.Connection = this.Connection;
  7860. this._adapter.DeleteCommand.CommandText = "DELETE FROM [dbo].[Predmet] WHERE (([код предмета] = @Original_код_предмета))";
  7861. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  7862. 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, "", "", ""));
  7863. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  7864. this._adapter.InsertCommand.Connection = this.Connection;
  7865. this._adapter.InsertCommand.CommandText = "INSERT INTO [dbo].[Predmet] ([наименование предмета], [описание предмета]) VALUES" +
  7866. " (@наименование_предмета, @описание_предмета);\r\nSELECT [код предмета], [наименов" +
  7867. "ание предмета], [описание предмета] FROM Predmet WHERE ([код предмета] = SCOPE_I" +
  7868. "DENTITY())";
  7869. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  7870. 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, "", "", ""));
  7871. 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, "", "", ""));
  7872. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  7873. this._adapter.UpdateCommand.Connection = this.Connection;
  7874. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[Predmet] SET [наименование предмета] = @наименование_предмета, [описание предмета] = @описание_предмета WHERE (([код предмета] = @Original_код_предмета));
  7875. SELECT [код предмета], [наименование предмета], [описание предмета] FROM Predmet WHERE ([код предмета] = @код_предмета)";
  7876. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  7877. 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, "", "", ""));
  7878. 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, "", "", ""));
  7879. 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, "", "", ""));
  7880. 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, "", "", ""));
  7881. }
  7882. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7883. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7884. private void InitConnection() {
  7885. this._connection = new global::System.Data.SqlClient.SqlConnection();
  7886. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  7887. }
  7888. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7889. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7890. private void InitCommandCollection() {
  7891. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  7892. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  7893. this._commandCollection[0].Connection = this.Connection;
  7894. this._commandCollection[0].CommandText = "SELECT [код предмета], [наименование предмета], [описание предмета] FROM dbo.Pred" +
  7895. "met";
  7896. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  7897. }
  7898. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7899. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7900. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7901. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  7902. public virtual int Fill(IS31KiselevStudDataSet.PredmetDataTable dataTable) {
  7903. this.Adapter.SelectCommand = this.CommandCollection[0];
  7904. if ((this.ClearBeforeFill == true)) {
  7905. dataTable.Clear();
  7906. }
  7907. int returnValue = this.Adapter.Fill(dataTable);
  7908. return returnValue;
  7909. }
  7910. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7911. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7912. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7913. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  7914. public virtual IS31KiselevStudDataSet.PredmetDataTable GetData() {
  7915. this.Adapter.SelectCommand = this.CommandCollection[0];
  7916. IS31KiselevStudDataSet.PredmetDataTable dataTable = new IS31KiselevStudDataSet.PredmetDataTable();
  7917. this.Adapter.Fill(dataTable);
  7918. return dataTable;
  7919. }
  7920. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7921. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7922. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7923. public virtual int Update(IS31KiselevStudDataSet.PredmetDataTable dataTable) {
  7924. return this.Adapter.Update(dataTable);
  7925. }
  7926. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7927. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7928. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7929. public virtual int Update(IS31KiselevStudDataSet dataSet) {
  7930. return this.Adapter.Update(dataSet, "Predmet");
  7931. }
  7932. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7933. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7934. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7935. public virtual int Update(global::System.Data.DataRow dataRow) {
  7936. return this.Adapter.Update(new global::System.Data.DataRow[] {
  7937. dataRow});
  7938. }
  7939. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7940. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7941. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7942. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  7943. return this.Adapter.Update(dataRows);
  7944. }
  7945. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7946. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7947. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7948. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  7949. public virtual int Delete(long Original_код_предмета) {
  7950. this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_код_предмета));
  7951. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  7952. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  7953. != global::System.Data.ConnectionState.Open)) {
  7954. this.Adapter.DeleteCommand.Connection.Open();
  7955. }
  7956. try {
  7957. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  7958. return returnValue;
  7959. }
  7960. finally {
  7961. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  7962. this.Adapter.DeleteCommand.Connection.Close();
  7963. }
  7964. }
  7965. }
  7966. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7967. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  7968. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  7969. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  7970. public virtual int Insert(string наименование_предмета, string описание_предмета) {
  7971. if ((наименование_предмета == null)) {
  7972. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  7973. }
  7974. else {
  7975. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(наименование_предмета));
  7976. }
  7977. if ((описание_предмета == null)) {
  7978. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  7979. }
  7980. else {
  7981. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(описание_предмета));
  7982. }
  7983. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  7984. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  7985. != global::System.Data.ConnectionState.Open)) {
  7986. this.Adapter.InsertCommand.Connection.Open();
  7987. }
  7988. try {
  7989. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  7990. return returnValue;
  7991. }
  7992. finally {
  7993. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  7994. this.Adapter.InsertCommand.Connection.Close();
  7995. }
  7996. }
  7997. }
  7998. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  7999. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8000. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8001. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8002. public virtual int Update(string наименование_предмета, string описание_предмета, long Original_код_предмета, long код_предмета) {
  8003. if ((наименование_предмета == null)) {
  8004. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  8005. }
  8006. else {
  8007. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(наименование_предмета));
  8008. }
  8009. if ((описание_предмета == null)) {
  8010. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  8011. }
  8012. else {
  8013. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(описание_предмета));
  8014. }
  8015. this.Adapter.UpdateCommand.Parameters[2].Value = ((long)(Original_код_предмета));
  8016. this.Adapter.UpdateCommand.Parameters[3].Value = ((long)(код_предмета));
  8017. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  8018. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8019. != global::System.Data.ConnectionState.Open)) {
  8020. this.Adapter.UpdateCommand.Connection.Open();
  8021. }
  8022. try {
  8023. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  8024. return returnValue;
  8025. }
  8026. finally {
  8027. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8028. this.Adapter.UpdateCommand.Connection.Close();
  8029. }
  8030. }
  8031. }
  8032. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8033. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8034. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8035. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8036. public virtual int Update(string наименование_предмета, string описание_предмета, long Original_код_предмета) {
  8037. return this.Update(наименование_предмета, описание_предмета, Original_код_предмета, Original_код_предмета);
  8038. }
  8039. }
  8040. /// <summary>
  8041. ///Represents the connection and commands used to retrieve and save data.
  8042. ///</summary>
  8043. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8044. [global::System.ComponentModel.ToolboxItem(true)]
  8045. [global::System.ComponentModel.DataObjectAttribute(true)]
  8046. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8047. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8048. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8049. public partial class specTableAdapter : global::System.ComponentModel.Component {
  8050. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8051. private global::System.Data.SqlClient.SqlConnection _connection;
  8052. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8053. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8054. private bool _clearBeforeFill;
  8055. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8056. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8057. public specTableAdapter() {
  8058. this.ClearBeforeFill = true;
  8059. }
  8060. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8061. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8062. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8063. get {
  8064. if ((this._adapter == null)) {
  8065. this.InitAdapter();
  8066. }
  8067. return this._adapter;
  8068. }
  8069. }
  8070. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8071. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8072. internal global::System.Data.SqlClient.SqlConnection Connection {
  8073. get {
  8074. if ((this._connection == null)) {
  8075. this.InitConnection();
  8076. }
  8077. return this._connection;
  8078. }
  8079. set {
  8080. this._connection = value;
  8081. if ((this.Adapter.InsertCommand != null)) {
  8082. this.Adapter.InsertCommand.Connection = value;
  8083. }
  8084. if ((this.Adapter.DeleteCommand != null)) {
  8085. this.Adapter.DeleteCommand.Connection = value;
  8086. }
  8087. if ((this.Adapter.UpdateCommand != null)) {
  8088. this.Adapter.UpdateCommand.Connection = value;
  8089. }
  8090. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8091. if ((this.CommandCollection[i] != null)) {
  8092. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8093. }
  8094. }
  8095. }
  8096. }
  8097. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8098. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8099. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8100. get {
  8101. return this._transaction;
  8102. }
  8103. set {
  8104. this._transaction = value;
  8105. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8106. this.CommandCollection[i].Transaction = this._transaction;
  8107. }
  8108. if (((this.Adapter != null)
  8109. && (this.Adapter.DeleteCommand != null))) {
  8110. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8111. }
  8112. if (((this.Adapter != null)
  8113. && (this.Adapter.InsertCommand != null))) {
  8114. this.Adapter.InsertCommand.Transaction = this._transaction;
  8115. }
  8116. if (((this.Adapter != null)
  8117. && (this.Adapter.UpdateCommand != null))) {
  8118. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8119. }
  8120. }
  8121. }
  8122. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8123. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8124. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8125. get {
  8126. if ((this._commandCollection == null)) {
  8127. this.InitCommandCollection();
  8128. }
  8129. return this._commandCollection;
  8130. }
  8131. }
  8132. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8133. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8134. public bool ClearBeforeFill {
  8135. get {
  8136. return this._clearBeforeFill;
  8137. }
  8138. set {
  8139. this._clearBeforeFill = value;
  8140. }
  8141. }
  8142. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8143. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8144. private void InitAdapter() {
  8145. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8146. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8147. tableMapping.SourceTable = "Table";
  8148. tableMapping.DataSetTable = "spec";
  8149. tableMapping.ColumnMappings.Add("код специальности", "код специальности");
  8150. tableMapping.ColumnMappings.Add("наименование специальности", "наименование специальности");
  8151. tableMapping.ColumnMappings.Add("описание специальности", "описание специальности");
  8152. this._adapter.TableMappings.Add(tableMapping);
  8153. this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
  8154. this._adapter.DeleteCommand.Connection = this.Connection;
  8155. this._adapter.DeleteCommand.CommandText = "DELETE FROM [dbo].[spec] WHERE (([код специальности] = @Original_код_специальност" +
  8156. "и) AND ([наименование специальности] = @Original_наименование_специальности))";
  8157. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  8158. 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, "", "", ""));
  8159. 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, "", "", ""));
  8160. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  8161. this._adapter.InsertCommand.Connection = this.Connection;
  8162. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[spec] ([наименование специальности], [описание специальности]) VALUES (@наименование_специальности, @описание_специальности);
  8163. SELECT [код специальности], [наименование специальности], [описание специальности] FROM spec WHERE ([код специальности] = SCOPE_IDENTITY())";
  8164. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  8165. 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, "", "", ""));
  8166. 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, "", "", ""));
  8167. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  8168. this._adapter.UpdateCommand.Connection = this.Connection;
  8169. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[spec] SET [наименование специальности] = @наименование_специальности, [описание специальности] = @описание_специальности WHERE (([код специальности] = @Original_код_специальности) AND ([наименование специальности] = @Original_наименование_специальности));
  8170. SELECT [код специальности], [наименование специальности], [описание специальности] FROM spec WHERE ([код специальности] = @код_специальности)";
  8171. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  8172. 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, "", "", ""));
  8173. 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, "", "", ""));
  8174. 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, "", "", ""));
  8175. 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, "", "", ""));
  8176. 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, "", "", ""));
  8177. }
  8178. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8179. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8180. private void InitConnection() {
  8181. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8182. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  8183. }
  8184. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8185. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8186. private void InitCommandCollection() {
  8187. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8188. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8189. this._commandCollection[0].Connection = this.Connection;
  8190. this._commandCollection[0].CommandText = "SELECT [код специальности], [наименование специальности], [описание специальности" +
  8191. "] FROM dbo.spec";
  8192. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  8193. }
  8194. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8195. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8196. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8197. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8198. public virtual int Fill(IS31KiselevStudDataSet.specDataTable dataTable) {
  8199. this.Adapter.SelectCommand = this.CommandCollection[0];
  8200. if ((this.ClearBeforeFill == true)) {
  8201. dataTable.Clear();
  8202. }
  8203. int returnValue = this.Adapter.Fill(dataTable);
  8204. return returnValue;
  8205. }
  8206. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8207. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8208. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8209. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8210. public virtual IS31KiselevStudDataSet.specDataTable GetData() {
  8211. this.Adapter.SelectCommand = this.CommandCollection[0];
  8212. IS31KiselevStudDataSet.specDataTable dataTable = new IS31KiselevStudDataSet.specDataTable();
  8213. this.Adapter.Fill(dataTable);
  8214. return dataTable;
  8215. }
  8216. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8217. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8218. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8219. public virtual int Update(IS31KiselevStudDataSet.specDataTable dataTable) {
  8220. return this.Adapter.Update(dataTable);
  8221. }
  8222. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8223. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8224. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8225. public virtual int Update(IS31KiselevStudDataSet dataSet) {
  8226. return this.Adapter.Update(dataSet, "spec");
  8227. }
  8228. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8229. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8230. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8231. public virtual int Update(global::System.Data.DataRow dataRow) {
  8232. return this.Adapter.Update(new global::System.Data.DataRow[] {
  8233. dataRow});
  8234. }
  8235. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8236. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8237. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8238. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  8239. return this.Adapter.Update(dataRows);
  8240. }
  8241. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8242. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8243. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8244. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  8245. public virtual int Delete(long Original_код_специальности, string Original_наименование_специальности) {
  8246. this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_код_специальности));
  8247. if ((Original_наименование_специальности == null)) {
  8248. throw new global::System.ArgumentNullException("Original_наименование_специальности");
  8249. }
  8250. else {
  8251. this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_наименование_специальности));
  8252. }
  8253. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  8254. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8255. != global::System.Data.ConnectionState.Open)) {
  8256. this.Adapter.DeleteCommand.Connection.Open();
  8257. }
  8258. try {
  8259. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  8260. return returnValue;
  8261. }
  8262. finally {
  8263. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8264. this.Adapter.DeleteCommand.Connection.Close();
  8265. }
  8266. }
  8267. }
  8268. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8269. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8270. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8271. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  8272. public virtual int Insert(string наименование_специальности, string описание_специальности) {
  8273. if ((наименование_специальности == null)) {
  8274. throw new global::System.ArgumentNullException("наименование_специальности");
  8275. }
  8276. else {
  8277. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(наименование_специальности));
  8278. }
  8279. if ((описание_специальности == null)) {
  8280. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  8281. }
  8282. else {
  8283. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(описание_специальности));
  8284. }
  8285. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  8286. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8287. != global::System.Data.ConnectionState.Open)) {
  8288. this.Adapter.InsertCommand.Connection.Open();
  8289. }
  8290. try {
  8291. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  8292. return returnValue;
  8293. }
  8294. finally {
  8295. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8296. this.Adapter.InsertCommand.Connection.Close();
  8297. }
  8298. }
  8299. }
  8300. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8301. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8302. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8303. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8304. public virtual int Update(string наименование_специальности, string описание_специальности, long Original_код_специальности, string Original_наименование_специальности, long код_специальности) {
  8305. if ((наименование_специальности == null)) {
  8306. throw new global::System.ArgumentNullException("наименование_специальности");
  8307. }
  8308. else {
  8309. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(наименование_специальности));
  8310. }
  8311. if ((описание_специальности == null)) {
  8312. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  8313. }
  8314. else {
  8315. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(описание_специальности));
  8316. }
  8317. this.Adapter.UpdateCommand.Parameters[2].Value = ((long)(Original_код_специальности));
  8318. if ((Original_наименование_специальности == null)) {
  8319. throw new global::System.ArgumentNullException("Original_наименование_специальности");
  8320. }
  8321. else {
  8322. this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(Original_наименование_специальности));
  8323. }
  8324. this.Adapter.UpdateCommand.Parameters[4].Value = ((long)(код_специальности));
  8325. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  8326. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8327. != global::System.Data.ConnectionState.Open)) {
  8328. this.Adapter.UpdateCommand.Connection.Open();
  8329. }
  8330. try {
  8331. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  8332. return returnValue;
  8333. }
  8334. finally {
  8335. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8336. this.Adapter.UpdateCommand.Connection.Close();
  8337. }
  8338. }
  8339. }
  8340. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8341. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8342. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8343. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8344. public virtual int Update(string наименование_специальности, string описание_специальности, long Original_код_специальности, string Original_наименование_специальности) {
  8345. return this.Update(наименование_специальности, описание_специальности, Original_код_специальности, Original_наименование_специальности, Original_код_специальности);
  8346. }
  8347. }
  8348. /// <summary>
  8349. ///Represents the connection and commands used to retrieve and save data.
  8350. ///</summary>
  8351. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8352. [global::System.ComponentModel.ToolboxItem(true)]
  8353. [global::System.ComponentModel.DataObjectAttribute(true)]
  8354. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8355. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8356. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8357. public partial class StudentsTableAdapter : global::System.ComponentModel.Component {
  8358. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8359. private global::System.Data.SqlClient.SqlConnection _connection;
  8360. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8361. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8362. private bool _clearBeforeFill;
  8363. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8364. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8365. public StudentsTableAdapter() {
  8366. this.ClearBeforeFill = true;
  8367. }
  8368. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8369. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8370. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8371. get {
  8372. if ((this._adapter == null)) {
  8373. this.InitAdapter();
  8374. }
  8375. return this._adapter;
  8376. }
  8377. }
  8378. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8379. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8380. internal global::System.Data.SqlClient.SqlConnection Connection {
  8381. get {
  8382. if ((this._connection == null)) {
  8383. this.InitConnection();
  8384. }
  8385. return this._connection;
  8386. }
  8387. set {
  8388. this._connection = value;
  8389. if ((this.Adapter.InsertCommand != null)) {
  8390. this.Adapter.InsertCommand.Connection = value;
  8391. }
  8392. if ((this.Adapter.DeleteCommand != null)) {
  8393. this.Adapter.DeleteCommand.Connection = value;
  8394. }
  8395. if ((this.Adapter.UpdateCommand != null)) {
  8396. this.Adapter.UpdateCommand.Connection = value;
  8397. }
  8398. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8399. if ((this.CommandCollection[i] != null)) {
  8400. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  8401. }
  8402. }
  8403. }
  8404. }
  8405. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8406. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8407. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  8408. get {
  8409. return this._transaction;
  8410. }
  8411. set {
  8412. this._transaction = value;
  8413. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  8414. this.CommandCollection[i].Transaction = this._transaction;
  8415. }
  8416. if (((this.Adapter != null)
  8417. && (this.Adapter.DeleteCommand != null))) {
  8418. this.Adapter.DeleteCommand.Transaction = this._transaction;
  8419. }
  8420. if (((this.Adapter != null)
  8421. && (this.Adapter.InsertCommand != null))) {
  8422. this.Adapter.InsertCommand.Transaction = this._transaction;
  8423. }
  8424. if (((this.Adapter != null)
  8425. && (this.Adapter.UpdateCommand != null))) {
  8426. this.Adapter.UpdateCommand.Transaction = this._transaction;
  8427. }
  8428. }
  8429. }
  8430. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8431. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8432. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  8433. get {
  8434. if ((this._commandCollection == null)) {
  8435. this.InitCommandCollection();
  8436. }
  8437. return this._commandCollection;
  8438. }
  8439. }
  8440. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8441. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8442. public bool ClearBeforeFill {
  8443. get {
  8444. return this._clearBeforeFill;
  8445. }
  8446. set {
  8447. this._clearBeforeFill = value;
  8448. }
  8449. }
  8450. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8451. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8452. private void InitAdapter() {
  8453. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  8454. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  8455. tableMapping.SourceTable = "Table";
  8456. tableMapping.DataSetTable = "Students";
  8457. tableMapping.ColumnMappings.Add("Код студента", "Код студента");
  8458. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  8459. tableMapping.ColumnMappings.Add("Пол", "Пол");
  8460. tableMapping.ColumnMappings.Add("Родители", "Родители");
  8461. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  8462. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  8463. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  8464. tableMapping.ColumnMappings.Add("Группа", "Группа");
  8465. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  8466. tableMapping.ColumnMappings.Add("Дата поступления", "Дата поступления");
  8467. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  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].[Students] 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_Код_специальности)))";
  8475. this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
  8476. 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, "", "", ""));
  8477. 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, "", "", ""));
  8478. 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, "", "", ""));
  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.Date, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Дата поступления", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
  8481. 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, "", "", ""));
  8482. 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, "", "", ""));
  8483. 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, "", "", ""));
  8484. 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, "", "", ""));
  8485. 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, "", "", ""));
  8486. 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, "", "", ""));
  8487. 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, "", "", ""));
  8488. 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, "", "", ""));
  8489. this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
  8490. this._adapter.InsertCommand.Connection = this.Connection;
  8491. this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[Students] ([ФИО], [Пол], [Родители], [Адрес], [Телефон], [Паспортные данные], [Группа], [Дата рождения], [Дата поступления], [Очная форма обучения], [Номер зачетки], [Курс], [Код специальности]) VALUES (@ФИО, @Пол, @Родители, @Адрес, @Телефон, @Паспортные_данные, @Группа, @Дата_рождения, @Дата_поступления, @Очная_форма_обучения, @Номер_зачетки, @Курс, @Код_специальности);
  8492. SELECT [Код студента], ФИО, Пол, Родители, Адрес, Телефон, [Паспортные данные], Группа, [Дата рождения], [Дата поступления], [Очная форма обучения], [Номер зачетки], Курс, [Код специальности] FROM Students WHERE ([Код студента] = SCOPE_IDENTITY())";
  8493. this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
  8494. 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, "", "", ""));
  8495. 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, "", "", ""));
  8496. 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, "", "", ""));
  8497. 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, "", "", ""));
  8498. 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, "", "", ""));
  8499. 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, "", "", ""));
  8500. 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, "", "", ""));
  8501. 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, "", "", ""));
  8502. 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, "", "", ""));
  8503. 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, "", "", ""));
  8504. 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, "", "", ""));
  8505. 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, "", "", ""));
  8506. 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, "", "", ""));
  8507. this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
  8508. this._adapter.UpdateCommand.Connection = this.Connection;
  8509. this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[Students] SET [ФИО] = @ФИО, [Пол] = @Пол, [Родители] = @Родители, [Адрес] = @Адрес, [Телефон] = @Телефон, [Паспортные данные] = @Паспортные_данные, [Группа] = @Группа, [Дата рождения] = @Дата_рождения, [Дата поступления] = @Дата_поступления, [Очная форма обучения] = @Очная_форма_обучения, [Номер зачетки] = @Номер_зачетки, [Курс] = @Курс, [Код специальности] = @Код_специальности WHERE (([Код студента] = @Original_Код_студента) AND ((@IsNull_Дата_рождения = 1 AND [Дата рождения] IS NULL) OR ([Дата рождения] = @Original_Дата_рождения)) AND ((@IsNull_Дата_поступления = 1 AND [Дата поступления] IS NULL) OR ([Дата поступления] = @Original_Дата_поступления)) AND ((@IsNull_Очная_форма_обучения = 1 AND [Очная форма обучения] IS NULL) OR ([Очная форма обучения] = @Original_Очная_форма_обучения)) AND ((@IsNull_Номер_зачетки = 1 AND [Номер зачетки] IS NULL) OR ([Номер зачетки] = @Original_Номер_зачетки)) AND ((@IsNull_Курс = 1 AND [Курс] IS NULL) OR ([Курс] = @Original_Курс)) AND ((@IsNull_Код_специальности = 1 AND [Код специальности] IS NULL) OR ([Код специальности] = @Original_Код_специальности)));
  8510. SELECT [Код студента], ФИО, Пол, Родители, Адрес, Телефон, [Паспортные данные], Группа, [Дата рождения], [Дата поступления], [Очная форма обучения], [Номер зачетки], Курс, [Код специальности] FROM Students WHERE ([Код студента] = @Код_студента)";
  8511. this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
  8512. 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, "", "", ""));
  8513. 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, "", "", ""));
  8514. 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, "", "", ""));
  8515. 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, "", "", ""));
  8516. 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, "", "", ""));
  8517. 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, "", "", ""));
  8518. 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, "", "", ""));
  8519. 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, "", "", ""));
  8520. 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, "", "", ""));
  8521. 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, "", "", ""));
  8522. 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, "", "", ""));
  8523. 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, "", "", ""));
  8524. 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, "", "", ""));
  8525. 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, "", "", ""));
  8526. 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, "", "", ""));
  8527. 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, "", "", ""));
  8528. 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, "", "", ""));
  8529. 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, "", "", ""));
  8530. 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, "", "", ""));
  8531. 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, "", "", ""));
  8532. 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, "", "", ""));
  8533. 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, "", "", ""));
  8534. 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, "", "", ""));
  8535. 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, "", "", ""));
  8536. 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, "", "", ""));
  8537. 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, "", "", ""));
  8538. 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, "", "", ""));
  8539. }
  8540. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8541. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8542. private void InitConnection() {
  8543. this._connection = new global::System.Data.SqlClient.SqlConnection();
  8544. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  8545. }
  8546. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8547. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8548. private void InitCommandCollection() {
  8549. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  8550. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  8551. this._commandCollection[0].Connection = this.Connection;
  8552. this._commandCollection[0].CommandText = "SELECT [Код студента], ФИО, Пол, Родители, Адрес, Телефон, [Паспортные данные], Г" +
  8553. "руппа, [Дата рождения], [Дата поступления], [Очная форма обучения], [Номер зачет" +
  8554. "ки], Курс, [Код специальности] FROM dbo.Students";
  8555. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  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. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  8561. public virtual int Fill(IS31KiselevStudDataSet.StudentsDataTable dataTable) {
  8562. this.Adapter.SelectCommand = this.CommandCollection[0];
  8563. if ((this.ClearBeforeFill == true)) {
  8564. dataTable.Clear();
  8565. }
  8566. int returnValue = this.Adapter.Fill(dataTable);
  8567. return returnValue;
  8568. }
  8569. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8570. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8571. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8572. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  8573. public virtual IS31KiselevStudDataSet.StudentsDataTable GetData() {
  8574. this.Adapter.SelectCommand = this.CommandCollection[0];
  8575. IS31KiselevStudDataSet.StudentsDataTable dataTable = new IS31KiselevStudDataSet.StudentsDataTable();
  8576. this.Adapter.Fill(dataTable);
  8577. return dataTable;
  8578. }
  8579. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8580. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8581. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8582. public virtual int Update(IS31KiselevStudDataSet.StudentsDataTable dataTable) {
  8583. return this.Adapter.Update(dataTable);
  8584. }
  8585. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8586. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8587. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8588. public virtual int Update(IS31KiselevStudDataSet dataSet) {
  8589. return this.Adapter.Update(dataSet, "Students");
  8590. }
  8591. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8592. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8593. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8594. public virtual int Update(global::System.Data.DataRow dataRow) {
  8595. return this.Adapter.Update(new global::System.Data.DataRow[] {
  8596. dataRow});
  8597. }
  8598. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8599. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8600. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8601. public virtual int Update(global::System.Data.DataRow[] dataRows) {
  8602. return this.Adapter.Update(dataRows);
  8603. }
  8604. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8605. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8606. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8607. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
  8608. public virtual int Delete(long Original_Код_студента, global::System.Nullable<global::System.DateTime> Original_Дата_рождения, global::System.Nullable<global::System.DateTime> Original_Дата_поступления, global::System.Nullable<bool> Original_Очная_форма_обучения, global::System.Nullable<long> Original_Номер_зачетки, global::System.Nullable<byte> Original_Курс, global::System.Nullable<long> Original_Код_специальности) {
  8609. this.Adapter.DeleteCommand.Parameters[0].Value = ((long)(Original_Код_студента));
  8610. if ((Original_Дата_рождения.HasValue == true)) {
  8611. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
  8612. this.Adapter.DeleteCommand.Parameters[2].Value = ((System.DateTime)(Original_Дата_рождения.Value));
  8613. }
  8614. else {
  8615. this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
  8616. this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
  8617. }
  8618. if ((Original_Дата_поступления.HasValue == true)) {
  8619. this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(0));
  8620. this.Adapter.DeleteCommand.Parameters[4].Value = ((System.DateTime)(Original_Дата_поступления.Value));
  8621. }
  8622. else {
  8623. this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(1));
  8624. this.Adapter.DeleteCommand.Parameters[4].Value = global::System.DBNull.Value;
  8625. }
  8626. if ((Original_Очная_форма_обучения.HasValue == true)) {
  8627. this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0));
  8628. this.Adapter.DeleteCommand.Parameters[6].Value = ((bool)(Original_Очная_форма_обучения.Value));
  8629. }
  8630. else {
  8631. this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1));
  8632. this.Adapter.DeleteCommand.Parameters[6].Value = global::System.DBNull.Value;
  8633. }
  8634. if ((Original_Номер_зачетки.HasValue == true)) {
  8635. this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0));
  8636. this.Adapter.DeleteCommand.Parameters[8].Value = ((long)(Original_Номер_зачетки.Value));
  8637. }
  8638. else {
  8639. this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1));
  8640. this.Adapter.DeleteCommand.Parameters[8].Value = global::System.DBNull.Value;
  8641. }
  8642. if ((Original_Курс.HasValue == true)) {
  8643. this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(0));
  8644. this.Adapter.DeleteCommand.Parameters[10].Value = ((byte)(Original_Курс.Value));
  8645. }
  8646. else {
  8647. this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(1));
  8648. this.Adapter.DeleteCommand.Parameters[10].Value = global::System.DBNull.Value;
  8649. }
  8650. if ((Original_Код_специальности.HasValue == true)) {
  8651. this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(0));
  8652. this.Adapter.DeleteCommand.Parameters[12].Value = ((long)(Original_Код_специальности.Value));
  8653. }
  8654. else {
  8655. this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(1));
  8656. this.Adapter.DeleteCommand.Parameters[12].Value = global::System.DBNull.Value;
  8657. }
  8658. global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
  8659. if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8660. != global::System.Data.ConnectionState.Open)) {
  8661. this.Adapter.DeleteCommand.Connection.Open();
  8662. }
  8663. try {
  8664. int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
  8665. return returnValue;
  8666. }
  8667. finally {
  8668. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8669. this.Adapter.DeleteCommand.Connection.Close();
  8670. }
  8671. }
  8672. }
  8673. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8674. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8675. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8676. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
  8677. public virtual int Insert(string ФИО, string Пол, string Родители, string Адрес, string Телефон, string Паспортные_данные, string Группа, global::System.Nullable<global::System.DateTime> Дата_рождения, global::System.Nullable<global::System.DateTime> Дата_поступления, global::System.Nullable<bool> Очная_форма_обучения, global::System.Nullable<long> Номер_зачетки, global::System.Nullable<byte> Курс, global::System.Nullable<long> Код_специальности) {
  8678. if ((ФИО == null)) {
  8679. this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
  8680. }
  8681. else {
  8682. this.Adapter.InsertCommand.Parameters[0].Value = ((string)(ФИО));
  8683. }
  8684. if ((Пол == null)) {
  8685. this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
  8686. }
  8687. else {
  8688. this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Пол));
  8689. }
  8690. if ((Родители == null)) {
  8691. this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
  8692. }
  8693. else {
  8694. this.Adapter.InsertCommand.Parameters[2].Value = ((string)(Родители));
  8695. }
  8696. if ((Адрес == null)) {
  8697. this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
  8698. }
  8699. else {
  8700. this.Adapter.InsertCommand.Parameters[3].Value = ((string)(Адрес));
  8701. }
  8702. if ((Телефон == null)) {
  8703. this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
  8704. }
  8705. else {
  8706. this.Adapter.InsertCommand.Parameters[4].Value = ((string)(Телефон));
  8707. }
  8708. if ((Паспортные_данные == null)) {
  8709. this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
  8710. }
  8711. else {
  8712. this.Adapter.InsertCommand.Parameters[5].Value = ((string)(Паспортные_данные));
  8713. }
  8714. if ((Группа == null)) {
  8715. this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
  8716. }
  8717. else {
  8718. this.Adapter.InsertCommand.Parameters[6].Value = ((string)(Группа));
  8719. }
  8720. if ((Дата_рождения.HasValue == true)) {
  8721. this.Adapter.InsertCommand.Parameters[7].Value = ((System.DateTime)(Дата_рождения.Value));
  8722. }
  8723. else {
  8724. this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
  8725. }
  8726. if ((Дата_поступления.HasValue == true)) {
  8727. this.Adapter.InsertCommand.Parameters[8].Value = ((System.DateTime)(Дата_поступления.Value));
  8728. }
  8729. else {
  8730. this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
  8731. }
  8732. if ((Очная_форма_обучения.HasValue == true)) {
  8733. this.Adapter.InsertCommand.Parameters[9].Value = ((bool)(Очная_форма_обучения.Value));
  8734. }
  8735. else {
  8736. this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
  8737. }
  8738. if ((Номер_зачетки.HasValue == true)) {
  8739. this.Adapter.InsertCommand.Parameters[10].Value = ((long)(Номер_зачетки.Value));
  8740. }
  8741. else {
  8742. this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
  8743. }
  8744. if ((Курс.HasValue == true)) {
  8745. this.Adapter.InsertCommand.Parameters[11].Value = ((byte)(Курс.Value));
  8746. }
  8747. else {
  8748. this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value;
  8749. }
  8750. if ((Код_специальности.HasValue == true)) {
  8751. this.Adapter.InsertCommand.Parameters[12].Value = ((long)(Код_специальности.Value));
  8752. }
  8753. else {
  8754. this.Adapter.InsertCommand.Parameters[12].Value = global::System.DBNull.Value;
  8755. }
  8756. global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
  8757. if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8758. != global::System.Data.ConnectionState.Open)) {
  8759. this.Adapter.InsertCommand.Connection.Open();
  8760. }
  8761. try {
  8762. int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
  8763. return returnValue;
  8764. }
  8765. finally {
  8766. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8767. this.Adapter.InsertCommand.Connection.Close();
  8768. }
  8769. }
  8770. }
  8771. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8772. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8773. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8774. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8775. public virtual int Update(
  8776. string ФИО,
  8777. string Пол,
  8778. string Родители,
  8779. string Адрес,
  8780. string Телефон,
  8781. string Паспортные_данные,
  8782. string Группа,
  8783. global::System.Nullable<global::System.DateTime> Дата_рождения,
  8784. global::System.Nullable<global::System.DateTime> Дата_поступления,
  8785. global::System.Nullable<bool> Очная_форма_обучения,
  8786. global::System.Nullable<long> Номер_зачетки,
  8787. global::System.Nullable<byte> Курс,
  8788. global::System.Nullable<long> Код_специальности,
  8789. long Original_Код_студента,
  8790. global::System.Nullable<global::System.DateTime> Original_Дата_рождения,
  8791. global::System.Nullable<global::System.DateTime> Original_Дата_поступления,
  8792. global::System.Nullable<bool> Original_Очная_форма_обучения,
  8793. global::System.Nullable<long> Original_Номер_зачетки,
  8794. global::System.Nullable<byte> Original_Курс,
  8795. global::System.Nullable<long> Original_Код_специальности,
  8796. long Код_студента) {
  8797. if ((ФИО == null)) {
  8798. this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
  8799. }
  8800. else {
  8801. this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(ФИО));
  8802. }
  8803. if ((Пол == null)) {
  8804. this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
  8805. }
  8806. else {
  8807. this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Пол));
  8808. }
  8809. if ((Родители == null)) {
  8810. this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value;
  8811. }
  8812. else {
  8813. this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Родители));
  8814. }
  8815. if ((Адрес == null)) {
  8816. this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
  8817. }
  8818. else {
  8819. this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(Адрес));
  8820. }
  8821. if ((Телефон == null)) {
  8822. this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
  8823. }
  8824. else {
  8825. this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Телефон));
  8826. }
  8827. if ((Паспортные_данные == null)) {
  8828. this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value;
  8829. }
  8830. else {
  8831. this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Паспортные_данные));
  8832. }
  8833. if ((Группа == null)) {
  8834. this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
  8835. }
  8836. else {
  8837. this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Группа));
  8838. }
  8839. if ((Дата_рождения.HasValue == true)) {
  8840. this.Adapter.UpdateCommand.Parameters[7].Value = ((System.DateTime)(Дата_рождения.Value));
  8841. }
  8842. else {
  8843. this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
  8844. }
  8845. if ((Дата_поступления.HasValue == true)) {
  8846. this.Adapter.UpdateCommand.Parameters[8].Value = ((System.DateTime)(Дата_поступления.Value));
  8847. }
  8848. else {
  8849. this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
  8850. }
  8851. if ((Очная_форма_обучения.HasValue == true)) {
  8852. this.Adapter.UpdateCommand.Parameters[9].Value = ((bool)(Очная_форма_обучения.Value));
  8853. }
  8854. else {
  8855. this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
  8856. }
  8857. if ((Номер_зачетки.HasValue == true)) {
  8858. this.Adapter.UpdateCommand.Parameters[10].Value = ((long)(Номер_зачетки.Value));
  8859. }
  8860. else {
  8861. this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
  8862. }
  8863. if ((Курс.HasValue == true)) {
  8864. this.Adapter.UpdateCommand.Parameters[11].Value = ((byte)(Курс.Value));
  8865. }
  8866. else {
  8867. this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value;
  8868. }
  8869. if ((Код_специальности.HasValue == true)) {
  8870. this.Adapter.UpdateCommand.Parameters[12].Value = ((long)(Код_специальности.Value));
  8871. }
  8872. else {
  8873. this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value;
  8874. }
  8875. this.Adapter.UpdateCommand.Parameters[13].Value = ((long)(Original_Код_студента));
  8876. if ((Original_Дата_рождения.HasValue == true)) {
  8877. this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(0));
  8878. this.Adapter.UpdateCommand.Parameters[15].Value = ((System.DateTime)(Original_Дата_рождения.Value));
  8879. }
  8880. else {
  8881. this.Adapter.UpdateCommand.Parameters[14].Value = ((object)(1));
  8882. this.Adapter.UpdateCommand.Parameters[15].Value = global::System.DBNull.Value;
  8883. }
  8884. if ((Original_Дата_поступления.HasValue == true)) {
  8885. this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(0));
  8886. this.Adapter.UpdateCommand.Parameters[17].Value = ((System.DateTime)(Original_Дата_поступления.Value));
  8887. }
  8888. else {
  8889. this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(1));
  8890. this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value;
  8891. }
  8892. if ((Original_Очная_форма_обучения.HasValue == true)) {
  8893. this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(0));
  8894. this.Adapter.UpdateCommand.Parameters[19].Value = ((bool)(Original_Очная_форма_обучения.Value));
  8895. }
  8896. else {
  8897. this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(1));
  8898. this.Adapter.UpdateCommand.Parameters[19].Value = global::System.DBNull.Value;
  8899. }
  8900. if ((Original_Номер_зачетки.HasValue == true)) {
  8901. this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
  8902. this.Adapter.UpdateCommand.Parameters[21].Value = ((long)(Original_Номер_зачетки.Value));
  8903. }
  8904. else {
  8905. this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
  8906. this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
  8907. }
  8908. if ((Original_Курс.HasValue == true)) {
  8909. this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(0));
  8910. this.Adapter.UpdateCommand.Parameters[23].Value = ((byte)(Original_Курс.Value));
  8911. }
  8912. else {
  8913. this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(1));
  8914. this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value;
  8915. }
  8916. if ((Original_Код_специальности.HasValue == true)) {
  8917. this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
  8918. this.Adapter.UpdateCommand.Parameters[25].Value = ((long)(Original_Код_специальности.Value));
  8919. }
  8920. else {
  8921. this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
  8922. this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
  8923. }
  8924. this.Adapter.UpdateCommand.Parameters[26].Value = ((long)(Код_студента));
  8925. global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
  8926. if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
  8927. != global::System.Data.ConnectionState.Open)) {
  8928. this.Adapter.UpdateCommand.Connection.Open();
  8929. }
  8930. try {
  8931. int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
  8932. return returnValue;
  8933. }
  8934. finally {
  8935. if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
  8936. this.Adapter.UpdateCommand.Connection.Close();
  8937. }
  8938. }
  8939. }
  8940. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8941. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8942. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8943. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
  8944. public virtual int Update(
  8945. string ФИО,
  8946. string Пол,
  8947. string Родители,
  8948. string Адрес,
  8949. string Телефон,
  8950. string Паспортные_данные,
  8951. string Группа,
  8952. global::System.Nullable<global::System.DateTime> Дата_рождения,
  8953. global::System.Nullable<global::System.DateTime> Дата_поступления,
  8954. global::System.Nullable<bool> Очная_форма_обучения,
  8955. global::System.Nullable<long> Номер_зачетки,
  8956. global::System.Nullable<byte> Курс,
  8957. global::System.Nullable<long> Код_специальности,
  8958. long Original_Код_студента,
  8959. global::System.Nullable<global::System.DateTime> Original_Дата_рождения,
  8960. global::System.Nullable<global::System.DateTime> Original_Дата_поступления,
  8961. global::System.Nullable<bool> Original_Очная_форма_обучения,
  8962. global::System.Nullable<long> Original_Номер_зачетки,
  8963. global::System.Nullable<byte> Original_Курс,
  8964. global::System.Nullable<long> Original_Код_специальности) {
  8965. return this.Update(ФИО, Пол, Родители, Адрес, Телефон, Паспортные_данные, Группа, Дата_рождения, Дата_поступления, Очная_форма_обучения, Номер_зачетки, Курс, Код_специальности, Original_Код_студента, Original_Дата_рождения, Original_Дата_поступления, Original_Очная_форма_обучения, Original_Номер_зачетки, Original_Курс, Original_Код_специальности, Original_Код_студента);
  8966. }
  8967. }
  8968. /// <summary>
  8969. ///Represents the connection and commands used to retrieve and save data.
  8970. ///</summary>
  8971. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  8972. [global::System.ComponentModel.ToolboxItem(true)]
  8973. [global::System.ComponentModel.DataObjectAttribute(true)]
  8974. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  8975. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  8976. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  8977. public partial class запрос_студенты_оценкиTableAdapter : global::System.ComponentModel.Component {
  8978. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  8979. private global::System.Data.SqlClient.SqlConnection _connection;
  8980. private global::System.Data.SqlClient.SqlTransaction _transaction;
  8981. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  8982. private bool _clearBeforeFill;
  8983. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8984. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8985. public запрос_студенты_оценкиTableAdapter() {
  8986. this.ClearBeforeFill = true;
  8987. }
  8988. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8989. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  8990. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  8991. get {
  8992. if ((this._adapter == null)) {
  8993. this.InitAdapter();
  8994. }
  8995. return this._adapter;
  8996. }
  8997. }
  8998. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  8999. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9000. internal global::System.Data.SqlClient.SqlConnection Connection {
  9001. get {
  9002. if ((this._connection == null)) {
  9003. this.InitConnection();
  9004. }
  9005. return this._connection;
  9006. }
  9007. set {
  9008. this._connection = value;
  9009. if ((this.Adapter.InsertCommand != null)) {
  9010. this.Adapter.InsertCommand.Connection = value;
  9011. }
  9012. if ((this.Adapter.DeleteCommand != null)) {
  9013. this.Adapter.DeleteCommand.Connection = value;
  9014. }
  9015. if ((this.Adapter.UpdateCommand != null)) {
  9016. this.Adapter.UpdateCommand.Connection = value;
  9017. }
  9018. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9019. if ((this.CommandCollection[i] != null)) {
  9020. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9021. }
  9022. }
  9023. }
  9024. }
  9025. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9026. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9027. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9028. get {
  9029. return this._transaction;
  9030. }
  9031. set {
  9032. this._transaction = value;
  9033. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9034. this.CommandCollection[i].Transaction = this._transaction;
  9035. }
  9036. if (((this.Adapter != null)
  9037. && (this.Adapter.DeleteCommand != null))) {
  9038. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9039. }
  9040. if (((this.Adapter != null)
  9041. && (this.Adapter.InsertCommand != null))) {
  9042. this.Adapter.InsertCommand.Transaction = this._transaction;
  9043. }
  9044. if (((this.Adapter != null)
  9045. && (this.Adapter.UpdateCommand != null))) {
  9046. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9047. }
  9048. }
  9049. }
  9050. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9051. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9052. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9053. get {
  9054. if ((this._commandCollection == null)) {
  9055. this.InitCommandCollection();
  9056. }
  9057. return this._commandCollection;
  9058. }
  9059. }
  9060. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9061. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9062. public bool ClearBeforeFill {
  9063. get {
  9064. return this._clearBeforeFill;
  9065. }
  9066. set {
  9067. this._clearBeforeFill = value;
  9068. }
  9069. }
  9070. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9071. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9072. private void InitAdapter() {
  9073. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9074. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9075. tableMapping.SourceTable = "Table";
  9076. tableMapping.DataSetTable = "запрос студенты+оценки";
  9077. tableMapping.ColumnMappings.Add("фио студента", "фио студента");
  9078. tableMapping.ColumnMappings.Add("оценка первого экзамена", "оценка первого экзамена");
  9079. tableMapping.ColumnMappings.Add("оценка второго экзамена", "оценка второго экзамена");
  9080. tableMapping.ColumnMappings.Add("оценка третьего экзамена", "оценка третьего экзамена");
  9081. tableMapping.ColumnMappings.Add("дата третьего экзамена", "дата третьего экзамена");
  9082. tableMapping.ColumnMappings.Add("дата второго экзамена", "дата второго экзамена");
  9083. tableMapping.ColumnMappings.Add("дата первого экзамена", "дата первого экзамена");
  9084. tableMapping.ColumnMappings.Add("средний балл студента за сессию", "средний балл студента за сессию");
  9085. tableMapping.ColumnMappings.Add("наименование предмета первого экзамена", "наименование предмета первого экзамена");
  9086. tableMapping.ColumnMappings.Add("наименование предмета третьего экзамена", "наименование предмета третьего экзамена");
  9087. tableMapping.ColumnMappings.Add("наименование предмета второго экзамена", "наименование предмета второго экзамена");
  9088. this._adapter.TableMappings.Add(tableMapping);
  9089. }
  9090. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9091. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9092. private void InitConnection() {
  9093. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9094. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  9095. }
  9096. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9097. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9098. private void InitCommandCollection() {
  9099. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9100. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9101. this._commandCollection[0].Connection = this.Connection;
  9102. this._commandCollection[0].CommandText = @"SELECT [фио студента], [оценка первого экзамена], [оценка второго экзамена], [оценка третьего экзамена], [дата третьего экзамена], [дата второго экзамена], [дата первого экзамена], [средний балл студента за сессию], [наименование предмета первого экзамена], [наименование предмета третьего экзамена], [наименование предмета второго экзамена] FROM dbo.[запрос студенты+оценки]";
  9103. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9104. }
  9105. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9106. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9107. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9108. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9109. public virtual int Fill(IS31KiselevStudDataSet._запрос_студенты_оценкиDataTable dataTable) {
  9110. this.Adapter.SelectCommand = this.CommandCollection[0];
  9111. if ((this.ClearBeforeFill == true)) {
  9112. dataTable.Clear();
  9113. }
  9114. int returnValue = this.Adapter.Fill(dataTable);
  9115. return returnValue;
  9116. }
  9117. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9118. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9119. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9120. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9121. public virtual IS31KiselevStudDataSet._запрос_студенты_оценкиDataTable GetData() {
  9122. this.Adapter.SelectCommand = this.CommandCollection[0];
  9123. IS31KiselevStudDataSet._запрос_студенты_оценкиDataTable dataTable = new IS31KiselevStudDataSet._запрос_студенты_оценкиDataTable();
  9124. this.Adapter.Fill(dataTable);
  9125. return dataTable;
  9126. }
  9127. }
  9128. /// <summary>
  9129. ///Represents the connection and commands used to retrieve and save data.
  9130. ///</summary>
  9131. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9132. [global::System.ComponentModel.ToolboxItem(true)]
  9133. [global::System.ComponentModel.DataObjectAttribute(true)]
  9134. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9135. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9136. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9137. public partial class Запрос_Студенты_СпециальностиTableAdapter : global::System.ComponentModel.Component {
  9138. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9139. private global::System.Data.SqlClient.SqlConnection _connection;
  9140. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9141. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9142. private bool _clearBeforeFill;
  9143. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9144. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9145. public Запрос_Студенты_СпециальностиTableAdapter() {
  9146. this.ClearBeforeFill = true;
  9147. }
  9148. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9149. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9150. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9151. get {
  9152. if ((this._adapter == null)) {
  9153. this.InitAdapter();
  9154. }
  9155. return this._adapter;
  9156. }
  9157. }
  9158. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9159. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9160. internal global::System.Data.SqlClient.SqlConnection Connection {
  9161. get {
  9162. if ((this._connection == null)) {
  9163. this.InitConnection();
  9164. }
  9165. return this._connection;
  9166. }
  9167. set {
  9168. this._connection = value;
  9169. if ((this.Adapter.InsertCommand != null)) {
  9170. this.Adapter.InsertCommand.Connection = value;
  9171. }
  9172. if ((this.Adapter.DeleteCommand != null)) {
  9173. this.Adapter.DeleteCommand.Connection = value;
  9174. }
  9175. if ((this.Adapter.UpdateCommand != null)) {
  9176. this.Adapter.UpdateCommand.Connection = value;
  9177. }
  9178. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9179. if ((this.CommandCollection[i] != null)) {
  9180. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9181. }
  9182. }
  9183. }
  9184. }
  9185. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9186. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9187. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9188. get {
  9189. return this._transaction;
  9190. }
  9191. set {
  9192. this._transaction = value;
  9193. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9194. this.CommandCollection[i].Transaction = this._transaction;
  9195. }
  9196. if (((this.Adapter != null)
  9197. && (this.Adapter.DeleteCommand != null))) {
  9198. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9199. }
  9200. if (((this.Adapter != null)
  9201. && (this.Adapter.InsertCommand != null))) {
  9202. this.Adapter.InsertCommand.Transaction = this._transaction;
  9203. }
  9204. if (((this.Adapter != null)
  9205. && (this.Adapter.UpdateCommand != null))) {
  9206. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9207. }
  9208. }
  9209. }
  9210. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9211. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9212. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9213. get {
  9214. if ((this._commandCollection == null)) {
  9215. this.InitCommandCollection();
  9216. }
  9217. return this._commandCollection;
  9218. }
  9219. }
  9220. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9221. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9222. public bool ClearBeforeFill {
  9223. get {
  9224. return this._clearBeforeFill;
  9225. }
  9226. set {
  9227. this._clearBeforeFill = value;
  9228. }
  9229. }
  9230. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9231. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9232. private void InitAdapter() {
  9233. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9234. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9235. tableMapping.SourceTable = "Table";
  9236. tableMapping.DataSetTable = "Запрос Студенты+Специальности";
  9237. tableMapping.ColumnMappings.Add("Expr1", "Expr1");
  9238. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9239. tableMapping.ColumnMappings.Add("Пол", "Пол");
  9240. tableMapping.ColumnMappings.Add("Родители", "Родители");
  9241. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  9242. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  9243. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  9244. tableMapping.ColumnMappings.Add("Группа", "Группа");
  9245. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9246. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  9247. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  9248. tableMapping.ColumnMappings.Add("Курс", "Курс");
  9249. tableMapping.ColumnMappings.Add("наименование специальности", "наименование специальности");
  9250. tableMapping.ColumnMappings.Add("описание специальности", "описание специальности");
  9251. this._adapter.TableMappings.Add(tableMapping);
  9252. }
  9253. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9254. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9255. private void InitConnection() {
  9256. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9257. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  9258. }
  9259. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9260. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9261. private void InitCommandCollection() {
  9262. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9263. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9264. this._commandCollection[0].Connection = this.Connection;
  9265. this._commandCollection[0].CommandText = "SELECT Expr1, ФИО, Пол, Родители, Адрес, [Паспортные данные], Телефон, Группа, [Д" +
  9266. "ата рождения], [Очная форма обучения], [Номер зачетки], Курс, [наименование спец" +
  9267. "иальности], [описание специальности] FROM dbo.[Запрос Студенты+Специальности]";
  9268. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9269. }
  9270. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9271. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9272. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9273. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9274. public virtual int Fill(IS31KiselevStudDataSet._Запрос_Студенты_СпециальностиDataTable dataTable) {
  9275. this.Adapter.SelectCommand = this.CommandCollection[0];
  9276. if ((this.ClearBeforeFill == true)) {
  9277. dataTable.Clear();
  9278. }
  9279. int returnValue = this.Adapter.Fill(dataTable);
  9280. return returnValue;
  9281. }
  9282. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9283. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9284. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9285. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9286. public virtual IS31KiselevStudDataSet._Запрос_Студенты_СпециальностиDataTable GetData() {
  9287. this.Adapter.SelectCommand = this.CommandCollection[0];
  9288. IS31KiselevStudDataSet._Запрос_Студенты_СпециальностиDataTable dataTable = new IS31KiselevStudDataSet._Запрос_Студенты_СпециальностиDataTable();
  9289. this.Adapter.Fill(dataTable);
  9290. return dataTable;
  9291. }
  9292. }
  9293. /// <summary>
  9294. ///Represents the connection and commands used to retrieve and save data.
  9295. ///</summary>
  9296. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9297. [global::System.ComponentModel.ToolboxItem(true)]
  9298. [global::System.ComponentModel.DataObjectAttribute(true)]
  9299. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9300. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9301. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9302. public partial class Фильтр_ММTableAdapter : global::System.ComponentModel.Component {
  9303. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9304. private global::System.Data.SqlClient.SqlConnection _connection;
  9305. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9306. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9307. private bool _clearBeforeFill;
  9308. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9309. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9310. public Фильтр_ММTableAdapter() {
  9311. this.ClearBeforeFill = true;
  9312. }
  9313. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9314. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9315. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9316. get {
  9317. if ((this._adapter == null)) {
  9318. this.InitAdapter();
  9319. }
  9320. return this._adapter;
  9321. }
  9322. }
  9323. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9324. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9325. internal global::System.Data.SqlClient.SqlConnection Connection {
  9326. get {
  9327. if ((this._connection == null)) {
  9328. this.InitConnection();
  9329. }
  9330. return this._connection;
  9331. }
  9332. set {
  9333. this._connection = value;
  9334. if ((this.Adapter.InsertCommand != null)) {
  9335. this.Adapter.InsertCommand.Connection = value;
  9336. }
  9337. if ((this.Adapter.DeleteCommand != null)) {
  9338. this.Adapter.DeleteCommand.Connection = value;
  9339. }
  9340. if ((this.Adapter.UpdateCommand != null)) {
  9341. this.Adapter.UpdateCommand.Connection = value;
  9342. }
  9343. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9344. if ((this.CommandCollection[i] != null)) {
  9345. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9346. }
  9347. }
  9348. }
  9349. }
  9350. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9351. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9352. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9353. get {
  9354. return this._transaction;
  9355. }
  9356. set {
  9357. this._transaction = value;
  9358. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9359. this.CommandCollection[i].Transaction = this._transaction;
  9360. }
  9361. if (((this.Adapter != null)
  9362. && (this.Adapter.DeleteCommand != null))) {
  9363. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9364. }
  9365. if (((this.Adapter != null)
  9366. && (this.Adapter.InsertCommand != null))) {
  9367. this.Adapter.InsertCommand.Transaction = this._transaction;
  9368. }
  9369. if (((this.Adapter != null)
  9370. && (this.Adapter.UpdateCommand != null))) {
  9371. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9372. }
  9373. }
  9374. }
  9375. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9376. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9377. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9378. get {
  9379. if ((this._commandCollection == null)) {
  9380. this.InitCommandCollection();
  9381. }
  9382. return this._commandCollection;
  9383. }
  9384. }
  9385. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9386. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9387. public bool ClearBeforeFill {
  9388. get {
  9389. return this._clearBeforeFill;
  9390. }
  9391. set {
  9392. this._clearBeforeFill = value;
  9393. }
  9394. }
  9395. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9396. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9397. private void InitAdapter() {
  9398. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9399. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9400. tableMapping.SourceTable = "Table";
  9401. tableMapping.DataSetTable = "Фильтр ММ";
  9402. tableMapping.ColumnMappings.Add("Expr1", "Expr1");
  9403. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9404. tableMapping.ColumnMappings.Add("Пол", "Пол");
  9405. tableMapping.ColumnMappings.Add("Родители", "Родители");
  9406. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  9407. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  9408. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  9409. tableMapping.ColumnMappings.Add("Группа", "Группа");
  9410. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9411. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  9412. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  9413. tableMapping.ColumnMappings.Add("Курс", "Курс");
  9414. tableMapping.ColumnMappings.Add("описание специальности", "описание специальности");
  9415. tableMapping.ColumnMappings.Add("наименование специальности", "наименование специальности");
  9416. this._adapter.TableMappings.Add(tableMapping);
  9417. }
  9418. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9419. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9420. private void InitConnection() {
  9421. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9422. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  9423. }
  9424. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9425. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9426. private void InitCommandCollection() {
  9427. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9428. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9429. this._commandCollection[0].Connection = this.Connection;
  9430. this._commandCollection[0].CommandText = "SELECT Expr1, ФИО, Пол, Родители, Адрес, [Паспортные данные], Телефон, Группа, [Д" +
  9431. "ата рождения], [Очная форма обучения], [Номер зачетки], Курс, [описание специаль" +
  9432. "ности], [наименование специальности] FROM dbo.[Фильтр ММ]";
  9433. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9434. }
  9435. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9436. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9437. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9438. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9439. public virtual int Fill(IS31KiselevStudDataSet.Фильтр_ММDataTable dataTable) {
  9440. this.Adapter.SelectCommand = this.CommandCollection[0];
  9441. if ((this.ClearBeforeFill == true)) {
  9442. dataTable.Clear();
  9443. }
  9444. int returnValue = this.Adapter.Fill(dataTable);
  9445. return returnValue;
  9446. }
  9447. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9448. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9449. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9450. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9451. public virtual IS31KiselevStudDataSet.Фильтр_ММDataTable GetData() {
  9452. this.Adapter.SelectCommand = this.CommandCollection[0];
  9453. IS31KiselevStudDataSet.Фильтр_ММDataTable dataTable = new IS31KiselevStudDataSet.Фильтр_ММDataTable();
  9454. this.Adapter.Fill(dataTable);
  9455. return dataTable;
  9456. }
  9457. }
  9458. /// <summary>
  9459. ///Represents the connection and commands used to retrieve and save data.
  9460. ///</summary>
  9461. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9462. [global::System.ComponentModel.ToolboxItem(true)]
  9463. [global::System.ComponentModel.DataObjectAttribute(true)]
  9464. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9465. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9466. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9467. public partial class Фильтр_ОтецTableAdapter : global::System.ComponentModel.Component {
  9468. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9469. private global::System.Data.SqlClient.SqlConnection _connection;
  9470. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9471. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9472. private bool _clearBeforeFill;
  9473. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9474. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9475. public Фильтр_ОтецTableAdapter() {
  9476. this.ClearBeforeFill = true;
  9477. }
  9478. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9479. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9480. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9481. get {
  9482. if ((this._adapter == null)) {
  9483. this.InitAdapter();
  9484. }
  9485. return this._adapter;
  9486. }
  9487. }
  9488. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9489. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9490. internal global::System.Data.SqlClient.SqlConnection Connection {
  9491. get {
  9492. if ((this._connection == null)) {
  9493. this.InitConnection();
  9494. }
  9495. return this._connection;
  9496. }
  9497. set {
  9498. this._connection = value;
  9499. if ((this.Adapter.InsertCommand != null)) {
  9500. this.Adapter.InsertCommand.Connection = value;
  9501. }
  9502. if ((this.Adapter.DeleteCommand != null)) {
  9503. this.Adapter.DeleteCommand.Connection = value;
  9504. }
  9505. if ((this.Adapter.UpdateCommand != null)) {
  9506. this.Adapter.UpdateCommand.Connection = value;
  9507. }
  9508. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9509. if ((this.CommandCollection[i] != null)) {
  9510. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9511. }
  9512. }
  9513. }
  9514. }
  9515. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9516. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9517. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9518. get {
  9519. return this._transaction;
  9520. }
  9521. set {
  9522. this._transaction = value;
  9523. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9524. this.CommandCollection[i].Transaction = this._transaction;
  9525. }
  9526. if (((this.Adapter != null)
  9527. && (this.Adapter.DeleteCommand != null))) {
  9528. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9529. }
  9530. if (((this.Adapter != null)
  9531. && (this.Adapter.InsertCommand != null))) {
  9532. this.Adapter.InsertCommand.Transaction = this._transaction;
  9533. }
  9534. if (((this.Adapter != null)
  9535. && (this.Adapter.UpdateCommand != null))) {
  9536. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9537. }
  9538. }
  9539. }
  9540. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9541. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9542. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9543. get {
  9544. if ((this._commandCollection == null)) {
  9545. this.InitCommandCollection();
  9546. }
  9547. return this._commandCollection;
  9548. }
  9549. }
  9550. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9551. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9552. public bool ClearBeforeFill {
  9553. get {
  9554. return this._clearBeforeFill;
  9555. }
  9556. set {
  9557. this._clearBeforeFill = value;
  9558. }
  9559. }
  9560. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9561. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9562. private void InitAdapter() {
  9563. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9564. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9565. tableMapping.SourceTable = "Table";
  9566. tableMapping.DataSetTable = "Фильтр Отец";
  9567. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9568. tableMapping.ColumnMappings.Add("Пол", "Пол");
  9569. tableMapping.ColumnMappings.Add("Expr1", "Expr1");
  9570. tableMapping.ColumnMappings.Add("Родители", "Родители");
  9571. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  9572. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  9573. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  9574. tableMapping.ColumnMappings.Add("Группа", "Группа");
  9575. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9576. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  9577. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  9578. tableMapping.ColumnMappings.Add("Курс", "Курс");
  9579. tableMapping.ColumnMappings.Add("описание специальности", "описание специальности");
  9580. tableMapping.ColumnMappings.Add("наименование специальности", "наименование специальности");
  9581. this._adapter.TableMappings.Add(tableMapping);
  9582. }
  9583. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9584. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9585. private void InitConnection() {
  9586. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9587. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  9588. }
  9589. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9590. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9591. private void InitCommandCollection() {
  9592. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9593. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9594. this._commandCollection[0].Connection = this.Connection;
  9595. this._commandCollection[0].CommandText = "SELECT ФИО, Пол, Expr1, Родители, Адрес, [Паспортные данные], Телефон, Группа, [Д" +
  9596. "ата рождения], [Очная форма обучения], [Номер зачетки], Курс, [описание специаль" +
  9597. "ности], [наименование специальности] FROM dbo.[Фильтр Отец]";
  9598. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9599. }
  9600. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9601. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9602. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9603. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9604. public virtual int Fill(IS31KiselevStudDataSet.Фильтр_ОтецDataTable dataTable) {
  9605. this.Adapter.SelectCommand = this.CommandCollection[0];
  9606. if ((this.ClearBeforeFill == true)) {
  9607. dataTable.Clear();
  9608. }
  9609. int returnValue = this.Adapter.Fill(dataTable);
  9610. return returnValue;
  9611. }
  9612. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9613. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9614. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9615. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9616. public virtual IS31KiselevStudDataSet.Фильтр_ОтецDataTable GetData() {
  9617. this.Adapter.SelectCommand = this.CommandCollection[0];
  9618. IS31KiselevStudDataSet.Фильтр_ОтецDataTable dataTable = new IS31KiselevStudDataSet.Фильтр_ОтецDataTable();
  9619. this.Adapter.Fill(dataTable);
  9620. return dataTable;
  9621. }
  9622. }
  9623. /// <summary>
  9624. ///Represents the connection and commands used to retrieve and save data.
  9625. ///</summary>
  9626. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9627. [global::System.ComponentModel.ToolboxItem(true)]
  9628. [global::System.ComponentModel.DataObjectAttribute(true)]
  9629. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9630. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9631. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9632. public partial class фильтр_очная_форма_обученияTableAdapter : global::System.ComponentModel.Component {
  9633. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9634. private global::System.Data.SqlClient.SqlConnection _connection;
  9635. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9636. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9637. private bool _clearBeforeFill;
  9638. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9639. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9640. public фильтр_очная_форма_обученияTableAdapter() {
  9641. this.ClearBeforeFill = true;
  9642. }
  9643. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9644. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9645. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9646. get {
  9647. if ((this._adapter == null)) {
  9648. this.InitAdapter();
  9649. }
  9650. return this._adapter;
  9651. }
  9652. }
  9653. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9654. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9655. internal global::System.Data.SqlClient.SqlConnection Connection {
  9656. get {
  9657. if ((this._connection == null)) {
  9658. this.InitConnection();
  9659. }
  9660. return this._connection;
  9661. }
  9662. set {
  9663. this._connection = value;
  9664. if ((this.Adapter.InsertCommand != null)) {
  9665. this.Adapter.InsertCommand.Connection = value;
  9666. }
  9667. if ((this.Adapter.DeleteCommand != null)) {
  9668. this.Adapter.DeleteCommand.Connection = value;
  9669. }
  9670. if ((this.Adapter.UpdateCommand != null)) {
  9671. this.Adapter.UpdateCommand.Connection = value;
  9672. }
  9673. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9674. if ((this.CommandCollection[i] != null)) {
  9675. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9676. }
  9677. }
  9678. }
  9679. }
  9680. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9681. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9682. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9683. get {
  9684. return this._transaction;
  9685. }
  9686. set {
  9687. this._transaction = value;
  9688. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9689. this.CommandCollection[i].Transaction = this._transaction;
  9690. }
  9691. if (((this.Adapter != null)
  9692. && (this.Adapter.DeleteCommand != null))) {
  9693. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9694. }
  9695. if (((this.Adapter != null)
  9696. && (this.Adapter.InsertCommand != null))) {
  9697. this.Adapter.InsertCommand.Transaction = this._transaction;
  9698. }
  9699. if (((this.Adapter != null)
  9700. && (this.Adapter.UpdateCommand != null))) {
  9701. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9702. }
  9703. }
  9704. }
  9705. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9706. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9707. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9708. get {
  9709. if ((this._commandCollection == null)) {
  9710. this.InitCommandCollection();
  9711. }
  9712. return this._commandCollection;
  9713. }
  9714. }
  9715. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9716. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9717. public bool ClearBeforeFill {
  9718. get {
  9719. return this._clearBeforeFill;
  9720. }
  9721. set {
  9722. this._clearBeforeFill = value;
  9723. }
  9724. }
  9725. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9726. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9727. private void InitAdapter() {
  9728. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9729. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9730. tableMapping.SourceTable = "Table";
  9731. tableMapping.DataSetTable = "фильтр очная форма обучения";
  9732. tableMapping.ColumnMappings.Add("описание специальности", "описание специальности");
  9733. tableMapping.ColumnMappings.Add("наименование специальности", "наименование специальности");
  9734. tableMapping.ColumnMappings.Add("Курс", "Курс");
  9735. tableMapping.ColumnMappings.Add("Номер зачетки", "Номер зачетки");
  9736. tableMapping.ColumnMappings.Add("Очная форма обучения", "Очная форма обучения");
  9737. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9738. tableMapping.ColumnMappings.Add("Группа", "Группа");
  9739. tableMapping.ColumnMappings.Add("Телефон", "Телефон");
  9740. tableMapping.ColumnMappings.Add("Адрес", "Адрес");
  9741. tableMapping.ColumnMappings.Add("Паспортные данные", "Паспортные данные");
  9742. tableMapping.ColumnMappings.Add("Родители", "Родители");
  9743. tableMapping.ColumnMappings.Add("Пол", "Пол");
  9744. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9745. tableMapping.ColumnMappings.Add("Expr1", "Expr1");
  9746. this._adapter.TableMappings.Add(tableMapping);
  9747. }
  9748. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9749. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9750. private void InitConnection() {
  9751. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9752. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  9753. }
  9754. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9755. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9756. private void InitCommandCollection() {
  9757. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9758. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9759. this._commandCollection[0].Connection = this.Connection;
  9760. this._commandCollection[0].CommandText = "SELECT [описание специальности], [наименование специальности], Курс, [Номер зачет" +
  9761. "ки], [Очная форма обучения], [Дата рождения], Группа, Телефон, Адрес, [Паспортны" +
  9762. "е данные], Родители, Пол, ФИО, Expr1 FROM dbo.[фильтр очная форма обучения]";
  9763. this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
  9764. }
  9765. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9766. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9767. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9768. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9769. public virtual int Fill(IS31KiselevStudDataSet.фильтр_очная_форма_обученияDataTable dataTable) {
  9770. this.Adapter.SelectCommand = this.CommandCollection[0];
  9771. if ((this.ClearBeforeFill == true)) {
  9772. dataTable.Clear();
  9773. }
  9774. int returnValue = this.Adapter.Fill(dataTable);
  9775. return returnValue;
  9776. }
  9777. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9778. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9779. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9780. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9781. public virtual IS31KiselevStudDataSet.фильтр_очная_форма_обученияDataTable GetData() {
  9782. this.Adapter.SelectCommand = this.CommandCollection[0];
  9783. IS31KiselevStudDataSet.фильтр_очная_форма_обученияDataTable dataTable = new IS31KiselevStudDataSet.фильтр_очная_форма_обученияDataTable();
  9784. this.Adapter.Fill(dataTable);
  9785. return dataTable;
  9786. }
  9787. }
  9788. /// <summary>
  9789. ///Represents the connection and commands used to retrieve and save data.
  9790. ///</summary>
  9791. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9792. [global::System.ComponentModel.ToolboxItem(true)]
  9793. [global::System.ComponentModel.DataObjectAttribute(true)]
  9794. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9795. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9796. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9797. public partial class Отображение_студентов_по_возрастуTableAdapter : global::System.ComponentModel.Component {
  9798. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9799. private global::System.Data.SqlClient.SqlConnection _connection;
  9800. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9801. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9802. private bool _clearBeforeFill;
  9803. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9804. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9805. public Отображение_студентов_по_возрастуTableAdapter() {
  9806. this.ClearBeforeFill = true;
  9807. }
  9808. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9809. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9810. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9811. get {
  9812. if ((this._adapter == null)) {
  9813. this.InitAdapter();
  9814. }
  9815. return this._adapter;
  9816. }
  9817. }
  9818. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9819. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9820. internal global::System.Data.SqlClient.SqlConnection Connection {
  9821. get {
  9822. if ((this._connection == null)) {
  9823. this.InitConnection();
  9824. }
  9825. return this._connection;
  9826. }
  9827. set {
  9828. this._connection = value;
  9829. if ((this.Adapter.InsertCommand != null)) {
  9830. this.Adapter.InsertCommand.Connection = value;
  9831. }
  9832. if ((this.Adapter.DeleteCommand != null)) {
  9833. this.Adapter.DeleteCommand.Connection = value;
  9834. }
  9835. if ((this.Adapter.UpdateCommand != null)) {
  9836. this.Adapter.UpdateCommand.Connection = value;
  9837. }
  9838. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9839. if ((this.CommandCollection[i] != null)) {
  9840. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  9841. }
  9842. }
  9843. }
  9844. }
  9845. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9846. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9847. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  9848. get {
  9849. return this._transaction;
  9850. }
  9851. set {
  9852. this._transaction = value;
  9853. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  9854. this.CommandCollection[i].Transaction = this._transaction;
  9855. }
  9856. if (((this.Adapter != null)
  9857. && (this.Adapter.DeleteCommand != null))) {
  9858. this.Adapter.DeleteCommand.Transaction = this._transaction;
  9859. }
  9860. if (((this.Adapter != null)
  9861. && (this.Adapter.InsertCommand != null))) {
  9862. this.Adapter.InsertCommand.Transaction = this._transaction;
  9863. }
  9864. if (((this.Adapter != null)
  9865. && (this.Adapter.UpdateCommand != null))) {
  9866. this.Adapter.UpdateCommand.Transaction = this._transaction;
  9867. }
  9868. }
  9869. }
  9870. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9871. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9872. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  9873. get {
  9874. if ((this._commandCollection == null)) {
  9875. this.InitCommandCollection();
  9876. }
  9877. return this._commandCollection;
  9878. }
  9879. }
  9880. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9881. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9882. public bool ClearBeforeFill {
  9883. get {
  9884. return this._clearBeforeFill;
  9885. }
  9886. set {
  9887. this._clearBeforeFill = value;
  9888. }
  9889. }
  9890. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9891. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9892. private void InitAdapter() {
  9893. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  9894. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  9895. tableMapping.SourceTable = "Table";
  9896. tableMapping.DataSetTable = "Отображение студентов по возрасту";
  9897. tableMapping.ColumnMappings.Add("ФИО", "ФИО");
  9898. tableMapping.ColumnMappings.Add("Дата рождения", "Дата рождения");
  9899. tableMapping.ColumnMappings.Add("Возраст", "Возраст");
  9900. this._adapter.TableMappings.Add(tableMapping);
  9901. }
  9902. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9903. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9904. private void InitConnection() {
  9905. this._connection = new global::System.Data.SqlClient.SqlConnection();
  9906. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  9907. }
  9908. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9909. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9910. private void InitCommandCollection() {
  9911. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  9912. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  9913. this._commandCollection[0].Connection = this.Connection;
  9914. this._commandCollection[0].CommandText = "dbo.[Отображение студентов по возрасту]";
  9915. this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
  9916. 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, "", "", ""));
  9917. 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, "", "", ""));
  9918. }
  9919. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9920. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9921. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9922. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  9923. public virtual int Fill(IS31KiselevStudDataSet.Отображение_студентов_по_возрастуDataTable dataTable, global::System.Nullable<int> Age) {
  9924. this.Adapter.SelectCommand = this.CommandCollection[0];
  9925. if ((Age.HasValue == true)) {
  9926. this.Adapter.SelectCommand.Parameters[1].Value = ((int)(Age.Value));
  9927. }
  9928. else {
  9929. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  9930. }
  9931. if ((this.ClearBeforeFill == true)) {
  9932. dataTable.Clear();
  9933. }
  9934. int returnValue = this.Adapter.Fill(dataTable);
  9935. return returnValue;
  9936. }
  9937. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9938. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9939. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9940. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  9941. public virtual IS31KiselevStudDataSet.Отображение_студентов_по_возрастуDataTable GetData(global::System.Nullable<int> Age) {
  9942. this.Adapter.SelectCommand = this.CommandCollection[0];
  9943. if ((Age.HasValue == true)) {
  9944. this.Adapter.SelectCommand.Parameters[1].Value = ((int)(Age.Value));
  9945. }
  9946. else {
  9947. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  9948. }
  9949. IS31KiselevStudDataSet.Отображение_студентов_по_возрастуDataTable dataTable = new IS31KiselevStudDataSet.Отображение_студентов_по_возрастуDataTable();
  9950. this.Adapter.Fill(dataTable);
  9951. return dataTable;
  9952. }
  9953. }
  9954. /// <summary>
  9955. ///Represents the connection and commands used to retrieve and save data.
  9956. ///</summary>
  9957. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  9958. [global::System.ComponentModel.ToolboxItem(true)]
  9959. [global::System.ComponentModel.DataObjectAttribute(true)]
  9960. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
  9961. ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  9962. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  9963. public partial class Отображение_студентов_по_среднему_баллуTableAdapter : global::System.ComponentModel.Component {
  9964. private global::System.Data.SqlClient.SqlDataAdapter _adapter;
  9965. private global::System.Data.SqlClient.SqlConnection _connection;
  9966. private global::System.Data.SqlClient.SqlTransaction _transaction;
  9967. private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
  9968. private bool _clearBeforeFill;
  9969. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9970. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9971. public Отображение_студентов_по_среднему_баллуTableAdapter() {
  9972. this.ClearBeforeFill = true;
  9973. }
  9974. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9975. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9976. protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
  9977. get {
  9978. if ((this._adapter == null)) {
  9979. this.InitAdapter();
  9980. }
  9981. return this._adapter;
  9982. }
  9983. }
  9984. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  9985. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  9986. internal global::System.Data.SqlClient.SqlConnection Connection {
  9987. get {
  9988. if ((this._connection == null)) {
  9989. this.InitConnection();
  9990. }
  9991. return this._connection;
  9992. }
  9993. set {
  9994. this._connection = value;
  9995. if ((this.Adapter.InsertCommand != null)) {
  9996. this.Adapter.InsertCommand.Connection = value;
  9997. }
  9998. if ((this.Adapter.DeleteCommand != null)) {
  9999. this.Adapter.DeleteCommand.Connection = value;
  10000. }
  10001. if ((this.Adapter.UpdateCommand != null)) {
  10002. this.Adapter.UpdateCommand.Connection = value;
  10003. }
  10004. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10005. if ((this.CommandCollection[i] != null)) {
  10006. ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
  10007. }
  10008. }
  10009. }
  10010. }
  10011. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10012. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10013. internal global::System.Data.SqlClient.SqlTransaction Transaction {
  10014. get {
  10015. return this._transaction;
  10016. }
  10017. set {
  10018. this._transaction = value;
  10019. for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
  10020. this.CommandCollection[i].Transaction = this._transaction;
  10021. }
  10022. if (((this.Adapter != null)
  10023. && (this.Adapter.DeleteCommand != null))) {
  10024. this.Adapter.DeleteCommand.Transaction = this._transaction;
  10025. }
  10026. if (((this.Adapter != null)
  10027. && (this.Adapter.InsertCommand != null))) {
  10028. this.Adapter.InsertCommand.Transaction = this._transaction;
  10029. }
  10030. if (((this.Adapter != null)
  10031. && (this.Adapter.UpdateCommand != null))) {
  10032. this.Adapter.UpdateCommand.Transaction = this._transaction;
  10033. }
  10034. }
  10035. }
  10036. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10037. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10038. protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
  10039. get {
  10040. if ((this._commandCollection == null)) {
  10041. this.InitCommandCollection();
  10042. }
  10043. return this._commandCollection;
  10044. }
  10045. }
  10046. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10047. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10048. public bool ClearBeforeFill {
  10049. get {
  10050. return this._clearBeforeFill;
  10051. }
  10052. set {
  10053. this._clearBeforeFill = value;
  10054. }
  10055. }
  10056. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10057. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10058. private void InitAdapter() {
  10059. this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
  10060. global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
  10061. tableMapping.SourceTable = "Table";
  10062. tableMapping.DataSetTable = "Отображение студентов по среднему баллу";
  10063. tableMapping.ColumnMappings.Add("фио студента", "фио студента");
  10064. tableMapping.ColumnMappings.Add("оценка первого экзамена", "оценка первого экзамена");
  10065. tableMapping.ColumnMappings.Add("оценка второго экзамена", "оценка второго экзамена");
  10066. tableMapping.ColumnMappings.Add("оценка третьего экзамена", "оценка третьего экзамена");
  10067. tableMapping.ColumnMappings.Add("дата третьего экзамена", "дата третьего экзамена");
  10068. tableMapping.ColumnMappings.Add("дата второго экзамена", "дата второго экзамена");
  10069. tableMapping.ColumnMappings.Add("дата первого экзамена", "дата первого экзамена");
  10070. tableMapping.ColumnMappings.Add("средний балл студента за сессию", "средний балл студента за сессию");
  10071. tableMapping.ColumnMappings.Add("наименование предмета первого экзамена", "наименование предмета первого экзамена");
  10072. tableMapping.ColumnMappings.Add("наименование предмета третьего экзамена", "наименование предмета третьего экзамена");
  10073. tableMapping.ColumnMappings.Add("наименование предмета второго экзамена", "наименование предмета второго экзамена");
  10074. this._adapter.TableMappings.Add(tableMapping);
  10075. }
  10076. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10077. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10078. private void InitConnection() {
  10079. this._connection = new global::System.Data.SqlClient.SqlConnection();
  10080. this._connection.ConnectionString = global::IS31BorovikAleksandrStudents.Properties.Settings.Default.IS31KiselevStudConnectionString;
  10081. }
  10082. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10083. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10084. private void InitCommandCollection() {
  10085. this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
  10086. this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
  10087. this._commandCollection[0].Connection = this.Connection;
  10088. this._commandCollection[0].CommandText = "dbo.[Отображение студентов по среднему баллу]";
  10089. this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
  10090. 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, "", "", ""));
  10091. 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, "", "", ""));
  10092. }
  10093. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10094. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10095. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10096. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
  10097. public virtual int Fill(IS31KiselevStudDataSet.Отображение_студентов_по_среднему_баллуDataTable dataTable, global::System.Nullable<float> Grade) {
  10098. this.Adapter.SelectCommand = this.CommandCollection[0];
  10099. if ((Grade.HasValue == true)) {
  10100. this.Adapter.SelectCommand.Parameters[1].Value = ((float)(Grade.Value));
  10101. }
  10102. else {
  10103. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10104. }
  10105. if ((this.ClearBeforeFill == true)) {
  10106. dataTable.Clear();
  10107. }
  10108. int returnValue = this.Adapter.Fill(dataTable);
  10109. return returnValue;
  10110. }
  10111. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10112. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10113. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
  10114. [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
  10115. public virtual IS31KiselevStudDataSet.Отображение_студентов_по_среднему_баллуDataTable GetData(global::System.Nullable<float> Grade) {
  10116. this.Adapter.SelectCommand = this.CommandCollection[0];
  10117. if ((Grade.HasValue == true)) {
  10118. this.Adapter.SelectCommand.Parameters[1].Value = ((float)(Grade.Value));
  10119. }
  10120. else {
  10121. this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
  10122. }
  10123. IS31KiselevStudDataSet.Отображение_студентов_по_среднему_баллуDataTable dataTable = new IS31KiselevStudDataSet.Отображение_студентов_по_среднему_баллуDataTable();
  10124. this.Adapter.Fill(dataTable);
  10125. return dataTable;
  10126. }
  10127. }
  10128. /// <summary>
  10129. ///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
  10130. ///</summary>
  10131. [global::System.ComponentModel.DesignerCategoryAttribute("code")]
  10132. [global::System.ComponentModel.ToolboxItem(true)]
  10133. [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerDesigner, Microsoft.VSD" +
  10134. "esigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
  10135. [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapterManager")]
  10136. public partial class TableAdapterManager : global::System.ComponentModel.Component {
  10137. private UpdateOrderOption _updateOrder;
  10138. private OcenkaTableAdapter _ocenkaTableAdapter;
  10139. private PredmetTableAdapter _predmetTableAdapter;
  10140. private specTableAdapter _specTableAdapter;
  10141. private StudentsTableAdapter _studentsTableAdapter;
  10142. private bool _backupDataSetBeforeUpdate;
  10143. private global::System.Data.IDbConnection _connection;
  10144. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10145. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10146. public UpdateOrderOption UpdateOrder {
  10147. get {
  10148. return this._updateOrder;
  10149. }
  10150. set {
  10151. this._updateOrder = value;
  10152. }
  10153. }
  10154. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10155. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10156. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10157. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10158. "a", "System.Drawing.Design.UITypeEditor")]
  10159. public OcenkaTableAdapter OcenkaTableAdapter {
  10160. get {
  10161. return this._ocenkaTableAdapter;
  10162. }
  10163. set {
  10164. this._ocenkaTableAdapter = value;
  10165. }
  10166. }
  10167. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10168. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10169. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10170. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10171. "a", "System.Drawing.Design.UITypeEditor")]
  10172. public PredmetTableAdapter PredmetTableAdapter {
  10173. get {
  10174. return this._predmetTableAdapter;
  10175. }
  10176. set {
  10177. this._predmetTableAdapter = value;
  10178. }
  10179. }
  10180. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10181. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10182. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10183. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10184. "a", "System.Drawing.Design.UITypeEditor")]
  10185. public specTableAdapter specTableAdapter {
  10186. get {
  10187. return this._specTableAdapter;
  10188. }
  10189. set {
  10190. this._specTableAdapter = value;
  10191. }
  10192. }
  10193. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10194. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10195. [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" +
  10196. "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" +
  10197. "a", "System.Drawing.Design.UITypeEditor")]
  10198. public StudentsTableAdapter StudentsTableAdapter {
  10199. get {
  10200. return this._studentsTableAdapter;
  10201. }
  10202. set {
  10203. this._studentsTableAdapter = value;
  10204. }
  10205. }
  10206. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10207. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10208. public bool BackupDataSetBeforeUpdate {
  10209. get {
  10210. return this._backupDataSetBeforeUpdate;
  10211. }
  10212. set {
  10213. this._backupDataSetBeforeUpdate = value;
  10214. }
  10215. }
  10216. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10217. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10218. [global::System.ComponentModel.Browsable(false)]
  10219. public global::System.Data.IDbConnection Connection {
  10220. get {
  10221. if ((this._connection != null)) {
  10222. return this._connection;
  10223. }
  10224. if (((this._ocenkaTableAdapter != null)
  10225. && (this._ocenkaTableAdapter.Connection != null))) {
  10226. return this._ocenkaTableAdapter.Connection;
  10227. }
  10228. if (((this._predmetTableAdapter != null)
  10229. && (this._predmetTableAdapter.Connection != null))) {
  10230. return this._predmetTableAdapter.Connection;
  10231. }
  10232. if (((this._specTableAdapter != null)
  10233. && (this._specTableAdapter.Connection != null))) {
  10234. return this._specTableAdapter.Connection;
  10235. }
  10236. if (((this._studentsTableAdapter != null)
  10237. && (this._studentsTableAdapter.Connection != null))) {
  10238. return this._studentsTableAdapter.Connection;
  10239. }
  10240. return null;
  10241. }
  10242. set {
  10243. this._connection = value;
  10244. }
  10245. }
  10246. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10247. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10248. [global::System.ComponentModel.Browsable(false)]
  10249. public int TableAdapterInstanceCount {
  10250. get {
  10251. int count = 0;
  10252. if ((this._ocenkaTableAdapter != null)) {
  10253. count = (count + 1);
  10254. }
  10255. if ((this._predmetTableAdapter != null)) {
  10256. count = (count + 1);
  10257. }
  10258. if ((this._specTableAdapter != null)) {
  10259. count = (count + 1);
  10260. }
  10261. if ((this._studentsTableAdapter != null)) {
  10262. count = (count + 1);
  10263. }
  10264. return count;
  10265. }
  10266. }
  10267. /// <summary>
  10268. ///Update rows in top-down order.
  10269. ///</summary>
  10270. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10271. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10272. private int UpdateUpdatedRows(IS31KiselevStudDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  10273. int result = 0;
  10274. if ((this._ocenkaTableAdapter != null)) {
  10275. global::System.Data.DataRow[] updatedRows = dataSet.Ocenka.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10276. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10277. if (((updatedRows != null)
  10278. && (0 < updatedRows.Length))) {
  10279. result = (result + this._ocenkaTableAdapter.Update(updatedRows));
  10280. allChangedRows.AddRange(updatedRows);
  10281. }
  10282. }
  10283. if ((this._predmetTableAdapter != null)) {
  10284. global::System.Data.DataRow[] updatedRows = dataSet.Predmet.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10285. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10286. if (((updatedRows != null)
  10287. && (0 < updatedRows.Length))) {
  10288. result = (result + this._predmetTableAdapter.Update(updatedRows));
  10289. allChangedRows.AddRange(updatedRows);
  10290. }
  10291. }
  10292. if ((this._specTableAdapter != null)) {
  10293. global::System.Data.DataRow[] updatedRows = dataSet.spec.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10294. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10295. if (((updatedRows != null)
  10296. && (0 < updatedRows.Length))) {
  10297. result = (result + this._specTableAdapter.Update(updatedRows));
  10298. allChangedRows.AddRange(updatedRows);
  10299. }
  10300. }
  10301. if ((this._studentsTableAdapter != null)) {
  10302. global::System.Data.DataRow[] updatedRows = dataSet.Students.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
  10303. updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
  10304. if (((updatedRows != null)
  10305. && (0 < updatedRows.Length))) {
  10306. result = (result + this._studentsTableAdapter.Update(updatedRows));
  10307. allChangedRows.AddRange(updatedRows);
  10308. }
  10309. }
  10310. return result;
  10311. }
  10312. /// <summary>
  10313. ///Insert rows in top-down order.
  10314. ///</summary>
  10315. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10316. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10317. private int UpdateInsertedRows(IS31KiselevStudDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  10318. int result = 0;
  10319. if ((this._ocenkaTableAdapter != null)) {
  10320. global::System.Data.DataRow[] addedRows = dataSet.Ocenka.Select(null, null, global::System.Data.DataViewRowState.Added);
  10321. if (((addedRows != null)
  10322. && (0 < addedRows.Length))) {
  10323. result = (result + this._ocenkaTableAdapter.Update(addedRows));
  10324. allAddedRows.AddRange(addedRows);
  10325. }
  10326. }
  10327. if ((this._predmetTableAdapter != null)) {
  10328. global::System.Data.DataRow[] addedRows = dataSet.Predmet.Select(null, null, global::System.Data.DataViewRowState.Added);
  10329. if (((addedRows != null)
  10330. && (0 < addedRows.Length))) {
  10331. result = (result + this._predmetTableAdapter.Update(addedRows));
  10332. allAddedRows.AddRange(addedRows);
  10333. }
  10334. }
  10335. if ((this._specTableAdapter != null)) {
  10336. global::System.Data.DataRow[] addedRows = dataSet.spec.Select(null, null, global::System.Data.DataViewRowState.Added);
  10337. if (((addedRows != null)
  10338. && (0 < addedRows.Length))) {
  10339. result = (result + this._specTableAdapter.Update(addedRows));
  10340. allAddedRows.AddRange(addedRows);
  10341. }
  10342. }
  10343. if ((this._studentsTableAdapter != null)) {
  10344. global::System.Data.DataRow[] addedRows = dataSet.Students.Select(null, null, global::System.Data.DataViewRowState.Added);
  10345. if (((addedRows != null)
  10346. && (0 < addedRows.Length))) {
  10347. result = (result + this._studentsTableAdapter.Update(addedRows));
  10348. allAddedRows.AddRange(addedRows);
  10349. }
  10350. }
  10351. return result;
  10352. }
  10353. /// <summary>
  10354. ///Delete rows in bottom-up order.
  10355. ///</summary>
  10356. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10357. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10358. private int UpdateDeletedRows(IS31KiselevStudDataSet dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
  10359. int result = 0;
  10360. if ((this._studentsTableAdapter != null)) {
  10361. global::System.Data.DataRow[] deletedRows = dataSet.Students.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  10362. if (((deletedRows != null)
  10363. && (0 < deletedRows.Length))) {
  10364. result = (result + this._studentsTableAdapter.Update(deletedRows));
  10365. allChangedRows.AddRange(deletedRows);
  10366. }
  10367. }
  10368. if ((this._specTableAdapter != null)) {
  10369. global::System.Data.DataRow[] deletedRows = dataSet.spec.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  10370. if (((deletedRows != null)
  10371. && (0 < deletedRows.Length))) {
  10372. result = (result + this._specTableAdapter.Update(deletedRows));
  10373. allChangedRows.AddRange(deletedRows);
  10374. }
  10375. }
  10376. if ((this._predmetTableAdapter != null)) {
  10377. global::System.Data.DataRow[] deletedRows = dataSet.Predmet.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  10378. if (((deletedRows != null)
  10379. && (0 < deletedRows.Length))) {
  10380. result = (result + this._predmetTableAdapter.Update(deletedRows));
  10381. allChangedRows.AddRange(deletedRows);
  10382. }
  10383. }
  10384. if ((this._ocenkaTableAdapter != null)) {
  10385. global::System.Data.DataRow[] deletedRows = dataSet.Ocenka.Select(null, null, global::System.Data.DataViewRowState.Deleted);
  10386. if (((deletedRows != null)
  10387. && (0 < deletedRows.Length))) {
  10388. result = (result + this._ocenkaTableAdapter.Update(deletedRows));
  10389. allChangedRows.AddRange(deletedRows);
  10390. }
  10391. }
  10392. return result;
  10393. }
  10394. /// <summary>
  10395. ///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
  10396. ///</summary>
  10397. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10398. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10399. private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
  10400. if (((updatedRows == null)
  10401. || (updatedRows.Length < 1))) {
  10402. return updatedRows;
  10403. }
  10404. if (((allAddedRows == null)
  10405. || (allAddedRows.Count < 1))) {
  10406. return updatedRows;
  10407. }
  10408. global::System.Collections.Generic.List<global::System.Data.DataRow> realUpdatedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  10409. for (int i = 0; (i < updatedRows.Length); i = (i + 1)) {
  10410. global::System.Data.DataRow row = updatedRows[i];
  10411. if ((allAddedRows.Contains(row) == false)) {
  10412. realUpdatedRows.Add(row);
  10413. }
  10414. }
  10415. return realUpdatedRows.ToArray();
  10416. }
  10417. /// <summary>
  10418. ///Update all changes to the dataset.
  10419. ///</summary>
  10420. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10421. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10422. public virtual int UpdateAll(IS31KiselevStudDataSet dataSet) {
  10423. if ((dataSet == null)) {
  10424. throw new global::System.ArgumentNullException("dataSet");
  10425. }
  10426. if ((dataSet.HasChanges() == false)) {
  10427. return 0;
  10428. }
  10429. if (((this._ocenkaTableAdapter != null)
  10430. && (this.MatchTableAdapterConnection(this._ocenkaTableAdapter.Connection) == false))) {
  10431. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  10432. "r, должны использовать одинаковую строку подключения.");
  10433. }
  10434. if (((this._predmetTableAdapter != null)
  10435. && (this.MatchTableAdapterConnection(this._predmetTableAdapter.Connection) == false))) {
  10436. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  10437. "r, должны использовать одинаковую строку подключения.");
  10438. }
  10439. if (((this._specTableAdapter != null)
  10440. && (this.MatchTableAdapterConnection(this._specTableAdapter.Connection) == false))) {
  10441. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  10442. "r, должны использовать одинаковую строку подключения.");
  10443. }
  10444. if (((this._studentsTableAdapter != null)
  10445. && (this.MatchTableAdapterConnection(this._studentsTableAdapter.Connection) == false))) {
  10446. throw new global::System.ArgumentException("Все адаптеры таблицы, управляемые диспетчером адаптера таблицы TableAdapterManage" +
  10447. "r, должны использовать одинаковую строку подключения.");
  10448. }
  10449. global::System.Data.IDbConnection workConnection = this.Connection;
  10450. if ((workConnection == null)) {
  10451. throw new global::System.ApplicationException("TableAdapterManager не содержит сведений о подключении. Укажите для каждого адапт" +
  10452. "ера таблицы TableAdapterManager допустимый экземпляр адаптера таблицы.");
  10453. }
  10454. bool workConnOpened = false;
  10455. if (((workConnection.State & global::System.Data.ConnectionState.Broken)
  10456. == global::System.Data.ConnectionState.Broken)) {
  10457. workConnection.Close();
  10458. }
  10459. if ((workConnection.State == global::System.Data.ConnectionState.Closed)) {
  10460. workConnection.Open();
  10461. workConnOpened = true;
  10462. }
  10463. global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction();
  10464. if ((workTransaction == null)) {
  10465. throw new global::System.ApplicationException("Не удается начать транзакцию. Текущее соединение данных не поддерживает транзакци" +
  10466. "и или текущее состояние не позволяет начать транзакцию.");
  10467. }
  10468. global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  10469. global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
  10470. global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter> adaptersWithAcceptChangesDuringUpdate = new global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter>();
  10471. global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection> revertConnections = new global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection>();
  10472. int result = 0;
  10473. global::System.Data.DataSet backupDataSet = null;
  10474. if (this.BackupDataSetBeforeUpdate) {
  10475. backupDataSet = new global::System.Data.DataSet();
  10476. backupDataSet.Merge(dataSet);
  10477. }
  10478. try {
  10479. // ---- Prepare for update -----------
  10480. //
  10481. if ((this._ocenkaTableAdapter != null)) {
  10482. revertConnections.Add(this._ocenkaTableAdapter, this._ocenkaTableAdapter.Connection);
  10483. this._ocenkaTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  10484. this._ocenkaTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  10485. if (this._ocenkaTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  10486. this._ocenkaTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  10487. adaptersWithAcceptChangesDuringUpdate.Add(this._ocenkaTableAdapter.Adapter);
  10488. }
  10489. }
  10490. if ((this._predmetTableAdapter != null)) {
  10491. revertConnections.Add(this._predmetTableAdapter, this._predmetTableAdapter.Connection);
  10492. this._predmetTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  10493. this._predmetTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  10494. if (this._predmetTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  10495. this._predmetTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  10496. adaptersWithAcceptChangesDuringUpdate.Add(this._predmetTableAdapter.Adapter);
  10497. }
  10498. }
  10499. if ((this._specTableAdapter != null)) {
  10500. revertConnections.Add(this._specTableAdapter, this._specTableAdapter.Connection);
  10501. this._specTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  10502. this._specTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  10503. if (this._specTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  10504. this._specTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  10505. adaptersWithAcceptChangesDuringUpdate.Add(this._specTableAdapter.Adapter);
  10506. }
  10507. }
  10508. if ((this._studentsTableAdapter != null)) {
  10509. revertConnections.Add(this._studentsTableAdapter, this._studentsTableAdapter.Connection);
  10510. this._studentsTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
  10511. this._studentsTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
  10512. if (this._studentsTableAdapter.Adapter.AcceptChangesDuringUpdate) {
  10513. this._studentsTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
  10514. adaptersWithAcceptChangesDuringUpdate.Add(this._studentsTableAdapter.Adapter);
  10515. }
  10516. }
  10517. //
  10518. //---- Perform updates -----------
  10519. //
  10520. if ((this.UpdateOrder == UpdateOrderOption.UpdateInsertDelete)) {
  10521. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  10522. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  10523. }
  10524. else {
  10525. result = (result + this.UpdateInsertedRows(dataSet, allAddedRows));
  10526. result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows));
  10527. }
  10528. result = (result + this.UpdateDeletedRows(dataSet, allChangedRows));
  10529. //
  10530. //---- Commit updates -----------
  10531. //
  10532. workTransaction.Commit();
  10533. if ((0 < allAddedRows.Count)) {
  10534. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  10535. allAddedRows.CopyTo(rows);
  10536. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  10537. global::System.Data.DataRow row = rows[i];
  10538. row.AcceptChanges();
  10539. }
  10540. }
  10541. if ((0 < allChangedRows.Count)) {
  10542. global::System.Data.DataRow[] rows = new System.Data.DataRow[allChangedRows.Count];
  10543. allChangedRows.CopyTo(rows);
  10544. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  10545. global::System.Data.DataRow row = rows[i];
  10546. row.AcceptChanges();
  10547. }
  10548. }
  10549. }
  10550. catch (global::System.Exception ex) {
  10551. workTransaction.Rollback();
  10552. // ---- Restore the dataset -----------
  10553. if (this.BackupDataSetBeforeUpdate) {
  10554. global::System.Diagnostics.Debug.Assert((backupDataSet != null));
  10555. dataSet.Clear();
  10556. dataSet.Merge(backupDataSet);
  10557. }
  10558. else {
  10559. if ((0 < allAddedRows.Count)) {
  10560. global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count];
  10561. allAddedRows.CopyTo(rows);
  10562. for (int i = 0; (i < rows.Length); i = (i + 1)) {
  10563. global::System.Data.DataRow row = rows[i];
  10564. row.AcceptChanges();
  10565. row.SetAdded();
  10566. }
  10567. }
  10568. }
  10569. throw ex;
  10570. }
  10571. finally {
  10572. if (workConnOpened) {
  10573. workConnection.Close();
  10574. }
  10575. if ((this._ocenkaTableAdapter != null)) {
  10576. this._ocenkaTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._ocenkaTableAdapter]));
  10577. this._ocenkaTableAdapter.Transaction = null;
  10578. }
  10579. if ((this._predmetTableAdapter != null)) {
  10580. this._predmetTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._predmetTableAdapter]));
  10581. this._predmetTableAdapter.Transaction = null;
  10582. }
  10583. if ((this._specTableAdapter != null)) {
  10584. this._specTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._specTableAdapter]));
  10585. this._specTableAdapter.Transaction = null;
  10586. }
  10587. if ((this._studentsTableAdapter != null)) {
  10588. this._studentsTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._studentsTableAdapter]));
  10589. this._studentsTableAdapter.Transaction = null;
  10590. }
  10591. if ((0 < adaptersWithAcceptChangesDuringUpdate.Count)) {
  10592. global::System.Data.Common.DataAdapter[] adapters = new System.Data.Common.DataAdapter[adaptersWithAcceptChangesDuringUpdate.Count];
  10593. adaptersWithAcceptChangesDuringUpdate.CopyTo(adapters);
  10594. for (int i = 0; (i < adapters.Length); i = (i + 1)) {
  10595. global::System.Data.Common.DataAdapter adapter = adapters[i];
  10596. adapter.AcceptChangesDuringUpdate = true;
  10597. }
  10598. }
  10599. }
  10600. return result;
  10601. }
  10602. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10603. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10604. protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
  10605. global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
  10606. }
  10607. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10608. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10609. protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) {
  10610. if ((this._connection != null)) {
  10611. return true;
  10612. }
  10613. if (((this.Connection == null)
  10614. || (inputConnection == null))) {
  10615. return true;
  10616. }
  10617. if (string.Equals(this.Connection.ConnectionString, inputConnection.ConnectionString, global::System.StringComparison.Ordinal)) {
  10618. return true;
  10619. }
  10620. return false;
  10621. }
  10622. /// <summary>
  10623. ///Update Order Option
  10624. ///</summary>
  10625. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10626. public enum UpdateOrderOption {
  10627. InsertUpdateDelete = 0,
  10628. UpdateInsertDelete = 1,
  10629. }
  10630. /// <summary>
  10631. ///Used to sort self-referenced table's rows
  10632. ///</summary>
  10633. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10634. private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
  10635. private global::System.Data.DataRelation _relation;
  10636. private int _childFirst;
  10637. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10638. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10639. internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) {
  10640. this._relation = relation;
  10641. if (childFirst) {
  10642. this._childFirst = -1;
  10643. }
  10644. else {
  10645. this._childFirst = 1;
  10646. }
  10647. }
  10648. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10649. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10650. private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) {
  10651. global::System.Diagnostics.Debug.Assert((row != null));
  10652. global::System.Data.DataRow root = row;
  10653. distance = 0;
  10654. 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>();
  10655. traversedRows[row] = row;
  10656. global::System.Data.DataRow parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  10657. for (
  10658. ; ((parent != null)
  10659. && (traversedRows.ContainsKey(parent) == false));
  10660. ) {
  10661. distance = (distance + 1);
  10662. root = parent;
  10663. traversedRows[parent] = parent;
  10664. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default);
  10665. }
  10666. if ((distance == 0)) {
  10667. traversedRows.Clear();
  10668. traversedRows[row] = row;
  10669. parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  10670. for (
  10671. ; ((parent != null)
  10672. && (traversedRows.ContainsKey(parent) == false));
  10673. ) {
  10674. distance = (distance + 1);
  10675. root = parent;
  10676. traversedRows[parent] = parent;
  10677. parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original);
  10678. }
  10679. }
  10680. return root;
  10681. }
  10682. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  10683. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
  10684. public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) {
  10685. if (object.ReferenceEquals(row1, row2)) {
  10686. return 0;
  10687. }
  10688. if ((row1 == null)) {
  10689. return -1;
  10690. }
  10691. if ((row2 == null)) {
  10692. return 1;
  10693. }
  10694. int distance1 = 0;
  10695. global::System.Data.DataRow root1 = this.GetRoot(row1, out distance1);
  10696. int distance2 = 0;
  10697. global::System.Data.DataRow root2 = this.GetRoot(row2, out distance2);
  10698. if (object.ReferenceEquals(root1, root2)) {
  10699. return (this._childFirst * distance1.CompareTo(distance2));
  10700. }
  10701. else {
  10702. global::System.Diagnostics.Debug.Assert(((root1.Table != null)
  10703. && (root2.Table != null)));
  10704. if ((root1.Table.Rows.IndexOf(root1) < root2.Table.Rows.IndexOf(root2))) {
  10705. return -1;
  10706. }
  10707. else {
  10708. return 1;
  10709. }
  10710. }
  10711. }
  10712. }
  10713. }
  10714. }
  10715. #pragma warning restore 1591