00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #pragma warning disable 1591
00015
00016 namespace Mcs.Epm.MicrosoftProject.mpFx.ResourcesWebService {
00017 using System.Diagnostics;
00018 using System.Web.Services;
00019 using System.ComponentModel;
00020 using System.Web.Services.Protocols;
00021 using System;
00022 using System.Xml.Serialization;
00023 using System.Data;
00024
00025
00026
00027 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
00028 [System.Diagnostics.DebuggerStepThroughAttribute()]
00029 [System.ComponentModel.DesignerCategoryAttribute("code")]
00030 [System.Web.Services.WebServiceBindingAttribute(Name="ResourceSoap", Namespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/")]
00031 public partial class Resource : System.Web.Services.Protocols.SoapHttpClientProtocol {
00032
00033 private System.Threading.SendOrPostCallback ReadResourcesOperationCompleted;
00034
00035 private System.Threading.SendOrPostCallback ReadResourceAvailabilityForGridOperationCompleted;
00036
00037 private System.Threading.SendOrPostCallback ReadResourceAssignmentsOperationCompleted;
00038
00039 private System.Threading.SendOrPostCallback GetResourceUidsOperationCompleted;
00040
00041 private System.Threading.SendOrPostCallback CreateResourcesOperationCompleted;
00042
00043 private System.Threading.SendOrPostCallback UpdateResourcesOperationCompleted;
00044
00045 private System.Threading.SendOrPostCallback DeleteResourcesOperationCompleted;
00046
00047 private System.Threading.SendOrPostCallback CheckOutResourcesOperationCompleted;
00048
00049 private System.Threading.SendOrPostCallback CheckInResourcesOperationCompleted;
00050
00051 private System.Threading.SendOrPostCallback ReadUserListOperationCompleted;
00052
00053 private System.Threading.SendOrPostCallback GetCurrentUserUidOperationCompleted;
00054
00055 private System.Threading.SendOrPostCallback ReadResourceAuthorizationOperationCompleted;
00056
00057 private System.Threading.SendOrPostCallback ReadResourceOperationCompleted;
00058
00059 private System.Threading.SendOrPostCallback SetResourceAuthorizationOperationCompleted;
00060
00061 private System.Threading.SendOrPostCallback ActivateResourcesOperationCompleted;
00062
00063 private System.Threading.SendOrPostCallback DeactivateResourcesOperationCompleted;
00064
00065 private bool useDefaultCredentialsSetExplicitly;
00066
00067
00068 public Resource() {
00069 this.Url = global::Mcs.Epm.MicrosoftProject.mpFx.Properties.Settings.Default.Mcs_Epm_ProjectServer_mpFx_ResourcesWebService_Resource;
00070 if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
00071 this.UseDefaultCredentials = true;
00072 this.useDefaultCredentialsSetExplicitly = false;
00073 }
00074 else {
00075 this.useDefaultCredentialsSetExplicitly = true;
00076 }
00077 }
00078
00079 public new string Url {
00080 get {
00081 return base.Url;
00082 }
00083 set {
00084 if ((((this.IsLocalFileSystemWebService(base.Url) == true)
00085 && (this.useDefaultCredentialsSetExplicitly == false))
00086 && (this.IsLocalFileSystemWebService(value) == false))) {
00087 base.UseDefaultCredentials = false;
00088 }
00089 base.Url = value;
00090 }
00091 }
00092
00093 public new bool UseDefaultCredentials {
00094 get {
00095 return base.UseDefaultCredentials;
00096 }
00097 set {
00098 base.UseDefaultCredentials = value;
00099 this.useDefaultCredentialsSetExplicitly = true;
00100 }
00101 }
00102
00103
00104 public event ReadResourcesCompletedEventHandler ReadResourcesCompleted;
00105
00106
00107 public event ReadResourceAvailabilityForGridCompletedEventHandler ReadResourceAvailabilityForGridCompleted;
00108
00109
00110 public event ReadResourceAssignmentsCompletedEventHandler ReadResourceAssignmentsCompleted;
00111
00112
00113 public event GetResourceUidsCompletedEventHandler GetResourceUidsCompleted;
00114
00115
00116 public event CreateResourcesCompletedEventHandler CreateResourcesCompleted;
00117
00118
00119 public event UpdateResourcesCompletedEventHandler UpdateResourcesCompleted;
00120
00121
00122 public event DeleteResourcesCompletedEventHandler DeleteResourcesCompleted;
00123
00124
00125 public event CheckOutResourcesCompletedEventHandler CheckOutResourcesCompleted;
00126
00127
00128 public event CheckInResourcesCompletedEventHandler CheckInResourcesCompleted;
00129
00130
00131 public event ReadUserListCompletedEventHandler ReadUserListCompleted;
00132
00133
00134 public event GetCurrentUserUidCompletedEventHandler GetCurrentUserUidCompleted;
00135
00136
00137 public event ReadResourceAuthorizationCompletedEventHandler ReadResourceAuthorizationCompleted;
00138
00139
00140 public event ReadResourceCompletedEventHandler ReadResourceCompleted;
00141
00142
00143 public event SetResourceAuthorizationCompletedEventHandler SetResourceAuthorizationCompleted;
00144
00145
00146 public event ActivateResourcesCompletedEventHandler ActivateResourcesCompleted;
00147
00148
00149 public event DeactivateResourcesCompletedEventHandler DeactivateResourcesCompleted;
00150
00151
00152 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ReadResou" +
00153 "rces", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00154 public ResourceDataSet ReadResources(string xmlFilter, bool autoCheckOut) {
00155 object[] results = this.Invoke("ReadResources", new object[] {
00156 xmlFilter,
00157 autoCheckOut});
00158 return ((ResourceDataSet)(results[0]));
00159 }
00160
00161
00162 public void ReadResourcesAsync(string xmlFilter, bool autoCheckOut) {
00163 this.ReadResourcesAsync(xmlFilter, autoCheckOut, null);
00164 }
00165
00166
00167 public void ReadResourcesAsync(string xmlFilter, bool autoCheckOut, object userState) {
00168 if ((this.ReadResourcesOperationCompleted == null)) {
00169 this.ReadResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReadResourcesOperationCompleted);
00170 }
00171 this.InvokeAsync("ReadResources", new object[] {
00172 xmlFilter,
00173 autoCheckOut}, this.ReadResourcesOperationCompleted, userState);
00174 }
00175
00176 private void OnReadResourcesOperationCompleted(object arg) {
00177 if ((this.ReadResourcesCompleted != null)) {
00178 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00179 this.ReadResourcesCompleted(this, new ReadResourcesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00180 }
00181 }
00182
00183
00184 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ReadResou" +
00185 "rceAvailabilityForGrid", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00186 public System.Data.DataSet ReadResourceAvailabilityForGrid(System.Guid[] resUIDs, System.DateTime startDate, System.DateTime endDate, short timeScale, bool includeProposedBookings) {
00187 object[] results = this.Invoke("ReadResourceAvailabilityForGrid", new object[] {
00188 resUIDs,
00189 startDate,
00190 endDate,
00191 timeScale,
00192 includeProposedBookings});
00193 return ((System.Data.DataSet)(results[0]));
00194 }
00195
00196
00197 public void ReadResourceAvailabilityForGridAsync(System.Guid[] resUIDs, System.DateTime startDate, System.DateTime endDate, short timeScale, bool includeProposedBookings) {
00198 this.ReadResourceAvailabilityForGridAsync(resUIDs, startDate, endDate, timeScale, includeProposedBookings, null);
00199 }
00200
00201
00202 public void ReadResourceAvailabilityForGridAsync(System.Guid[] resUIDs, System.DateTime startDate, System.DateTime endDate, short timeScale, bool includeProposedBookings, object userState) {
00203 if ((this.ReadResourceAvailabilityForGridOperationCompleted == null)) {
00204 this.ReadResourceAvailabilityForGridOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReadResourceAvailabilityForGridOperationCompleted);
00205 }
00206 this.InvokeAsync("ReadResourceAvailabilityForGrid", new object[] {
00207 resUIDs,
00208 startDate,
00209 endDate,
00210 timeScale,
00211 includeProposedBookings}, this.ReadResourceAvailabilityForGridOperationCompleted, userState);
00212 }
00213
00214 private void OnReadResourceAvailabilityForGridOperationCompleted(object arg) {
00215 if ((this.ReadResourceAvailabilityForGridCompleted != null)) {
00216 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00217 this.ReadResourceAvailabilityForGridCompleted(this, new ReadResourceAvailabilityForGridCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00218 }
00219 }
00220
00221
00222 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ReadResou" +
00223 "rceAssignments", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00224 public ResourceAssignmentDataSet ReadResourceAssignments(string filter) {
00225 object[] results = this.Invoke("ReadResourceAssignments", new object[] {
00226 filter});
00227 return ((ResourceAssignmentDataSet)(results[0]));
00228 }
00229
00230
00231 public void ReadResourceAssignmentsAsync(string filter) {
00232 this.ReadResourceAssignmentsAsync(filter, null);
00233 }
00234
00235
00236 public void ReadResourceAssignmentsAsync(string filter, object userState) {
00237 if ((this.ReadResourceAssignmentsOperationCompleted == null)) {
00238 this.ReadResourceAssignmentsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReadResourceAssignmentsOperationCompleted);
00239 }
00240 this.InvokeAsync("ReadResourceAssignments", new object[] {
00241 filter}, this.ReadResourceAssignmentsOperationCompleted, userState);
00242 }
00243
00244 private void OnReadResourceAssignmentsOperationCompleted(object arg) {
00245 if ((this.ReadResourceAssignmentsCompleted != null)) {
00246 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00247 this.ReadResourceAssignmentsCompleted(this, new ReadResourceAssignmentsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00248 }
00249 }
00250
00251
00252 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/GetResour" +
00253 "ceUids", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00254 public System.Guid[] GetResourceUids(int[] resIDs) {
00255 object[] results = this.Invoke("GetResourceUids", new object[] {
00256 resIDs});
00257 return ((System.Guid[])(results[0]));
00258 }
00259
00260
00261 public void GetResourceUidsAsync(int[] resIDs) {
00262 this.GetResourceUidsAsync(resIDs, null);
00263 }
00264
00265
00266 public void GetResourceUidsAsync(int[] resIDs, object userState) {
00267 if ((this.GetResourceUidsOperationCompleted == null)) {
00268 this.GetResourceUidsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetResourceUidsOperationCompleted);
00269 }
00270 this.InvokeAsync("GetResourceUids", new object[] {
00271 resIDs}, this.GetResourceUidsOperationCompleted, userState);
00272 }
00273
00274 private void OnGetResourceUidsOperationCompleted(object arg) {
00275 if ((this.GetResourceUidsCompleted != null)) {
00276 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00277 this.GetResourceUidsCompleted(this, new GetResourceUidsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00278 }
00279 }
00280
00281
00282 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/CreateRes" +
00283 "ources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00284 public ResourceDataSet CreateResources(ResourceDataSet rds, bool validateOnly, bool autoCheckIn) {
00285 object[] results = this.Invoke("CreateResources", new object[] {
00286 rds,
00287 validateOnly,
00288 autoCheckIn});
00289 return ((ResourceDataSet)(results[0]));
00290 }
00291
00292
00293 public void CreateResourcesAsync(ResourceDataSet rds, bool validateOnly, bool autoCheckIn) {
00294 this.CreateResourcesAsync(rds, validateOnly, autoCheckIn, null);
00295 }
00296
00297
00298 public void CreateResourcesAsync(ResourceDataSet rds, bool validateOnly, bool autoCheckIn, object userState) {
00299 if ((this.CreateResourcesOperationCompleted == null)) {
00300 this.CreateResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateResourcesOperationCompleted);
00301 }
00302 this.InvokeAsync("CreateResources", new object[] {
00303 rds,
00304 validateOnly,
00305 autoCheckIn}, this.CreateResourcesOperationCompleted, userState);
00306 }
00307
00308 private void OnCreateResourcesOperationCompleted(object arg) {
00309 if ((this.CreateResourcesCompleted != null)) {
00310 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00311 this.CreateResourcesCompleted(this, new CreateResourcesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00312 }
00313 }
00314
00315
00316 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/UpdateRes" +
00317 "ources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00318 public ResourceDataSet UpdateResources(ResourceDataSet rds, bool validateOnly, bool autoCheckIn) {
00319 object[] results = this.Invoke("UpdateResources", new object[] {
00320 rds,
00321 validateOnly,
00322 autoCheckIn});
00323 return ((ResourceDataSet)(results[0]));
00324 }
00325
00326
00327 public void UpdateResourcesAsync(ResourceDataSet rds, bool validateOnly, bool autoCheckIn) {
00328 this.UpdateResourcesAsync(rds, validateOnly, autoCheckIn, null);
00329 }
00330
00331
00332 public void UpdateResourcesAsync(ResourceDataSet rds, bool validateOnly, bool autoCheckIn, object userState) {
00333 if ((this.UpdateResourcesOperationCompleted == null)) {
00334 this.UpdateResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateResourcesOperationCompleted);
00335 }
00336 this.InvokeAsync("UpdateResources", new object[] {
00337 rds,
00338 validateOnly,
00339 autoCheckIn}, this.UpdateResourcesOperationCompleted, userState);
00340 }
00341
00342 private void OnUpdateResourcesOperationCompleted(object arg) {
00343 if ((this.UpdateResourcesCompleted != null)) {
00344 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00345 this.UpdateResourcesCompleted(this, new UpdateResourcesCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00346 }
00347 }
00348
00349
00350 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/DeleteRes" +
00351 "ources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00352 public void DeleteResources(System.Guid[] arrayRes, string deletionComment) {
00353 this.Invoke("DeleteResources", new object[] {
00354 arrayRes,
00355 deletionComment});
00356 }
00357
00358
00359 public void DeleteResourcesAsync(System.Guid[] arrayRes, string deletionComment) {
00360 this.DeleteResourcesAsync(arrayRes, deletionComment, null);
00361 }
00362
00363
00364 public void DeleteResourcesAsync(System.Guid[] arrayRes, string deletionComment, object userState) {
00365 if ((this.DeleteResourcesOperationCompleted == null)) {
00366 this.DeleteResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeleteResourcesOperationCompleted);
00367 }
00368 this.InvokeAsync("DeleteResources", new object[] {
00369 arrayRes,
00370 deletionComment}, this.DeleteResourcesOperationCompleted, userState);
00371 }
00372
00373 private void OnDeleteResourcesOperationCompleted(object arg) {
00374 if ((this.DeleteResourcesCompleted != null)) {
00375 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00376 this.DeleteResourcesCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00377 }
00378 }
00379
00380
00381 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/CheckOutR" +
00382 "esources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00383 public void CheckOutResources(System.Guid[] array) {
00384 this.Invoke("CheckOutResources", new object[] {
00385 array});
00386 }
00387
00388
00389 public void CheckOutResourcesAsync(System.Guid[] array) {
00390 this.CheckOutResourcesAsync(array, null);
00391 }
00392
00393
00394 public void CheckOutResourcesAsync(System.Guid[] array, object userState) {
00395 if ((this.CheckOutResourcesOperationCompleted == null)) {
00396 this.CheckOutResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckOutResourcesOperationCompleted);
00397 }
00398 this.InvokeAsync("CheckOutResources", new object[] {
00399 array}, this.CheckOutResourcesOperationCompleted, userState);
00400 }
00401
00402 private void OnCheckOutResourcesOperationCompleted(object arg) {
00403 if ((this.CheckOutResourcesCompleted != null)) {
00404 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00405 this.CheckOutResourcesCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00406 }
00407 }
00408
00409
00410 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/CheckInRe" +
00411 "sources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00412 public void CheckInResources(System.Guid[] array, bool force) {
00413 this.Invoke("CheckInResources", new object[] {
00414 array,
00415 force});
00416 }
00417
00418
00419 public void CheckInResourcesAsync(System.Guid[] array, bool force) {
00420 this.CheckInResourcesAsync(array, force, null);
00421 }
00422
00423
00424 public void CheckInResourcesAsync(System.Guid[] array, bool force, object userState) {
00425 if ((this.CheckInResourcesOperationCompleted == null)) {
00426 this.CheckInResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCheckInResourcesOperationCompleted);
00427 }
00428 this.InvokeAsync("CheckInResources", new object[] {
00429 array,
00430 force}, this.CheckInResourcesOperationCompleted, userState);
00431 }
00432
00433 private void OnCheckInResourcesOperationCompleted(object arg) {
00434 if ((this.CheckInResourcesCompleted != null)) {
00435 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00436 this.CheckInResourcesCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00437 }
00438 }
00439
00440
00441 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ReadUserL" +
00442 "ist", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00443 public ResourceDataSet ReadUserList(ResourceActiveFilter filter) {
00444 object[] results = this.Invoke("ReadUserList", new object[] {
00445 filter});
00446 return ((ResourceDataSet)(results[0]));
00447 }
00448
00449
00450 public void ReadUserListAsync(ResourceActiveFilter filter) {
00451 this.ReadUserListAsync(filter, null);
00452 }
00453
00454
00455 public void ReadUserListAsync(ResourceActiveFilter filter, object userState) {
00456 if ((this.ReadUserListOperationCompleted == null)) {
00457 this.ReadUserListOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReadUserListOperationCompleted);
00458 }
00459 this.InvokeAsync("ReadUserList", new object[] {
00460 filter}, this.ReadUserListOperationCompleted, userState);
00461 }
00462
00463 private void OnReadUserListOperationCompleted(object arg) {
00464 if ((this.ReadUserListCompleted != null)) {
00465 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00466 this.ReadUserListCompleted(this, new ReadUserListCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00467 }
00468 }
00469
00470
00471 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/GetCurren" +
00472 "tUserUid", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00473 public System.Guid GetCurrentUserUid() {
00474 object[] results = this.Invoke("GetCurrentUserUid", new object[0]);
00475 return ((System.Guid)(results[0]));
00476 }
00477
00478
00479 public void GetCurrentUserUidAsync() {
00480 this.GetCurrentUserUidAsync(null);
00481 }
00482
00483
00484 public void GetCurrentUserUidAsync(object userState) {
00485 if ((this.GetCurrentUserUidOperationCompleted == null)) {
00486 this.GetCurrentUserUidOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCurrentUserUidOperationCompleted);
00487 }
00488 this.InvokeAsync("GetCurrentUserUid", new object[0], this.GetCurrentUserUidOperationCompleted, userState);
00489 }
00490
00491 private void OnGetCurrentUserUidOperationCompleted(object arg) {
00492 if ((this.GetCurrentUserUidCompleted != null)) {
00493 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00494 this.GetCurrentUserUidCompleted(this, new GetCurrentUserUidCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00495 }
00496 }
00497
00498
00499 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ReadResou" +
00500 "rceAuthorization", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00501 public ResourceAuthorizationDataSet ReadResourceAuthorization(System.Guid resourceUid) {
00502 object[] results = this.Invoke("ReadResourceAuthorization", new object[] {
00503 resourceUid});
00504 return ((ResourceAuthorizationDataSet)(results[0]));
00505 }
00506
00507
00508 public void ReadResourceAuthorizationAsync(System.Guid resourceUid) {
00509 this.ReadResourceAuthorizationAsync(resourceUid, null);
00510 }
00511
00512
00513 public void ReadResourceAuthorizationAsync(System.Guid resourceUid, object userState) {
00514 if ((this.ReadResourceAuthorizationOperationCompleted == null)) {
00515 this.ReadResourceAuthorizationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReadResourceAuthorizationOperationCompleted);
00516 }
00517 this.InvokeAsync("ReadResourceAuthorization", new object[] {
00518 resourceUid}, this.ReadResourceAuthorizationOperationCompleted, userState);
00519 }
00520
00521 private void OnReadResourceAuthorizationOperationCompleted(object arg) {
00522 if ((this.ReadResourceAuthorizationCompleted != null)) {
00523 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00524 this.ReadResourceAuthorizationCompleted(this, new ReadResourceAuthorizationCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00525 }
00526 }
00527
00528
00529 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ReadResou" +
00530 "rce", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00531 public ResourceDataSet ReadResource(System.Guid resourceUid) {
00532 object[] results = this.Invoke("ReadResource", new object[] {
00533 resourceUid});
00534 return ((ResourceDataSet)(results[0]));
00535 }
00536
00537
00538 public void ReadResourceAsync(System.Guid resourceUid) {
00539 this.ReadResourceAsync(resourceUid, null);
00540 }
00541
00542
00543 public void ReadResourceAsync(System.Guid resourceUid, object userState) {
00544 if ((this.ReadResourceOperationCompleted == null)) {
00545 this.ReadResourceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReadResourceOperationCompleted);
00546 }
00547 this.InvokeAsync("ReadResource", new object[] {
00548 resourceUid}, this.ReadResourceOperationCompleted, userState);
00549 }
00550
00551 private void OnReadResourceOperationCompleted(object arg) {
00552 if ((this.ReadResourceCompleted != null)) {
00553 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00554 this.ReadResourceCompleted(this, new ReadResourceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00555 }
00556 }
00557
00558
00559 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/SetResour" +
00560 "ceAuthorization", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00561 public void SetResourceAuthorization(ResourceAuthorizationDataSet users) {
00562 this.Invoke("SetResourceAuthorization", new object[] {
00563 users});
00564 }
00565
00566
00567 public void SetResourceAuthorizationAsync(ResourceAuthorizationDataSet users) {
00568 this.SetResourceAuthorizationAsync(users, null);
00569 }
00570
00571
00572 public void SetResourceAuthorizationAsync(ResourceAuthorizationDataSet users, object userState) {
00573 if ((this.SetResourceAuthorizationOperationCompleted == null)) {
00574 this.SetResourceAuthorizationOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetResourceAuthorizationOperationCompleted);
00575 }
00576 this.InvokeAsync("SetResourceAuthorization", new object[] {
00577 users}, this.SetResourceAuthorizationOperationCompleted, userState);
00578 }
00579
00580 private void OnSetResourceAuthorizationOperationCompleted(object arg) {
00581 if ((this.SetResourceAuthorizationCompleted != null)) {
00582 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00583 this.SetResourceAuthorizationCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00584 }
00585 }
00586
00587
00588 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/ActivateR" +
00589 "esources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00590 public void ActivateResources(System.Guid[] resourceGuids, bool validateOnly) {
00591 this.Invoke("ActivateResources", new object[] {
00592 resourceGuids,
00593 validateOnly});
00594 }
00595
00596
00597 public void ActivateResourcesAsync(System.Guid[] resourceGuids, bool validateOnly) {
00598 this.ActivateResourcesAsync(resourceGuids, validateOnly, null);
00599 }
00600
00601
00602 public void ActivateResourcesAsync(System.Guid[] resourceGuids, bool validateOnly, object userState) {
00603 if ((this.ActivateResourcesOperationCompleted == null)) {
00604 this.ActivateResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnActivateResourcesOperationCompleted);
00605 }
00606 this.InvokeAsync("ActivateResources", new object[] {
00607 resourceGuids,
00608 validateOnly}, this.ActivateResourcesOperationCompleted, userState);
00609 }
00610
00611 private void OnActivateResourcesOperationCompleted(object arg) {
00612 if ((this.ActivateResourcesCompleted != null)) {
00613 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00614 this.ActivateResourcesCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00615 }
00616 }
00617
00618
00619 [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/office/project/server/webservices/Resource/Deactivat" +
00620 "eResources", RequestNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", ResponseNamespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
00621 public void DeactivateResources(System.Guid[] resourceGuids, bool validateOnly) {
00622 this.Invoke("DeactivateResources", new object[] {
00623 resourceGuids,
00624 validateOnly});
00625 }
00626
00627
00628 public void DeactivateResourcesAsync(System.Guid[] resourceGuids, bool validateOnly) {
00629 this.DeactivateResourcesAsync(resourceGuids, validateOnly, null);
00630 }
00631
00632
00633 public void DeactivateResourcesAsync(System.Guid[] resourceGuids, bool validateOnly, object userState) {
00634 if ((this.DeactivateResourcesOperationCompleted == null)) {
00635 this.DeactivateResourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDeactivateResourcesOperationCompleted);
00636 }
00637 this.InvokeAsync("DeactivateResources", new object[] {
00638 resourceGuids,
00639 validateOnly}, this.DeactivateResourcesOperationCompleted, userState);
00640 }
00641
00642 private void OnDeactivateResourcesOperationCompleted(object arg) {
00643 if ((this.DeactivateResourcesCompleted != null)) {
00644 System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
00645 this.DeactivateResourcesCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
00646 }
00647 }
00648
00649
00650 public new void CancelAsync(object userState) {
00651 base.CancelAsync(userState);
00652 }
00653
00654 private bool IsLocalFileSystemWebService(string url) {
00655 if (((url == null)
00656 || (url == string.Empty))) {
00657 return false;
00658 }
00659 System.Uri wsUri = new System.Uri(url);
00660 if (((wsUri.Port >= 1024)
00661 && (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
00662 return true;
00663 }
00664 return false;
00665 }
00666 }
00667
00668
00669
00670
00671
00672 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
00673 [global::System.Serializable()]
00674 [global::System.ComponentModel.DesignerCategoryAttribute("code")]
00675 [global::System.ComponentModel.ToolboxItem(true)]
00676 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
00677 [global::System.Xml.Serialization.XmlRootAttribute("ResourceDataSet")]
00678 [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
00679 public partial class ResourceDataSet : global::System.Data.DataSet {
00680
00681 private ResourcesDataTable tableResources;
00682
00683 private ResourceCustomFieldsDataTable tableResourceCustomFields;
00684
00685 private CalendarExceptionsDataTable tableCalendarExceptions;
00686
00687 private ResourceRatesDataTable tableResourceRates;
00688
00689 private ResourceAvailabilitiesDataTable tableResourceAvailabilities;
00690
00691 private global::System.Data.DataRelation relationResourcesResourceCustomFields;
00692
00693 private global::System.Data.DataRelation relationResourcesCalendarExceptions;
00694
00695 private global::System.Data.DataRelation relationResourcesResourceRates;
00696
00697 private global::System.Data.DataRelation relationResourcesResourceAvailabilities;
00698
00699 private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
00700
00701 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00702 public ResourceDataSet() {
00703 this.BeginInit();
00704 this.InitClass();
00705 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
00706 base.Tables.CollectionChanged += schemaChangedHandler;
00707 base.Relations.CollectionChanged += schemaChangedHandler;
00708 this.EndInit();
00709 }
00710
00711 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00712 protected ResourceDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
00713 base(info, context, false) {
00714 if ((this.IsBinarySerialized(info, context) == true)) {
00715 this.InitVars(false);
00716 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
00717 this.Tables.CollectionChanged += schemaChangedHandler1;
00718 this.Relations.CollectionChanged += schemaChangedHandler1;
00719 return;
00720 }
00721 string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
00722 if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
00723 global::System.Data.DataSet ds = new global::System.Data.DataSet();
00724 ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
00725 if ((ds.Tables["Resources"] != null)) {
00726 base.Tables.Add(new ResourcesDataTable(ds.Tables["Resources"]));
00727 }
00728 if ((ds.Tables["ResourceCustomFields"] != null)) {
00729 base.Tables.Add(new ResourceCustomFieldsDataTable(ds.Tables["ResourceCustomFields"]));
00730 }
00731 if ((ds.Tables["CalendarExceptions"] != null)) {
00732 base.Tables.Add(new CalendarExceptionsDataTable(ds.Tables["CalendarExceptions"]));
00733 }
00734 if ((ds.Tables["ResourceRates"] != null)) {
00735 base.Tables.Add(new ResourceRatesDataTable(ds.Tables["ResourceRates"]));
00736 }
00737 if ((ds.Tables["ResourceAvailabilities"] != null)) {
00738 base.Tables.Add(new ResourceAvailabilitiesDataTable(ds.Tables["ResourceAvailabilities"]));
00739 }
00740 this.DataSetName = ds.DataSetName;
00741 this.Prefix = ds.Prefix;
00742 this.Namespace = ds.Namespace;
00743 this.Locale = ds.Locale;
00744 this.CaseSensitive = ds.CaseSensitive;
00745 this.EnforceConstraints = ds.EnforceConstraints;
00746 this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
00747 this.InitVars();
00748 }
00749 else {
00750 this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
00751 }
00752 this.GetSerializationData(info, context);
00753 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
00754 base.Tables.CollectionChanged += schemaChangedHandler;
00755 this.Relations.CollectionChanged += schemaChangedHandler;
00756 }
00757
00758 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00759 [global::System.ComponentModel.Browsable(false)]
00760 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
00761 public ResourcesDataTable Resources {
00762 get {
00763 return this.tableResources;
00764 }
00765 }
00766
00767 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00768 [global::System.ComponentModel.Browsable(false)]
00769 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
00770 public ResourceCustomFieldsDataTable ResourceCustomFields {
00771 get {
00772 return this.tableResourceCustomFields;
00773 }
00774 }
00775
00776 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00777 [global::System.ComponentModel.Browsable(false)]
00778 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
00779 public CalendarExceptionsDataTable CalendarExceptions {
00780 get {
00781 return this.tableCalendarExceptions;
00782 }
00783 }
00784
00785 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00786 [global::System.ComponentModel.Browsable(false)]
00787 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
00788 public ResourceRatesDataTable ResourceRates {
00789 get {
00790 return this.tableResourceRates;
00791 }
00792 }
00793
00794 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00795 [global::System.ComponentModel.Browsable(false)]
00796 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
00797 public ResourceAvailabilitiesDataTable ResourceAvailabilities {
00798 get {
00799 return this.tableResourceAvailabilities;
00800 }
00801 }
00802
00803 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00804 [global::System.ComponentModel.BrowsableAttribute(true)]
00805 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
00806 public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
00807 get {
00808 return this._schemaSerializationMode;
00809 }
00810 set {
00811 this._schemaSerializationMode = value;
00812 }
00813 }
00814
00815 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00816 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
00817 public new global::System.Data.DataTableCollection Tables {
00818 get {
00819 return base.Tables;
00820 }
00821 }
00822
00823 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00824 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
00825 public new global::System.Data.DataRelationCollection Relations {
00826 get {
00827 return base.Relations;
00828 }
00829 }
00830
00831 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00832 protected override void InitializeDerivedDataSet() {
00833 this.BeginInit();
00834 this.InitClass();
00835 this.EndInit();
00836 }
00837
00838 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00839 public override global::System.Data.DataSet Clone() {
00840 ResourceDataSet cln = ((ResourceDataSet)(base.Clone()));
00841 cln.InitVars();
00842 cln.SchemaSerializationMode = this.SchemaSerializationMode;
00843 return cln;
00844 }
00845
00846 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00847 protected override bool ShouldSerializeTables() {
00848 return false;
00849 }
00850
00851 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00852 protected override bool ShouldSerializeRelations() {
00853 return false;
00854 }
00855
00856 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00857 protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
00858 if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
00859 this.Reset();
00860 global::System.Data.DataSet ds = new global::System.Data.DataSet();
00861 ds.ReadXml(reader);
00862 if ((ds.Tables["Resources"] != null)) {
00863 base.Tables.Add(new ResourcesDataTable(ds.Tables["Resources"]));
00864 }
00865 if ((ds.Tables["ResourceCustomFields"] != null)) {
00866 base.Tables.Add(new ResourceCustomFieldsDataTable(ds.Tables["ResourceCustomFields"]));
00867 }
00868 if ((ds.Tables["CalendarExceptions"] != null)) {
00869 base.Tables.Add(new CalendarExceptionsDataTable(ds.Tables["CalendarExceptions"]));
00870 }
00871 if ((ds.Tables["ResourceRates"] != null)) {
00872 base.Tables.Add(new ResourceRatesDataTable(ds.Tables["ResourceRates"]));
00873 }
00874 if ((ds.Tables["ResourceAvailabilities"] != null)) {
00875 base.Tables.Add(new ResourceAvailabilitiesDataTable(ds.Tables["ResourceAvailabilities"]));
00876 }
00877 this.DataSetName = ds.DataSetName;
00878 this.Prefix = ds.Prefix;
00879 this.Namespace = ds.Namespace;
00880 this.Locale = ds.Locale;
00881 this.CaseSensitive = ds.CaseSensitive;
00882 this.EnforceConstraints = ds.EnforceConstraints;
00883 this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
00884 this.InitVars();
00885 }
00886 else {
00887 this.ReadXml(reader);
00888 this.InitVars();
00889 }
00890 }
00891
00892 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00893 protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
00894 global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
00895 this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
00896 stream.Position = 0;
00897 return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
00898 }
00899
00900 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00901 internal void InitVars() {
00902 this.InitVars(true);
00903 }
00904
00905 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00906 internal void InitVars(bool initTable) {
00907 this.tableResources = ((ResourcesDataTable)(base.Tables["Resources"]));
00908 if ((initTable == true)) {
00909 if ((this.tableResources != null)) {
00910 this.tableResources.InitVars();
00911 }
00912 }
00913 this.tableResourceCustomFields = ((ResourceCustomFieldsDataTable)(base.Tables["ResourceCustomFields"]));
00914 if ((initTable == true)) {
00915 if ((this.tableResourceCustomFields != null)) {
00916 this.tableResourceCustomFields.InitVars();
00917 }
00918 }
00919 this.tableCalendarExceptions = ((CalendarExceptionsDataTable)(base.Tables["CalendarExceptions"]));
00920 if ((initTable == true)) {
00921 if ((this.tableCalendarExceptions != null)) {
00922 this.tableCalendarExceptions.InitVars();
00923 }
00924 }
00925 this.tableResourceRates = ((ResourceRatesDataTable)(base.Tables["ResourceRates"]));
00926 if ((initTable == true)) {
00927 if ((this.tableResourceRates != null)) {
00928 this.tableResourceRates.InitVars();
00929 }
00930 }
00931 this.tableResourceAvailabilities = ((ResourceAvailabilitiesDataTable)(base.Tables["ResourceAvailabilities"]));
00932 if ((initTable == true)) {
00933 if ((this.tableResourceAvailabilities != null)) {
00934 this.tableResourceAvailabilities.InitVars();
00935 }
00936 }
00937 this.relationResourcesResourceCustomFields = this.Relations["ResourcesResourceCustomFields"];
00938 this.relationResourcesCalendarExceptions = this.Relations["ResourcesCalendarExceptions"];
00939 this.relationResourcesResourceRates = this.Relations["ResourcesResourceRates"];
00940 this.relationResourcesResourceAvailabilities = this.Relations["ResourcesResourceAvailabilities"];
00941 }
00942
00943 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
00944 private void InitClass() {
00945 this.DataSetName = "ResourceDataSet";
00946 this.Prefix = "";
00947 this.Namespace = "http://schemas.microsoft.com/office/project/server/webservices/ResourceDataSet/";
00948 this.EnforceConstraints = true;
00949 this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
00950 this.tableResources = new ResourcesDataTable();
00951 base.Tables.Add(this.tableResources);
00952 this.tableResourceCustomFields = new ResourceCustomFieldsDataTable();
00953 base.Tables.Add(this.tableResourceCustomFields);
00954 this.tableCalendarExceptions = new CalendarExceptionsDataTable();
00955 base.Tables.Add(this.tableCalendarExceptions);
00956 this.tableResourceRates = new ResourceRatesDataTable();
00957 base.Tables.Add(this.tableResourceRates);
00958 this.tableResourceAvailabilities = new ResourceAvailabilitiesDataTable();
00959 base.Tables.Add(this.tableResourceAvailabilities);
00960 global::System.Data.ForeignKeyConstraint fkc;
00961 fkc = new global::System.Data.ForeignKeyConstraint("ResourcesResourceCustomFields", new global::System.Data.DataColumn[] {
00962 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00963 this.tableResourceCustomFields.RES_UIDColumn});
00964 this.tableResourceCustomFields.Constraints.Add(fkc);
00965 fkc.AcceptRejectRule = global::System.Data.AcceptRejectRule.None;
00966 fkc.DeleteRule = global::System.Data.Rule.Cascade;
00967 fkc.UpdateRule = global::System.Data.Rule.Cascade;
00968 fkc = new global::System.Data.ForeignKeyConstraint("ResourcesCalendarExceptions", new global::System.Data.DataColumn[] {
00969 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00970 this.tableCalendarExceptions.RES_UIDColumn});
00971 this.tableCalendarExceptions.Constraints.Add(fkc);
00972 fkc.AcceptRejectRule = global::System.Data.AcceptRejectRule.None;
00973 fkc.DeleteRule = global::System.Data.Rule.Cascade;
00974 fkc.UpdateRule = global::System.Data.Rule.Cascade;
00975 fkc = new global::System.Data.ForeignKeyConstraint("ResourcesResourceRates", new global::System.Data.DataColumn[] {
00976 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00977 this.tableResourceRates.RES_UIDColumn});
00978 this.tableResourceRates.Constraints.Add(fkc);
00979 fkc.AcceptRejectRule = global::System.Data.AcceptRejectRule.None;
00980 fkc.DeleteRule = global::System.Data.Rule.Cascade;
00981 fkc.UpdateRule = global::System.Data.Rule.Cascade;
00982 fkc = new global::System.Data.ForeignKeyConstraint("ResourcesResourceAvailabilities", new global::System.Data.DataColumn[] {
00983 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00984 this.tableResourceAvailabilities.RES_UIDColumn});
00985 this.tableResourceAvailabilities.Constraints.Add(fkc);
00986 fkc.AcceptRejectRule = global::System.Data.AcceptRejectRule.None;
00987 fkc.DeleteRule = global::System.Data.Rule.Cascade;
00988 fkc.UpdateRule = global::System.Data.Rule.Cascade;
00989 this.relationResourcesResourceCustomFields = new global::System.Data.DataRelation("ResourcesResourceCustomFields", new global::System.Data.DataColumn[] {
00990 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00991 this.tableResourceCustomFields.RES_UIDColumn}, false);
00992 this.Relations.Add(this.relationResourcesResourceCustomFields);
00993 this.relationResourcesCalendarExceptions = new global::System.Data.DataRelation("ResourcesCalendarExceptions", new global::System.Data.DataColumn[] {
00994 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00995 this.tableCalendarExceptions.RES_UIDColumn}, false);
00996 this.Relations.Add(this.relationResourcesCalendarExceptions);
00997 this.relationResourcesResourceRates = new global::System.Data.DataRelation("ResourcesResourceRates", new global::System.Data.DataColumn[] {
00998 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
00999 this.tableResourceRates.RES_UIDColumn}, false);
01000 this.Relations.Add(this.relationResourcesResourceRates);
01001 this.relationResourcesResourceAvailabilities = new global::System.Data.DataRelation("ResourcesResourceAvailabilities", new global::System.Data.DataColumn[] {
01002 this.tableResources.RES_UIDColumn}, new global::System.Data.DataColumn[] {
01003 this.tableResourceAvailabilities.RES_UIDColumn}, false);
01004 this.Relations.Add(this.relationResourcesResourceAvailabilities);
01005 }
01006
01007 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01008 private bool ShouldSerializeResources() {
01009 return false;
01010 }
01011
01012 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01013 private bool ShouldSerializeResourceCustomFields() {
01014 return false;
01015 }
01016
01017 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01018 private bool ShouldSerializeCalendarExceptions() {
01019 return false;
01020 }
01021
01022 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01023 private bool ShouldSerializeResourceRates() {
01024 return false;
01025 }
01026
01027 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01028 private bool ShouldSerializeResourceAvailabilities() {
01029 return false;
01030 }
01031
01032 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01033 private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
01034 if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
01035 this.InitVars();
01036 }
01037 }
01038
01039 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01040 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
01041 ResourceDataSet ds = new ResourceDataSet();
01042 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
01043 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
01044 global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
01045 any.Namespace = ds.Namespace;
01046 sequence.Items.Add(any);
01047 type.Particle = sequence;
01048 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
01049 if (xs.Contains(dsSchema.TargetNamespace)) {
01050 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
01051 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
01052 try {
01053 global::System.Xml.Schema.XmlSchema schema = null;
01054 dsSchema.Write(s1);
01055 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
01056 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
01057 s2.SetLength(0);
01058 schema.Write(s2);
01059 if ((s1.Length == s2.Length)) {
01060 s1.Position = 0;
01061 s2.Position = 0;
01062 for (; ((s1.Position != s1.Length)
01063 && (s1.ReadByte() == s2.ReadByte())); ) {
01064 ;
01065 }
01066 if ((s1.Position == s1.Length)) {
01067 return type;
01068 }
01069 }
01070 }
01071 }
01072 finally {
01073 if ((s1 != null)) {
01074 s1.Close();
01075 }
01076 if ((s2 != null)) {
01077 s2.Close();
01078 }
01079 }
01080 }
01081 xs.Add(dsSchema);
01082 return type;
01083 }
01084
01085 public delegate void ResourcesRowChangeEventHandler(object sender, ResourcesRowChangeEvent e);
01086
01087 public delegate void ResourceCustomFieldsRowChangeEventHandler(object sender, ResourceCustomFieldsRowChangeEvent e);
01088
01089 public delegate void CalendarExceptionsRowChangeEventHandler(object sender, CalendarExceptionsRowChangeEvent e);
01090
01091 public delegate void ResourceRatesRowChangeEventHandler(object sender, ResourceRatesRowChangeEvent e);
01092
01093 public delegate void ResourceAvailabilitiesRowChangeEventHandler(object sender, ResourceAvailabilitiesRowChangeEvent e);
01094
01095
01096
01097
01098 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
01099 [global::System.Serializable()]
01100 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
01101 public partial class ResourcesDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
01102
01103 private global::System.Data.DataColumn columnRES_UID;
01104
01105 private global::System.Data.DataColumn columnRES_ID;
01106
01107 private global::System.Data.DataColumn columnRES_TYPE;
01108
01109 private global::System.Data.DataColumn columnRES_HAS_NOTES;
01110
01111 private global::System.Data.DataColumn columnRES_CAN_LEVEL;
01112
01113 private global::System.Data.DataColumn columnRES_ACCRUE_AT;
01114
01115 private global::System.Data.DataColumn columnRES_BOOKING_TYPE;
01116
01117 private global::System.Data.DataColumn columnRES_NAME;
01118
01119 private global::System.Data.DataColumn columnRES_INITIALS;
01120
01121 private global::System.Data.DataColumn columnRES_PHONETICS;
01122
01123 private global::System.Data.DataColumn columnRES_MATERIAL_LABEL;
01124
01125 private global::System.Data.DataColumn columnRES_RTF_NOTES;
01126
01127 private global::System.Data.DataColumn columnWRES_ACCOUNT;
01128
01129 private global::System.Data.DataColumn columnRES_IS_WINDOWS_USER;
01130
01131 private global::System.Data.DataColumn columnWRES_EMAIL;
01132
01133 private global::System.Data.DataColumn columnWRES_EMAIL_LANGUAGE;
01134
01135 private global::System.Data.DataColumn columnRES_CHECKOUTBY;
01136
01137 private global::System.Data.DataColumn columnRES_CHECKOUTDATE;
01138
01139 private global::System.Data.DataColumn columnRES_HYPERLINK_FRIENDLY_NAME;
01140
01141 private global::System.Data.DataColumn columnRES_HYPERLINK_ADDRESS;
01142
01143 private global::System.Data.DataColumn columnRES_HYPERLINK_SUB_ADDRESS;
01144
01145 private global::System.Data.DataColumn columnRES_CODE;
01146
01147 private global::System.Data.DataColumn columnRES_GROUP;
01148
01149 private global::System.Data.DataColumn columnRES_EXTERNAL_ID;
01150
01151 private global::System.Data.DataColumn columnRES_TIMESHEET_MGR_UID;
01152
01153 private global::System.Data.DataColumn columnRES_DEF_ASSN_OWNER;
01154
01155 private global::System.Data.DataColumn columnRES_HIRE_DATE;
01156
01157 private global::System.Data.DataColumn columnRES_TERMINATION_DATE;
01158
01159 private global::System.Data.DataColumn columnRES_IS_TEAM;
01160
01161 private global::System.Data.DataColumn columnRES_COST_CENTER;
01162
01163 private global::System.Data.DataColumn columnRES_NOTES;
01164
01165 private global::System.Data.DataColumn columnBaseCalendarUniqueId;
01166
01167 private global::System.Data.DataColumn columnCREATED_DATE;
01168
01169 private global::System.Data.DataColumn columnMOD_DATE;
01170
01171 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01172 public ResourcesDataTable() {
01173 this.TableName = "Resources";
01174 this.BeginInit();
01175 this.InitClass();
01176 this.EndInit();
01177 }
01178
01179 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01180 internal ResourcesDataTable(global::System.Data.DataTable table) {
01181 this.TableName = table.TableName;
01182 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
01183 this.CaseSensitive = table.CaseSensitive;
01184 }
01185 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
01186 this.Locale = table.Locale;
01187 }
01188 if ((table.Namespace != table.DataSet.Namespace)) {
01189 this.Namespace = table.Namespace;
01190 }
01191 this.Prefix = table.Prefix;
01192 this.MinimumCapacity = table.MinimumCapacity;
01193 }
01194
01195 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01196 protected ResourcesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
01197 base(info, context) {
01198 this.InitVars();
01199 }
01200
01201 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01202 public global::System.Data.DataColumn RES_UIDColumn {
01203 get {
01204 return this.columnRES_UID;
01205 }
01206 }
01207
01208 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01209 public global::System.Data.DataColumn RES_IDColumn {
01210 get {
01211 return this.columnRES_ID;
01212 }
01213 }
01214
01215 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01216 public global::System.Data.DataColumn RES_TYPEColumn {
01217 get {
01218 return this.columnRES_TYPE;
01219 }
01220 }
01221
01222 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01223 public global::System.Data.DataColumn RES_HAS_NOTESColumn {
01224 get {
01225 return this.columnRES_HAS_NOTES;
01226 }
01227 }
01228
01229 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01230 public global::System.Data.DataColumn RES_CAN_LEVELColumn {
01231 get {
01232 return this.columnRES_CAN_LEVEL;
01233 }
01234 }
01235
01236 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01237 public global::System.Data.DataColumn RES_ACCRUE_ATColumn {
01238 get {
01239 return this.columnRES_ACCRUE_AT;
01240 }
01241 }
01242
01243 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01244 public global::System.Data.DataColumn RES_BOOKING_TYPEColumn {
01245 get {
01246 return this.columnRES_BOOKING_TYPE;
01247 }
01248 }
01249
01250 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01251 public global::System.Data.DataColumn RES_NAMEColumn {
01252 get {
01253 return this.columnRES_NAME;
01254 }
01255 }
01256
01257 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01258 public global::System.Data.DataColumn RES_INITIALSColumn {
01259 get {
01260 return this.columnRES_INITIALS;
01261 }
01262 }
01263
01264 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01265 public global::System.Data.DataColumn RES_PHONETICSColumn {
01266 get {
01267 return this.columnRES_PHONETICS;
01268 }
01269 }
01270
01271 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01272 public global::System.Data.DataColumn RES_MATERIAL_LABELColumn {
01273 get {
01274 return this.columnRES_MATERIAL_LABEL;
01275 }
01276 }
01277
01278 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01279 public global::System.Data.DataColumn RES_RTF_NOTESColumn {
01280 get {
01281 return this.columnRES_RTF_NOTES;
01282 }
01283 }
01284
01285 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01286 public global::System.Data.DataColumn WRES_ACCOUNTColumn {
01287 get {
01288 return this.columnWRES_ACCOUNT;
01289 }
01290 }
01291
01292 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01293 public global::System.Data.DataColumn RES_IS_WINDOWS_USERColumn {
01294 get {
01295 return this.columnRES_IS_WINDOWS_USER;
01296 }
01297 }
01298
01299 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01300 public global::System.Data.DataColumn WRES_EMAILColumn {
01301 get {
01302 return this.columnWRES_EMAIL;
01303 }
01304 }
01305
01306 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01307 public global::System.Data.DataColumn WRES_EMAIL_LANGUAGEColumn {
01308 get {
01309 return this.columnWRES_EMAIL_LANGUAGE;
01310 }
01311 }
01312
01313 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01314 public global::System.Data.DataColumn RES_CHECKOUTBYColumn {
01315 get {
01316 return this.columnRES_CHECKOUTBY;
01317 }
01318 }
01319
01320 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01321 public global::System.Data.DataColumn RES_CHECKOUTDATEColumn {
01322 get {
01323 return this.columnRES_CHECKOUTDATE;
01324 }
01325 }
01326
01327 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01328 public global::System.Data.DataColumn RES_HYPERLINK_FRIENDLY_NAMEColumn {
01329 get {
01330 return this.columnRES_HYPERLINK_FRIENDLY_NAME;
01331 }
01332 }
01333
01334 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01335 public global::System.Data.DataColumn RES_HYPERLINK_ADDRESSColumn {
01336 get {
01337 return this.columnRES_HYPERLINK_ADDRESS;
01338 }
01339 }
01340
01341 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01342 public global::System.Data.DataColumn RES_HYPERLINK_SUB_ADDRESSColumn {
01343 get {
01344 return this.columnRES_HYPERLINK_SUB_ADDRESS;
01345 }
01346 }
01347
01348 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01349 public global::System.Data.DataColumn RES_CODEColumn {
01350 get {
01351 return this.columnRES_CODE;
01352 }
01353 }
01354
01355 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01356 public global::System.Data.DataColumn RES_GROUPColumn {
01357 get {
01358 return this.columnRES_GROUP;
01359 }
01360 }
01361
01362 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01363 public global::System.Data.DataColumn RES_EXTERNAL_IDColumn {
01364 get {
01365 return this.columnRES_EXTERNAL_ID;
01366 }
01367 }
01368
01369 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01370 public global::System.Data.DataColumn RES_TIMESHEET_MGR_UIDColumn {
01371 get {
01372 return this.columnRES_TIMESHEET_MGR_UID;
01373 }
01374 }
01375
01376 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01377 public global::System.Data.DataColumn RES_DEF_ASSN_OWNERColumn {
01378 get {
01379 return this.columnRES_DEF_ASSN_OWNER;
01380 }
01381 }
01382
01383 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01384 public global::System.Data.DataColumn RES_HIRE_DATEColumn {
01385 get {
01386 return this.columnRES_HIRE_DATE;
01387 }
01388 }
01389
01390 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01391 public global::System.Data.DataColumn RES_TERMINATION_DATEColumn {
01392 get {
01393 return this.columnRES_TERMINATION_DATE;
01394 }
01395 }
01396
01397 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01398 public global::System.Data.DataColumn RES_IS_TEAMColumn {
01399 get {
01400 return this.columnRES_IS_TEAM;
01401 }
01402 }
01403
01404 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01405 public global::System.Data.DataColumn RES_COST_CENTERColumn {
01406 get {
01407 return this.columnRES_COST_CENTER;
01408 }
01409 }
01410
01411 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01412 public global::System.Data.DataColumn RES_NOTESColumn {
01413 get {
01414 return this.columnRES_NOTES;
01415 }
01416 }
01417
01418 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01419 public global::System.Data.DataColumn BaseCalendarUniqueIdColumn {
01420 get {
01421 return this.columnBaseCalendarUniqueId;
01422 }
01423 }
01424
01425 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01426 public global::System.Data.DataColumn CREATED_DATEColumn {
01427 get {
01428 return this.columnCREATED_DATE;
01429 }
01430 }
01431
01432 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01433 public global::System.Data.DataColumn MOD_DATEColumn {
01434 get {
01435 return this.columnMOD_DATE;
01436 }
01437 }
01438
01439 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01440 [global::System.ComponentModel.Browsable(false)]
01441 public int Count {
01442 get {
01443 return this.Rows.Count;
01444 }
01445 }
01446
01447 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01448 public ResourcesRow this[int index] {
01449 get {
01450 return ((ResourcesRow)(this.Rows[index]));
01451 }
01452 }
01453
01454 public event ResourcesRowChangeEventHandler ResourcesRowChanging;
01455
01456 public event ResourcesRowChangeEventHandler ResourcesRowChanged;
01457
01458 public event ResourcesRowChangeEventHandler ResourcesRowDeleting;
01459
01460 public event ResourcesRowChangeEventHandler ResourcesRowDeleted;
01461
01462 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01463 public void AddResourcesRow(ResourcesRow row) {
01464 this.Rows.Add(row);
01465 }
01466
01467 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01468 public ResourcesRow AddResourcesRow(
01469 System.Guid RES_UID,
01470 int RES_ID,
01471 int RES_TYPE,
01472 bool RES_HAS_NOTES,
01473 bool RES_CAN_LEVEL,
01474 short RES_ACCRUE_AT,
01475 int RES_BOOKING_TYPE,
01476 string RES_NAME,
01477 string RES_INITIALS,
01478 string RES_PHONETICS,
01479 string RES_MATERIAL_LABEL,
01480 byte[] RES_RTF_NOTES,
01481 string WRES_ACCOUNT,
01482 bool RES_IS_WINDOWS_USER,
01483 string WRES_EMAIL,
01484 int WRES_EMAIL_LANGUAGE,
01485 System.Guid RES_CHECKOUTBY,
01486 System.DateTime RES_CHECKOUTDATE,
01487 string RES_HYPERLINK_FRIENDLY_NAME,
01488 string RES_HYPERLINK_ADDRESS,
01489 string RES_HYPERLINK_SUB_ADDRESS,
01490 string RES_CODE,
01491 string RES_GROUP,
01492 string RES_EXTERNAL_ID,
01493 System.Guid RES_TIMESHEET_MGR_UID,
01494 System.Guid RES_DEF_ASSN_OWNER,
01495 System.DateTime RES_HIRE_DATE,
01496 System.DateTime RES_TERMINATION_DATE,
01497 bool RES_IS_TEAM,
01498 string RES_COST_CENTER,
01499 string RES_NOTES,
01500 System.Guid BaseCalendarUniqueId,
01501 System.DateTime CREATED_DATE,
01502 System.DateTime MOD_DATE) {
01503 ResourcesRow rowResourcesRow = ((ResourcesRow)(this.NewRow()));
01504 object[] columnValuesArray = new object[] {
01505 RES_UID,
01506 RES_ID,
01507 RES_TYPE,
01508 RES_HAS_NOTES,
01509 RES_CAN_LEVEL,
01510 RES_ACCRUE_AT,
01511 RES_BOOKING_TYPE,
01512 RES_NAME,
01513 RES_INITIALS,
01514 RES_PHONETICS,
01515 RES_MATERIAL_LABEL,
01516 RES_RTF_NOTES,
01517 WRES_ACCOUNT,
01518 RES_IS_WINDOWS_USER,
01519 WRES_EMAIL,
01520 WRES_EMAIL_LANGUAGE,
01521 RES_CHECKOUTBY,
01522 RES_CHECKOUTDATE,
01523 RES_HYPERLINK_FRIENDLY_NAME,
01524 RES_HYPERLINK_ADDRESS,
01525 RES_HYPERLINK_SUB_ADDRESS,
01526 RES_CODE,
01527 RES_GROUP,
01528 RES_EXTERNAL_ID,
01529 RES_TIMESHEET_MGR_UID,
01530 RES_DEF_ASSN_OWNER,
01531 RES_HIRE_DATE,
01532 RES_TERMINATION_DATE,
01533 RES_IS_TEAM,
01534 RES_COST_CENTER,
01535 RES_NOTES,
01536 BaseCalendarUniqueId,
01537 CREATED_DATE,
01538 MOD_DATE};
01539 rowResourcesRow.ItemArray = columnValuesArray;
01540 this.Rows.Add(rowResourcesRow);
01541 return rowResourcesRow;
01542 }
01543
01544 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01545 public ResourcesRow FindByRES_UID(System.Guid RES_UID) {
01546 return ((ResourcesRow)(this.Rows.Find(new object[] {
01547 RES_UID})));
01548 }
01549
01550 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01551 public virtual global::System.Collections.IEnumerator GetEnumerator() {
01552 return this.Rows.GetEnumerator();
01553 }
01554
01555 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01556 public override global::System.Data.DataTable Clone() {
01557 ResourcesDataTable cln = ((ResourcesDataTable)(base.Clone()));
01558 cln.InitVars();
01559 return cln;
01560 }
01561
01562 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01563 protected override global::System.Data.DataTable CreateInstance() {
01564 return new ResourcesDataTable();
01565 }
01566
01567 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01568 internal void InitVars() {
01569 this.columnRES_UID = base.Columns["RES_UID"];
01570 this.columnRES_ID = base.Columns["RES_ID"];
01571 this.columnRES_TYPE = base.Columns["RES_TYPE"];
01572 this.columnRES_HAS_NOTES = base.Columns["RES_HAS_NOTES"];
01573 this.columnRES_CAN_LEVEL = base.Columns["RES_CAN_LEVEL"];
01574 this.columnRES_ACCRUE_AT = base.Columns["RES_ACCRUE_AT"];
01575 this.columnRES_BOOKING_TYPE = base.Columns["RES_BOOKING_TYPE"];
01576 this.columnRES_NAME = base.Columns["RES_NAME"];
01577 this.columnRES_INITIALS = base.Columns["RES_INITIALS"];
01578 this.columnRES_PHONETICS = base.Columns["RES_PHONETICS"];
01579 this.columnRES_MATERIAL_LABEL = base.Columns["RES_MATERIAL_LABEL"];
01580 this.columnRES_RTF_NOTES = base.Columns["RES_RTF_NOTES"];
01581 this.columnWRES_ACCOUNT = base.Columns["WRES_ACCOUNT"];
01582 this.columnRES_IS_WINDOWS_USER = base.Columns["RES_IS_WINDOWS_USER"];
01583 this.columnWRES_EMAIL = base.Columns["WRES_EMAIL"];
01584 this.columnWRES_EMAIL_LANGUAGE = base.Columns["WRES_EMAIL_LANGUAGE"];
01585 this.columnRES_CHECKOUTBY = base.Columns["RES_CHECKOUTBY"];
01586 this.columnRES_CHECKOUTDATE = base.Columns["RES_CHECKOUTDATE"];
01587 this.columnRES_HYPERLINK_FRIENDLY_NAME = base.Columns["RES_HYPERLINK_FRIENDLY_NAME"];
01588 this.columnRES_HYPERLINK_ADDRESS = base.Columns["RES_HYPERLINK_ADDRESS"];
01589 this.columnRES_HYPERLINK_SUB_ADDRESS = base.Columns["RES_HYPERLINK_SUB_ADDRESS"];
01590 this.columnRES_CODE = base.Columns["RES_CODE"];
01591 this.columnRES_GROUP = base.Columns["RES_GROUP"];
01592 this.columnRES_EXTERNAL_ID = base.Columns["RES_EXTERNAL_ID"];
01593 this.columnRES_TIMESHEET_MGR_UID = base.Columns["RES_TIMESHEET_MGR_UID"];
01594 this.columnRES_DEF_ASSN_OWNER = base.Columns["RES_DEF_ASSN_OWNER"];
01595 this.columnRES_HIRE_DATE = base.Columns["RES_HIRE_DATE"];
01596 this.columnRES_TERMINATION_DATE = base.Columns["RES_TERMINATION_DATE"];
01597 this.columnRES_IS_TEAM = base.Columns["RES_IS_TEAM"];
01598 this.columnRES_COST_CENTER = base.Columns["RES_COST_CENTER"];
01599 this.columnRES_NOTES = base.Columns["RES_NOTES"];
01600 this.columnBaseCalendarUniqueId = base.Columns["BaseCalendarUniqueId"];
01601 this.columnCREATED_DATE = base.Columns["CREATED_DATE"];
01602 this.columnMOD_DATE = base.Columns["MOD_DATE"];
01603 }
01604
01605 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01606 private void InitClass() {
01607 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
01608 base.Columns.Add(this.columnRES_UID);
01609 this.columnRES_ID = new global::System.Data.DataColumn("RES_ID", typeof(int), null, global::System.Data.MappingType.Element);
01610 base.Columns.Add(this.columnRES_ID);
01611 this.columnRES_TYPE = new global::System.Data.DataColumn("RES_TYPE", typeof(int), null, global::System.Data.MappingType.Element);
01612 base.Columns.Add(this.columnRES_TYPE);
01613 this.columnRES_HAS_NOTES = new global::System.Data.DataColumn("RES_HAS_NOTES", typeof(bool), null, global::System.Data.MappingType.Element);
01614 base.Columns.Add(this.columnRES_HAS_NOTES);
01615 this.columnRES_CAN_LEVEL = new global::System.Data.DataColumn("RES_CAN_LEVEL", typeof(bool), null, global::System.Data.MappingType.Element);
01616 base.Columns.Add(this.columnRES_CAN_LEVEL);
01617 this.columnRES_ACCRUE_AT = new global::System.Data.DataColumn("RES_ACCRUE_AT", typeof(short), null, global::System.Data.MappingType.Element);
01618 base.Columns.Add(this.columnRES_ACCRUE_AT);
01619 this.columnRES_BOOKING_TYPE = new global::System.Data.DataColumn("RES_BOOKING_TYPE", typeof(int), null, global::System.Data.MappingType.Element);
01620 base.Columns.Add(this.columnRES_BOOKING_TYPE);
01621 this.columnRES_NAME = new global::System.Data.DataColumn("RES_NAME", typeof(string), null, global::System.Data.MappingType.Element);
01622 base.Columns.Add(this.columnRES_NAME);
01623 this.columnRES_INITIALS = new global::System.Data.DataColumn("RES_INITIALS", typeof(string), null, global::System.Data.MappingType.Element);
01624 base.Columns.Add(this.columnRES_INITIALS);
01625 this.columnRES_PHONETICS = new global::System.Data.DataColumn("RES_PHONETICS", typeof(string), null, global::System.Data.MappingType.Element);
01626 base.Columns.Add(this.columnRES_PHONETICS);
01627 this.columnRES_MATERIAL_LABEL = new global::System.Data.DataColumn("RES_MATERIAL_LABEL", typeof(string), null, global::System.Data.MappingType.Element);
01628 base.Columns.Add(this.columnRES_MATERIAL_LABEL);
01629 this.columnRES_RTF_NOTES = new global::System.Data.DataColumn("RES_RTF_NOTES", typeof(byte[]), null, global::System.Data.MappingType.Element);
01630 base.Columns.Add(this.columnRES_RTF_NOTES);
01631 this.columnWRES_ACCOUNT = new global::System.Data.DataColumn("WRES_ACCOUNT", typeof(string), null, global::System.Data.MappingType.Element);
01632 base.Columns.Add(this.columnWRES_ACCOUNT);
01633 this.columnRES_IS_WINDOWS_USER = new global::System.Data.DataColumn("RES_IS_WINDOWS_USER", typeof(bool), null, global::System.Data.MappingType.Element);
01634 base.Columns.Add(this.columnRES_IS_WINDOWS_USER);
01635 this.columnWRES_EMAIL = new global::System.Data.DataColumn("WRES_EMAIL", typeof(string), null, global::System.Data.MappingType.Element);
01636 base.Columns.Add(this.columnWRES_EMAIL);
01637 this.columnWRES_EMAIL_LANGUAGE = new global::System.Data.DataColumn("WRES_EMAIL_LANGUAGE", typeof(int), null, global::System.Data.MappingType.Element);
01638 base.Columns.Add(this.columnWRES_EMAIL_LANGUAGE);
01639 this.columnRES_CHECKOUTBY = new global::System.Data.DataColumn("RES_CHECKOUTBY", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
01640 base.Columns.Add(this.columnRES_CHECKOUTBY);
01641 this.columnRES_CHECKOUTDATE = new global::System.Data.DataColumn("RES_CHECKOUTDATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
01642 base.Columns.Add(this.columnRES_CHECKOUTDATE);
01643 this.columnRES_HYPERLINK_FRIENDLY_NAME = new global::System.Data.DataColumn("RES_HYPERLINK_FRIENDLY_NAME", typeof(string), null, global::System.Data.MappingType.Element);
01644 base.Columns.Add(this.columnRES_HYPERLINK_FRIENDLY_NAME);
01645 this.columnRES_HYPERLINK_ADDRESS = new global::System.Data.DataColumn("RES_HYPERLINK_ADDRESS", typeof(string), null, global::System.Data.MappingType.Element);
01646 base.Columns.Add(this.columnRES_HYPERLINK_ADDRESS);
01647 this.columnRES_HYPERLINK_SUB_ADDRESS = new global::System.Data.DataColumn("RES_HYPERLINK_SUB_ADDRESS", typeof(string), null, global::System.Data.MappingType.Element);
01648 base.Columns.Add(this.columnRES_HYPERLINK_SUB_ADDRESS);
01649 this.columnRES_CODE = new global::System.Data.DataColumn("RES_CODE", typeof(string), null, global::System.Data.MappingType.Element);
01650 base.Columns.Add(this.columnRES_CODE);
01651 this.columnRES_GROUP = new global::System.Data.DataColumn("RES_GROUP", typeof(string), null, global::System.Data.MappingType.Element);
01652 base.Columns.Add(this.columnRES_GROUP);
01653 this.columnRES_EXTERNAL_ID = new global::System.Data.DataColumn("RES_EXTERNAL_ID", typeof(string), null, global::System.Data.MappingType.Element);
01654 base.Columns.Add(this.columnRES_EXTERNAL_ID);
01655 this.columnRES_TIMESHEET_MGR_UID = new global::System.Data.DataColumn("RES_TIMESHEET_MGR_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
01656 base.Columns.Add(this.columnRES_TIMESHEET_MGR_UID);
01657 this.columnRES_DEF_ASSN_OWNER = new global::System.Data.DataColumn("RES_DEF_ASSN_OWNER", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
01658 base.Columns.Add(this.columnRES_DEF_ASSN_OWNER);
01659 this.columnRES_HIRE_DATE = new global::System.Data.DataColumn("RES_HIRE_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
01660 base.Columns.Add(this.columnRES_HIRE_DATE);
01661 this.columnRES_TERMINATION_DATE = new global::System.Data.DataColumn("RES_TERMINATION_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
01662 base.Columns.Add(this.columnRES_TERMINATION_DATE);
01663 this.columnRES_IS_TEAM = new global::System.Data.DataColumn("RES_IS_TEAM", typeof(bool), null, global::System.Data.MappingType.Element);
01664 base.Columns.Add(this.columnRES_IS_TEAM);
01665 this.columnRES_COST_CENTER = new global::System.Data.DataColumn("RES_COST_CENTER", typeof(string), null, global::System.Data.MappingType.Element);
01666 base.Columns.Add(this.columnRES_COST_CENTER);
01667 this.columnRES_NOTES = new global::System.Data.DataColumn("RES_NOTES", typeof(string), null, global::System.Data.MappingType.Element);
01668 base.Columns.Add(this.columnRES_NOTES);
01669 this.columnBaseCalendarUniqueId = new global::System.Data.DataColumn("BaseCalendarUniqueId", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
01670 base.Columns.Add(this.columnBaseCalendarUniqueId);
01671 this.columnCREATED_DATE = new global::System.Data.DataColumn("CREATED_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
01672 base.Columns.Add(this.columnCREATED_DATE);
01673 this.columnMOD_DATE = new global::System.Data.DataColumn("MOD_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
01674 base.Columns.Add(this.columnMOD_DATE);
01675 this.Constraints.Add(new global::System.Data.UniqueConstraint("ResourceDataSetKey1", new global::System.Data.DataColumn[] {
01676 this.columnRES_UID}, true));
01677 this.columnRES_UID.AllowDBNull = false;
01678 this.columnRES_UID.Unique = true;
01679 this.columnRES_ID.AllowDBNull = false;
01680 this.columnRES_ID.DefaultValue = ((int)(-1));
01681 this.columnRES_TYPE.AllowDBNull = false;
01682 this.columnRES_TYPE.DefaultValue = ((int)(2));
01683 this.columnRES_HAS_NOTES.DefaultValue = ((bool)(false));
01684 this.columnRES_CAN_LEVEL.DefaultValue = ((bool)(true));
01685 this.columnRES_NAME.AllowDBNull = false;
01686 this.columnWRES_ACCOUNT.ReadOnly = true;
01687 this.columnRES_IS_WINDOWS_USER.ReadOnly = true;
01688 this.columnRES_CHECKOUTBY.ReadOnly = true;
01689 this.columnRES_CHECKOUTDATE.ReadOnly = true;
01690 this.columnRES_IS_TEAM.DefaultValue = ((bool)(false));
01691 this.columnCREATED_DATE.ReadOnly = true;
01692 this.columnMOD_DATE.ReadOnly = true;
01693 }
01694
01695 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01696 public ResourcesRow NewResourcesRow() {
01697 return ((ResourcesRow)(this.NewRow()));
01698 }
01699
01700 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01701 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
01702 return new ResourcesRow(builder);
01703 }
01704
01705 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01706 protected override global::System.Type GetRowType() {
01707 return typeof(ResourcesRow);
01708 }
01709
01710 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01711 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
01712 base.OnRowChanged(e);
01713 if ((this.ResourcesRowChanged != null)) {
01714 this.ResourcesRowChanged(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
01715 }
01716 }
01717
01718 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01719 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
01720 base.OnRowChanging(e);
01721 if ((this.ResourcesRowChanging != null)) {
01722 this.ResourcesRowChanging(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
01723 }
01724 }
01725
01726 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01727 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
01728 base.OnRowDeleted(e);
01729 if ((this.ResourcesRowDeleted != null)) {
01730 this.ResourcesRowDeleted(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
01731 }
01732 }
01733
01734 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01735 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
01736 base.OnRowDeleting(e);
01737 if ((this.ResourcesRowDeleting != null)) {
01738 this.ResourcesRowDeleting(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
01739 }
01740 }
01741
01742 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01743 public void RemoveResourcesRow(ResourcesRow row) {
01744 this.Rows.Remove(row);
01745 }
01746
01747 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01748 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
01749 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
01750 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
01751 ResourceDataSet ds = new ResourceDataSet();
01752 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
01753 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
01754 any1.MinOccurs = new decimal(0);
01755 any1.MaxOccurs = decimal.MaxValue;
01756 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
01757 sequence.Items.Add(any1);
01758 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
01759 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
01760 any2.MinOccurs = new decimal(1);
01761 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
01762 sequence.Items.Add(any2);
01763 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
01764 attribute1.Name = "namespace";
01765 attribute1.FixedValue = ds.Namespace;
01766 type.Attributes.Add(attribute1);
01767 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
01768 attribute2.Name = "tableTypeName";
01769 attribute2.FixedValue = "ResourcesDataTable";
01770 type.Attributes.Add(attribute2);
01771 type.Particle = sequence;
01772 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
01773 if (xs.Contains(dsSchema.TargetNamespace)) {
01774 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
01775 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
01776 try {
01777 global::System.Xml.Schema.XmlSchema schema = null;
01778 dsSchema.Write(s1);
01779 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
01780 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
01781 s2.SetLength(0);
01782 schema.Write(s2);
01783 if ((s1.Length == s2.Length)) {
01784 s1.Position = 0;
01785 s2.Position = 0;
01786 for (; ((s1.Position != s1.Length)
01787 && (s1.ReadByte() == s2.ReadByte())); ) {
01788 ;
01789 }
01790 if ((s1.Position == s1.Length)) {
01791 return type;
01792 }
01793 }
01794 }
01795 }
01796 finally {
01797 if ((s1 != null)) {
01798 s1.Close();
01799 }
01800 if ((s2 != null)) {
01801 s2.Close();
01802 }
01803 }
01804 }
01805 xs.Add(dsSchema);
01806 return type;
01807 }
01808 }
01809
01810
01811
01812
01813 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
01814 [global::System.Serializable()]
01815 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
01816 public partial class ResourceCustomFieldsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
01817
01818 private global::System.Data.DataColumn columnCUSTOM_FIELD_UID;
01819
01820 private global::System.Data.DataColumn columnRES_UID;
01821
01822 private global::System.Data.DataColumn columnMD_PROP_UID;
01823
01824 private global::System.Data.DataColumn columnFLAG_VALUE;
01825
01826 private global::System.Data.DataColumn columnMD_PROP_ID;
01827
01828 private global::System.Data.DataColumn columnMD_PROP_NAME;
01829
01830 private global::System.Data.DataColumn columnTEXT_VALUE;
01831
01832 private global::System.Data.DataColumn columnFIELD_TYPE_ENUM;
01833
01834 private global::System.Data.DataColumn columnDATE_VALUE;
01835
01836 private global::System.Data.DataColumn columnCODE_VALUE;
01837
01838 private global::System.Data.DataColumn columnDUR_VALUE;
01839
01840 private global::System.Data.DataColumn columnNUM_VALUE;
01841
01842 private global::System.Data.DataColumn columnDUR_FMT;
01843
01844 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01845 public ResourceCustomFieldsDataTable() {
01846 this.TableName = "ResourceCustomFields";
01847 this.BeginInit();
01848 this.InitClass();
01849 this.EndInit();
01850 }
01851
01852 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01853 internal ResourceCustomFieldsDataTable(global::System.Data.DataTable table) {
01854 this.TableName = table.TableName;
01855 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
01856 this.CaseSensitive = table.CaseSensitive;
01857 }
01858 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
01859 this.Locale = table.Locale;
01860 }
01861 if ((table.Namespace != table.DataSet.Namespace)) {
01862 this.Namespace = table.Namespace;
01863 }
01864 this.Prefix = table.Prefix;
01865 this.MinimumCapacity = table.MinimumCapacity;
01866 }
01867
01868 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01869 protected ResourceCustomFieldsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
01870 base(info, context) {
01871 this.InitVars();
01872 }
01873
01874 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01875 public global::System.Data.DataColumn CUSTOM_FIELD_UIDColumn {
01876 get {
01877 return this.columnCUSTOM_FIELD_UID;
01878 }
01879 }
01880
01881 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01882 public global::System.Data.DataColumn RES_UIDColumn {
01883 get {
01884 return this.columnRES_UID;
01885 }
01886 }
01887
01888 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01889 public global::System.Data.DataColumn MD_PROP_UIDColumn {
01890 get {
01891 return this.columnMD_PROP_UID;
01892 }
01893 }
01894
01895 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01896 public global::System.Data.DataColumn FLAG_VALUEColumn {
01897 get {
01898 return this.columnFLAG_VALUE;
01899 }
01900 }
01901
01902 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01903 public global::System.Data.DataColumn MD_PROP_IDColumn {
01904 get {
01905 return this.columnMD_PROP_ID;
01906 }
01907 }
01908
01909 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01910 public global::System.Data.DataColumn MD_PROP_NAMEColumn {
01911 get {
01912 return this.columnMD_PROP_NAME;
01913 }
01914 }
01915
01916 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01917 public global::System.Data.DataColumn TEXT_VALUEColumn {
01918 get {
01919 return this.columnTEXT_VALUE;
01920 }
01921 }
01922
01923 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01924 public global::System.Data.DataColumn FIELD_TYPE_ENUMColumn {
01925 get {
01926 return this.columnFIELD_TYPE_ENUM;
01927 }
01928 }
01929
01930 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01931 public global::System.Data.DataColumn DATE_VALUEColumn {
01932 get {
01933 return this.columnDATE_VALUE;
01934 }
01935 }
01936
01937 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01938 public global::System.Data.DataColumn CODE_VALUEColumn {
01939 get {
01940 return this.columnCODE_VALUE;
01941 }
01942 }
01943
01944 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01945 public global::System.Data.DataColumn DUR_VALUEColumn {
01946 get {
01947 return this.columnDUR_VALUE;
01948 }
01949 }
01950
01951 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01952 public global::System.Data.DataColumn NUM_VALUEColumn {
01953 get {
01954 return this.columnNUM_VALUE;
01955 }
01956 }
01957
01958 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01959 public global::System.Data.DataColumn DUR_FMTColumn {
01960 get {
01961 return this.columnDUR_FMT;
01962 }
01963 }
01964
01965 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01966 [global::System.ComponentModel.Browsable(false)]
01967 public int Count {
01968 get {
01969 return this.Rows.Count;
01970 }
01971 }
01972
01973 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01974 public ResourceCustomFieldsRow this[int index] {
01975 get {
01976 return ((ResourceCustomFieldsRow)(this.Rows[index]));
01977 }
01978 }
01979
01980 public event ResourceCustomFieldsRowChangeEventHandler ResourceCustomFieldsRowChanging;
01981
01982 public event ResourceCustomFieldsRowChangeEventHandler ResourceCustomFieldsRowChanged;
01983
01984 public event ResourceCustomFieldsRowChangeEventHandler ResourceCustomFieldsRowDeleting;
01985
01986 public event ResourceCustomFieldsRowChangeEventHandler ResourceCustomFieldsRowDeleted;
01987
01988 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01989 public void AddResourceCustomFieldsRow(ResourceCustomFieldsRow row) {
01990 this.Rows.Add(row);
01991 }
01992
01993 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
01994 public ResourceCustomFieldsRow AddResourceCustomFieldsRow(System.Guid CUSTOM_FIELD_UID, ResourcesRow parentResourcesRowByResourcesResourceCustomFields, System.Guid MD_PROP_UID, bool FLAG_VALUE, int MD_PROP_ID, string MD_PROP_NAME, string TEXT_VALUE, byte FIELD_TYPE_ENUM, System.DateTime DATE_VALUE, System.Guid CODE_VALUE, int DUR_VALUE, decimal NUM_VALUE, byte DUR_FMT) {
01995 ResourceCustomFieldsRow rowResourceCustomFieldsRow = ((ResourceCustomFieldsRow)(this.NewRow()));
01996 object[] columnValuesArray = new object[] {
01997 CUSTOM_FIELD_UID,
01998 null,
01999 MD_PROP_UID,
02000 FLAG_VALUE,
02001 MD_PROP_ID,
02002 MD_PROP_NAME,
02003 TEXT_VALUE,
02004 FIELD_TYPE_ENUM,
02005 DATE_VALUE,
02006 CODE_VALUE,
02007 DUR_VALUE,
02008 NUM_VALUE,
02009 DUR_FMT};
02010 if ((parentResourcesRowByResourcesResourceCustomFields != null)) {
02011 columnValuesArray[1] = parentResourcesRowByResourcesResourceCustomFields[0];
02012 }
02013 rowResourceCustomFieldsRow.ItemArray = columnValuesArray;
02014 this.Rows.Add(rowResourceCustomFieldsRow);
02015 return rowResourceCustomFieldsRow;
02016 }
02017
02018 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02019 public ResourceCustomFieldsRow FindByCUSTOM_FIELD_UID(System.Guid CUSTOM_FIELD_UID) {
02020 return ((ResourceCustomFieldsRow)(this.Rows.Find(new object[] {
02021 CUSTOM_FIELD_UID})));
02022 }
02023
02024 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02025 public virtual global::System.Collections.IEnumerator GetEnumerator() {
02026 return this.Rows.GetEnumerator();
02027 }
02028
02029 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02030 public override global::System.Data.DataTable Clone() {
02031 ResourceCustomFieldsDataTable cln = ((ResourceCustomFieldsDataTable)(base.Clone()));
02032 cln.InitVars();
02033 return cln;
02034 }
02035
02036 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02037 protected override global::System.Data.DataTable CreateInstance() {
02038 return new ResourceCustomFieldsDataTable();
02039 }
02040
02041 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02042 internal void InitVars() {
02043 this.columnCUSTOM_FIELD_UID = base.Columns["CUSTOM_FIELD_UID"];
02044 this.columnRES_UID = base.Columns["RES_UID"];
02045 this.columnMD_PROP_UID = base.Columns["MD_PROP_UID"];
02046 this.columnFLAG_VALUE = base.Columns["FLAG_VALUE"];
02047 this.columnMD_PROP_ID = base.Columns["MD_PROP_ID"];
02048 this.columnMD_PROP_NAME = base.Columns["MD_PROP_NAME"];
02049 this.columnTEXT_VALUE = base.Columns["TEXT_VALUE"];
02050 this.columnFIELD_TYPE_ENUM = base.Columns["FIELD_TYPE_ENUM"];
02051 this.columnDATE_VALUE = base.Columns["DATE_VALUE"];
02052 this.columnCODE_VALUE = base.Columns["CODE_VALUE"];
02053 this.columnDUR_VALUE = base.Columns["DUR_VALUE"];
02054 this.columnNUM_VALUE = base.Columns["NUM_VALUE"];
02055 this.columnDUR_FMT = base.Columns["DUR_FMT"];
02056 }
02057
02058 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02059 private void InitClass() {
02060 this.columnCUSTOM_FIELD_UID = new global::System.Data.DataColumn("CUSTOM_FIELD_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
02061 base.Columns.Add(this.columnCUSTOM_FIELD_UID);
02062 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
02063 base.Columns.Add(this.columnRES_UID);
02064 this.columnMD_PROP_UID = new global::System.Data.DataColumn("MD_PROP_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
02065 base.Columns.Add(this.columnMD_PROP_UID);
02066 this.columnFLAG_VALUE = new global::System.Data.DataColumn("FLAG_VALUE", typeof(bool), null, global::System.Data.MappingType.Element);
02067 base.Columns.Add(this.columnFLAG_VALUE);
02068 this.columnMD_PROP_ID = new global::System.Data.DataColumn("MD_PROP_ID", typeof(int), null, global::System.Data.MappingType.Element);
02069 base.Columns.Add(this.columnMD_PROP_ID);
02070 this.columnMD_PROP_NAME = new global::System.Data.DataColumn("MD_PROP_NAME", typeof(string), null, global::System.Data.MappingType.Element);
02071 base.Columns.Add(this.columnMD_PROP_NAME);
02072 this.columnTEXT_VALUE = new global::System.Data.DataColumn("TEXT_VALUE", typeof(string), null, global::System.Data.MappingType.Element);
02073 base.Columns.Add(this.columnTEXT_VALUE);
02074 this.columnFIELD_TYPE_ENUM = new global::System.Data.DataColumn("FIELD_TYPE_ENUM", typeof(byte), null, global::System.Data.MappingType.Element);
02075 base.Columns.Add(this.columnFIELD_TYPE_ENUM);
02076 this.columnDATE_VALUE = new global::System.Data.DataColumn("DATE_VALUE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
02077 base.Columns.Add(this.columnDATE_VALUE);
02078 this.columnCODE_VALUE = new global::System.Data.DataColumn("CODE_VALUE", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
02079 base.Columns.Add(this.columnCODE_VALUE);
02080 this.columnDUR_VALUE = new global::System.Data.DataColumn("DUR_VALUE", typeof(int), null, global::System.Data.MappingType.Element);
02081 base.Columns.Add(this.columnDUR_VALUE);
02082 this.columnNUM_VALUE = new global::System.Data.DataColumn("NUM_VALUE", typeof(decimal), null, global::System.Data.MappingType.Element);
02083 base.Columns.Add(this.columnNUM_VALUE);
02084 this.columnDUR_FMT = new global::System.Data.DataColumn("DUR_FMT", typeof(byte), null, global::System.Data.MappingType.Element);
02085 base.Columns.Add(this.columnDUR_FMT);
02086 this.Constraints.Add(new global::System.Data.UniqueConstraint("ResourceDataSetKey3", new global::System.Data.DataColumn[] {
02087 this.columnCUSTOM_FIELD_UID}, true));
02088 this.columnCUSTOM_FIELD_UID.AllowDBNull = false;
02089 this.columnCUSTOM_FIELD_UID.Unique = true;
02090 this.columnRES_UID.AllowDBNull = false;
02091 }
02092
02093 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02094 public ResourceCustomFieldsRow NewResourceCustomFieldsRow() {
02095 return ((ResourceCustomFieldsRow)(this.NewRow()));
02096 }
02097
02098 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02099 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
02100 return new ResourceCustomFieldsRow(builder);
02101 }
02102
02103 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02104 protected override global::System.Type GetRowType() {
02105 return typeof(ResourceCustomFieldsRow);
02106 }
02107
02108 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02109 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
02110 base.OnRowChanged(e);
02111 if ((this.ResourceCustomFieldsRowChanged != null)) {
02112 this.ResourceCustomFieldsRowChanged(this, new ResourceCustomFieldsRowChangeEvent(((ResourceCustomFieldsRow)(e.Row)), e.Action));
02113 }
02114 }
02115
02116 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02117 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
02118 base.OnRowChanging(e);
02119 if ((this.ResourceCustomFieldsRowChanging != null)) {
02120 this.ResourceCustomFieldsRowChanging(this, new ResourceCustomFieldsRowChangeEvent(((ResourceCustomFieldsRow)(e.Row)), e.Action));
02121 }
02122 }
02123
02124 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02125 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
02126 base.OnRowDeleted(e);
02127 if ((this.ResourceCustomFieldsRowDeleted != null)) {
02128 this.ResourceCustomFieldsRowDeleted(this, new ResourceCustomFieldsRowChangeEvent(((ResourceCustomFieldsRow)(e.Row)), e.Action));
02129 }
02130 }
02131
02132 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02133 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
02134 base.OnRowDeleting(e);
02135 if ((this.ResourceCustomFieldsRowDeleting != null)) {
02136 this.ResourceCustomFieldsRowDeleting(this, new ResourceCustomFieldsRowChangeEvent(((ResourceCustomFieldsRow)(e.Row)), e.Action));
02137 }
02138 }
02139
02140 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02141 public void RemoveResourceCustomFieldsRow(ResourceCustomFieldsRow row) {
02142 this.Rows.Remove(row);
02143 }
02144
02145 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02146 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
02147 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
02148 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
02149 ResourceDataSet ds = new ResourceDataSet();
02150 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
02151 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
02152 any1.MinOccurs = new decimal(0);
02153 any1.MaxOccurs = decimal.MaxValue;
02154 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
02155 sequence.Items.Add(any1);
02156 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
02157 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
02158 any2.MinOccurs = new decimal(1);
02159 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
02160 sequence.Items.Add(any2);
02161 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
02162 attribute1.Name = "namespace";
02163 attribute1.FixedValue = ds.Namespace;
02164 type.Attributes.Add(attribute1);
02165 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
02166 attribute2.Name = "tableTypeName";
02167 attribute2.FixedValue = "ResourceCustomFieldsDataTable";
02168 type.Attributes.Add(attribute2);
02169 type.Particle = sequence;
02170 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
02171 if (xs.Contains(dsSchema.TargetNamespace)) {
02172 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
02173 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
02174 try {
02175 global::System.Xml.Schema.XmlSchema schema = null;
02176 dsSchema.Write(s1);
02177 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
02178 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
02179 s2.SetLength(0);
02180 schema.Write(s2);
02181 if ((s1.Length == s2.Length)) {
02182 s1.Position = 0;
02183 s2.Position = 0;
02184 for (; ((s1.Position != s1.Length)
02185 && (s1.ReadByte() == s2.ReadByte())); ) {
02186 ;
02187 }
02188 if ((s1.Position == s1.Length)) {
02189 return type;
02190 }
02191 }
02192 }
02193 }
02194 finally {
02195 if ((s1 != null)) {
02196 s1.Close();
02197 }
02198 if ((s2 != null)) {
02199 s2.Close();
02200 }
02201 }
02202 }
02203 xs.Add(dsSchema);
02204 return type;
02205 }
02206 }
02207
02208
02209
02210
02211 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
02212 [global::System.Serializable()]
02213 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
02214 public partial class CalendarExceptionsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
02215
02216 private global::System.Data.DataColumn columnRES_UID;
02217
02218 private global::System.Data.DataColumn columnName;
02219
02220 private global::System.Data.DataColumn columnStart;
02221
02222 private global::System.Data.DataColumn columnFinish;
02223
02224 private global::System.Data.DataColumn columnShift1Start;
02225
02226 private global::System.Data.DataColumn columnShift1Finish;
02227
02228 private global::System.Data.DataColumn columnShift2Start;
02229
02230 private global::System.Data.DataColumn columnShift2Finish;
02231
02232 private global::System.Data.DataColumn columnShift3Start;
02233
02234 private global::System.Data.DataColumn columnShift3Finish;
02235
02236 private global::System.Data.DataColumn columnShift4Start;
02237
02238 private global::System.Data.DataColumn columnShift4Finish;
02239
02240 private global::System.Data.DataColumn columnShift5Start;
02241
02242 private global::System.Data.DataColumn columnShift5Finish;
02243
02244 private global::System.Data.DataColumn columnRecurrenceType;
02245
02246 private global::System.Data.DataColumn columnRecurrenceFrequency;
02247
02248 private global::System.Data.DataColumn columnRecurrenceDays;
02249
02250 private global::System.Data.DataColumn columnRecurrenceMonthDay;
02251
02252 private global::System.Data.DataColumn columnRecurrenceMonth;
02253
02254 private global::System.Data.DataColumn columnRecurrencePosition;
02255
02256 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02257 public CalendarExceptionsDataTable() {
02258 this.TableName = "CalendarExceptions";
02259 this.BeginInit();
02260 this.InitClass();
02261 this.EndInit();
02262 }
02263
02264 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02265 internal CalendarExceptionsDataTable(global::System.Data.DataTable table) {
02266 this.TableName = table.TableName;
02267 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
02268 this.CaseSensitive = table.CaseSensitive;
02269 }
02270 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
02271 this.Locale = table.Locale;
02272 }
02273 if ((table.Namespace != table.DataSet.Namespace)) {
02274 this.Namespace = table.Namespace;
02275 }
02276 this.Prefix = table.Prefix;
02277 this.MinimumCapacity = table.MinimumCapacity;
02278 }
02279
02280 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02281 protected CalendarExceptionsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
02282 base(info, context) {
02283 this.InitVars();
02284 }
02285
02286 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02287 public global::System.Data.DataColumn RES_UIDColumn {
02288 get {
02289 return this.columnRES_UID;
02290 }
02291 }
02292
02293 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02294 public global::System.Data.DataColumn NameColumn {
02295 get {
02296 return this.columnName;
02297 }
02298 }
02299
02300 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02301 public global::System.Data.DataColumn StartColumn {
02302 get {
02303 return this.columnStart;
02304 }
02305 }
02306
02307 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02308 public global::System.Data.DataColumn FinishColumn {
02309 get {
02310 return this.columnFinish;
02311 }
02312 }
02313
02314 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02315 public global::System.Data.DataColumn Shift1StartColumn {
02316 get {
02317 return this.columnShift1Start;
02318 }
02319 }
02320
02321 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02322 public global::System.Data.DataColumn Shift1FinishColumn {
02323 get {
02324 return this.columnShift1Finish;
02325 }
02326 }
02327
02328 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02329 public global::System.Data.DataColumn Shift2StartColumn {
02330 get {
02331 return this.columnShift2Start;
02332 }
02333 }
02334
02335 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02336 public global::System.Data.DataColumn Shift2FinishColumn {
02337 get {
02338 return this.columnShift2Finish;
02339 }
02340 }
02341
02342 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02343 public global::System.Data.DataColumn Shift3StartColumn {
02344 get {
02345 return this.columnShift3Start;
02346 }
02347 }
02348
02349 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02350 public global::System.Data.DataColumn Shift3FinishColumn {
02351 get {
02352 return this.columnShift3Finish;
02353 }
02354 }
02355
02356 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02357 public global::System.Data.DataColumn Shift4StartColumn {
02358 get {
02359 return this.columnShift4Start;
02360 }
02361 }
02362
02363 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02364 public global::System.Data.DataColumn Shift4FinishColumn {
02365 get {
02366 return this.columnShift4Finish;
02367 }
02368 }
02369
02370 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02371 public global::System.Data.DataColumn Shift5StartColumn {
02372 get {
02373 return this.columnShift5Start;
02374 }
02375 }
02376
02377 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02378 public global::System.Data.DataColumn Shift5FinishColumn {
02379 get {
02380 return this.columnShift5Finish;
02381 }
02382 }
02383
02384 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02385 public global::System.Data.DataColumn RecurrenceTypeColumn {
02386 get {
02387 return this.columnRecurrenceType;
02388 }
02389 }
02390
02391 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02392 public global::System.Data.DataColumn RecurrenceFrequencyColumn {
02393 get {
02394 return this.columnRecurrenceFrequency;
02395 }
02396 }
02397
02398 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02399 public global::System.Data.DataColumn RecurrenceDaysColumn {
02400 get {
02401 return this.columnRecurrenceDays;
02402 }
02403 }
02404
02405 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02406 public global::System.Data.DataColumn RecurrenceMonthDayColumn {
02407 get {
02408 return this.columnRecurrenceMonthDay;
02409 }
02410 }
02411
02412 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02413 public global::System.Data.DataColumn RecurrenceMonthColumn {
02414 get {
02415 return this.columnRecurrenceMonth;
02416 }
02417 }
02418
02419 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02420 public global::System.Data.DataColumn RecurrencePositionColumn {
02421 get {
02422 return this.columnRecurrencePosition;
02423 }
02424 }
02425
02426 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02427 [global::System.ComponentModel.Browsable(false)]
02428 public int Count {
02429 get {
02430 return this.Rows.Count;
02431 }
02432 }
02433
02434 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02435 public CalendarExceptionsRow this[int index] {
02436 get {
02437 return ((CalendarExceptionsRow)(this.Rows[index]));
02438 }
02439 }
02440
02441 public event CalendarExceptionsRowChangeEventHandler CalendarExceptionsRowChanging;
02442
02443 public event CalendarExceptionsRowChangeEventHandler CalendarExceptionsRowChanged;
02444
02445 public event CalendarExceptionsRowChangeEventHandler CalendarExceptionsRowDeleting;
02446
02447 public event CalendarExceptionsRowChangeEventHandler CalendarExceptionsRowDeleted;
02448
02449 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02450 public void AddCalendarExceptionsRow(CalendarExceptionsRow row) {
02451 this.Rows.Add(row);
02452 }
02453
02454 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02455 public CalendarExceptionsRow AddCalendarExceptionsRow(
02456 ResourcesRow parentResourcesRowByResourcesCalendarExceptions,
02457 string Name,
02458 System.DateTime Start,
02459 System.DateTime Finish,
02460 int Shift1Start,
02461 int Shift1Finish,
02462 int Shift2Start,
02463 int Shift2Finish,
02464 int Shift3Start,
02465 int Shift3Finish,
02466 int Shift4Start,
02467 int Shift4Finish,
02468 int Shift5Start,
02469 int Shift5Finish,
02470 int RecurrenceType,
02471 int RecurrenceFrequency,
02472 int RecurrenceDays,
02473 int RecurrenceMonthDay,
02474 int RecurrenceMonth,
02475 int RecurrencePosition) {
02476 CalendarExceptionsRow rowCalendarExceptionsRow = ((CalendarExceptionsRow)(this.NewRow()));
02477 object[] columnValuesArray = new object[] {
02478 null,
02479 Name,
02480 Start,
02481 Finish,
02482 Shift1Start,
02483 Shift1Finish,
02484 Shift2Start,
02485 Shift2Finish,
02486 Shift3Start,
02487 Shift3Finish,
02488 Shift4Start,
02489 Shift4Finish,
02490 Shift5Start,
02491 Shift5Finish,
02492 RecurrenceType,
02493 RecurrenceFrequency,
02494 RecurrenceDays,
02495 RecurrenceMonthDay,
02496 RecurrenceMonth,
02497 RecurrencePosition};
02498 if ((parentResourcesRowByResourcesCalendarExceptions != null)) {
02499 columnValuesArray[0] = parentResourcesRowByResourcesCalendarExceptions[0];
02500 }
02501 rowCalendarExceptionsRow.ItemArray = columnValuesArray;
02502 this.Rows.Add(rowCalendarExceptionsRow);
02503 return rowCalendarExceptionsRow;
02504 }
02505
02506 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02507 public virtual global::System.Collections.IEnumerator GetEnumerator() {
02508 return this.Rows.GetEnumerator();
02509 }
02510
02511 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02512 public override global::System.Data.DataTable Clone() {
02513 CalendarExceptionsDataTable cln = ((CalendarExceptionsDataTable)(base.Clone()));
02514 cln.InitVars();
02515 return cln;
02516 }
02517
02518 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02519 protected override global::System.Data.DataTable CreateInstance() {
02520 return new CalendarExceptionsDataTable();
02521 }
02522
02523 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02524 internal void InitVars() {
02525 this.columnRES_UID = base.Columns["RES_UID"];
02526 this.columnName = base.Columns["Name"];
02527 this.columnStart = base.Columns["Start"];
02528 this.columnFinish = base.Columns["Finish"];
02529 this.columnShift1Start = base.Columns["Shift1Start"];
02530 this.columnShift1Finish = base.Columns["Shift1Finish"];
02531 this.columnShift2Start = base.Columns["Shift2Start"];
02532 this.columnShift2Finish = base.Columns["Shift2Finish"];
02533 this.columnShift3Start = base.Columns["Shift3Start"];
02534 this.columnShift3Finish = base.Columns["Shift3Finish"];
02535 this.columnShift4Start = base.Columns["Shift4Start"];
02536 this.columnShift4Finish = base.Columns["Shift4Finish"];
02537 this.columnShift5Start = base.Columns["Shift5Start"];
02538 this.columnShift5Finish = base.Columns["Shift5Finish"];
02539 this.columnRecurrenceType = base.Columns["RecurrenceType"];
02540 this.columnRecurrenceFrequency = base.Columns["RecurrenceFrequency"];
02541 this.columnRecurrenceDays = base.Columns["RecurrenceDays"];
02542 this.columnRecurrenceMonthDay = base.Columns["RecurrenceMonthDay"];
02543 this.columnRecurrenceMonth = base.Columns["RecurrenceMonth"];
02544 this.columnRecurrencePosition = base.Columns["RecurrencePosition"];
02545 }
02546
02547 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02548 private void InitClass() {
02549 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
02550 base.Columns.Add(this.columnRES_UID);
02551 this.columnName = new global::System.Data.DataColumn("Name", typeof(string), null, global::System.Data.MappingType.Element);
02552 base.Columns.Add(this.columnName);
02553 this.columnStart = new global::System.Data.DataColumn("Start", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
02554 base.Columns.Add(this.columnStart);
02555 this.columnFinish = new global::System.Data.DataColumn("Finish", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
02556 base.Columns.Add(this.columnFinish);
02557 this.columnShift1Start = new global::System.Data.DataColumn("Shift1Start", typeof(int), null, global::System.Data.MappingType.Element);
02558 base.Columns.Add(this.columnShift1Start);
02559 this.columnShift1Finish = new global::System.Data.DataColumn("Shift1Finish", typeof(int), null, global::System.Data.MappingType.Element);
02560 base.Columns.Add(this.columnShift1Finish);
02561 this.columnShift2Start = new global::System.Data.DataColumn("Shift2Start", typeof(int), null, global::System.Data.MappingType.Element);
02562 base.Columns.Add(this.columnShift2Start);
02563 this.columnShift2Finish = new global::System.Data.DataColumn("Shift2Finish", typeof(int), null, global::System.Data.MappingType.Element);
02564 base.Columns.Add(this.columnShift2Finish);
02565 this.columnShift3Start = new global::System.Data.DataColumn("Shift3Start", typeof(int), null, global::System.Data.MappingType.Element);
02566 base.Columns.Add(this.columnShift3Start);
02567 this.columnShift3Finish = new global::System.Data.DataColumn("Shift3Finish", typeof(int), null, global::System.Data.MappingType.Element);
02568 base.Columns.Add(this.columnShift3Finish);
02569 this.columnShift4Start = new global::System.Data.DataColumn("Shift4Start", typeof(int), null, global::System.Data.MappingType.Element);
02570 base.Columns.Add(this.columnShift4Start);
02571 this.columnShift4Finish = new global::System.Data.DataColumn("Shift4Finish", typeof(int), null, global::System.Data.MappingType.Element);
02572 base.Columns.Add(this.columnShift4Finish);
02573 this.columnShift5Start = new global::System.Data.DataColumn("Shift5Start", typeof(int), null, global::System.Data.MappingType.Element);
02574 base.Columns.Add(this.columnShift5Start);
02575 this.columnShift5Finish = new global::System.Data.DataColumn("Shift5Finish", typeof(int), null, global::System.Data.MappingType.Element);
02576 base.Columns.Add(this.columnShift5Finish);
02577 this.columnRecurrenceType = new global::System.Data.DataColumn("RecurrenceType", typeof(int), null, global::System.Data.MappingType.Element);
02578 base.Columns.Add(this.columnRecurrenceType);
02579 this.columnRecurrenceFrequency = new global::System.Data.DataColumn("RecurrenceFrequency", typeof(int), null, global::System.Data.MappingType.Element);
02580 base.Columns.Add(this.columnRecurrenceFrequency);
02581 this.columnRecurrenceDays = new global::System.Data.DataColumn("RecurrenceDays", typeof(int), null, global::System.Data.MappingType.Element);
02582 base.Columns.Add(this.columnRecurrenceDays);
02583 this.columnRecurrenceMonthDay = new global::System.Data.DataColumn("RecurrenceMonthDay", typeof(int), null, global::System.Data.MappingType.Element);
02584 base.Columns.Add(this.columnRecurrenceMonthDay);
02585 this.columnRecurrenceMonth = new global::System.Data.DataColumn("RecurrenceMonth", typeof(int), null, global::System.Data.MappingType.Element);
02586 base.Columns.Add(this.columnRecurrenceMonth);
02587 this.columnRecurrencePosition = new global::System.Data.DataColumn("RecurrencePosition", typeof(int), null, global::System.Data.MappingType.Element);
02588 base.Columns.Add(this.columnRecurrencePosition);
02589 this.columnRES_UID.AllowDBNull = false;
02590 this.columnName.AllowDBNull = false;
02591 this.columnStart.AllowDBNull = false;
02592 this.columnFinish.AllowDBNull = false;
02593 this.columnRecurrenceType.AllowDBNull = false;
02594 this.columnRecurrenceFrequency.AllowDBNull = false;
02595 }
02596
02597 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02598 public CalendarExceptionsRow NewCalendarExceptionsRow() {
02599 return ((CalendarExceptionsRow)(this.NewRow()));
02600 }
02601
02602 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02603 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
02604 return new CalendarExceptionsRow(builder);
02605 }
02606
02607 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02608 protected override global::System.Type GetRowType() {
02609 return typeof(CalendarExceptionsRow);
02610 }
02611
02612 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02613 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
02614 base.OnRowChanged(e);
02615 if ((this.CalendarExceptionsRowChanged != null)) {
02616 this.CalendarExceptionsRowChanged(this, new CalendarExceptionsRowChangeEvent(((CalendarExceptionsRow)(e.Row)), e.Action));
02617 }
02618 }
02619
02620 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02621 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
02622 base.OnRowChanging(e);
02623 if ((this.CalendarExceptionsRowChanging != null)) {
02624 this.CalendarExceptionsRowChanging(this, new CalendarExceptionsRowChangeEvent(((CalendarExceptionsRow)(e.Row)), e.Action));
02625 }
02626 }
02627
02628 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02629 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
02630 base.OnRowDeleted(e);
02631 if ((this.CalendarExceptionsRowDeleted != null)) {
02632 this.CalendarExceptionsRowDeleted(this, new CalendarExceptionsRowChangeEvent(((CalendarExceptionsRow)(e.Row)), e.Action));
02633 }
02634 }
02635
02636 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02637 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
02638 base.OnRowDeleting(e);
02639 if ((this.CalendarExceptionsRowDeleting != null)) {
02640 this.CalendarExceptionsRowDeleting(this, new CalendarExceptionsRowChangeEvent(((CalendarExceptionsRow)(e.Row)), e.Action));
02641 }
02642 }
02643
02644 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02645 public void RemoveCalendarExceptionsRow(CalendarExceptionsRow row) {
02646 this.Rows.Remove(row);
02647 }
02648
02649 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02650 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
02651 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
02652 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
02653 ResourceDataSet ds = new ResourceDataSet();
02654 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
02655 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
02656 any1.MinOccurs = new decimal(0);
02657 any1.MaxOccurs = decimal.MaxValue;
02658 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
02659 sequence.Items.Add(any1);
02660 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
02661 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
02662 any2.MinOccurs = new decimal(1);
02663 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
02664 sequence.Items.Add(any2);
02665 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
02666 attribute1.Name = "namespace";
02667 attribute1.FixedValue = ds.Namespace;
02668 type.Attributes.Add(attribute1);
02669 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
02670 attribute2.Name = "tableTypeName";
02671 attribute2.FixedValue = "CalendarExceptionsDataTable";
02672 type.Attributes.Add(attribute2);
02673 type.Particle = sequence;
02674 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
02675 if (xs.Contains(dsSchema.TargetNamespace)) {
02676 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
02677 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
02678 try {
02679 global::System.Xml.Schema.XmlSchema schema = null;
02680 dsSchema.Write(s1);
02681 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
02682 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
02683 s2.SetLength(0);
02684 schema.Write(s2);
02685 if ((s1.Length == s2.Length)) {
02686 s1.Position = 0;
02687 s2.Position = 0;
02688 for (; ((s1.Position != s1.Length)
02689 && (s1.ReadByte() == s2.ReadByte())); ) {
02690 ;
02691 }
02692 if ((s1.Position == s1.Length)) {
02693 return type;
02694 }
02695 }
02696 }
02697 }
02698 finally {
02699 if ((s1 != null)) {
02700 s1.Close();
02701 }
02702 if ((s2 != null)) {
02703 s2.Close();
02704 }
02705 }
02706 }
02707 xs.Add(dsSchema);
02708 return type;
02709 }
02710 }
02711
02712
02713
02714
02715 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
02716 [global::System.Serializable()]
02717 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
02718 public partial class ResourceRatesDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
02719
02720 private global::System.Data.DataColumn columnRES_UID;
02721
02722 private global::System.Data.DataColumn columnRES_RATE_TABLE;
02723
02724 private global::System.Data.DataColumn columnRES_RATE_EFFECTIVE_DATE;
02725
02726 private global::System.Data.DataColumn columnRES_STD_RATE;
02727
02728 private global::System.Data.DataColumn columnRES_OVT_RATE;
02729
02730 private global::System.Data.DataColumn columnRES_COST_PER_USE;
02731
02732 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02733 public ResourceRatesDataTable() {
02734 this.TableName = "ResourceRates";
02735 this.BeginInit();
02736 this.InitClass();
02737 this.EndInit();
02738 }
02739
02740 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02741 internal ResourceRatesDataTable(global::System.Data.DataTable table) {
02742 this.TableName = table.TableName;
02743 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
02744 this.CaseSensitive = table.CaseSensitive;
02745 }
02746 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
02747 this.Locale = table.Locale;
02748 }
02749 if ((table.Namespace != table.DataSet.Namespace)) {
02750 this.Namespace = table.Namespace;
02751 }
02752 this.Prefix = table.Prefix;
02753 this.MinimumCapacity = table.MinimumCapacity;
02754 }
02755
02756 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02757 protected ResourceRatesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
02758 base(info, context) {
02759 this.InitVars();
02760 }
02761
02762 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02763 public global::System.Data.DataColumn RES_UIDColumn {
02764 get {
02765 return this.columnRES_UID;
02766 }
02767 }
02768
02769 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02770 public global::System.Data.DataColumn RES_RATE_TABLEColumn {
02771 get {
02772 return this.columnRES_RATE_TABLE;
02773 }
02774 }
02775
02776 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02777 public global::System.Data.DataColumn RES_RATE_EFFECTIVE_DATEColumn {
02778 get {
02779 return this.columnRES_RATE_EFFECTIVE_DATE;
02780 }
02781 }
02782
02783 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02784 public global::System.Data.DataColumn RES_STD_RATEColumn {
02785 get {
02786 return this.columnRES_STD_RATE;
02787 }
02788 }
02789
02790 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02791 public global::System.Data.DataColumn RES_OVT_RATEColumn {
02792 get {
02793 return this.columnRES_OVT_RATE;
02794 }
02795 }
02796
02797 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02798 public global::System.Data.DataColumn RES_COST_PER_USEColumn {
02799 get {
02800 return this.columnRES_COST_PER_USE;
02801 }
02802 }
02803
02804 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02805 [global::System.ComponentModel.Browsable(false)]
02806 public int Count {
02807 get {
02808 return this.Rows.Count;
02809 }
02810 }
02811
02812 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02813 public ResourceRatesRow this[int index] {
02814 get {
02815 return ((ResourceRatesRow)(this.Rows[index]));
02816 }
02817 }
02818
02819 public event ResourceRatesRowChangeEventHandler ResourceRatesRowChanging;
02820
02821 public event ResourceRatesRowChangeEventHandler ResourceRatesRowChanged;
02822
02823 public event ResourceRatesRowChangeEventHandler ResourceRatesRowDeleting;
02824
02825 public event ResourceRatesRowChangeEventHandler ResourceRatesRowDeleted;
02826
02827 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02828 public void AddResourceRatesRow(ResourceRatesRow row) {
02829 this.Rows.Add(row);
02830 }
02831
02832 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02833 public ResourceRatesRow AddResourceRatesRow(ResourcesRow parentResourcesRowByResourcesResourceRates, int RES_RATE_TABLE, System.DateTime RES_RATE_EFFECTIVE_DATE, double RES_STD_RATE, double RES_OVT_RATE, double RES_COST_PER_USE) {
02834 ResourceRatesRow rowResourceRatesRow = ((ResourceRatesRow)(this.NewRow()));
02835 object[] columnValuesArray = new object[] {
02836 null,
02837 RES_RATE_TABLE,
02838 RES_RATE_EFFECTIVE_DATE,
02839 RES_STD_RATE,
02840 RES_OVT_RATE,
02841 RES_COST_PER_USE};
02842 if ((parentResourcesRowByResourcesResourceRates != null)) {
02843 columnValuesArray[0] = parentResourcesRowByResourcesResourceRates[0];
02844 }
02845 rowResourceRatesRow.ItemArray = columnValuesArray;
02846 this.Rows.Add(rowResourceRatesRow);
02847 return rowResourceRatesRow;
02848 }
02849
02850 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02851 public virtual global::System.Collections.IEnumerator GetEnumerator() {
02852 return this.Rows.GetEnumerator();
02853 }
02854
02855 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02856 public override global::System.Data.DataTable Clone() {
02857 ResourceRatesDataTable cln = ((ResourceRatesDataTable)(base.Clone()));
02858 cln.InitVars();
02859 return cln;
02860 }
02861
02862 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02863 protected override global::System.Data.DataTable CreateInstance() {
02864 return new ResourceRatesDataTable();
02865 }
02866
02867 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02868 internal void InitVars() {
02869 this.columnRES_UID = base.Columns["RES_UID"];
02870 this.columnRES_RATE_TABLE = base.Columns["RES_RATE_TABLE"];
02871 this.columnRES_RATE_EFFECTIVE_DATE = base.Columns["RES_RATE_EFFECTIVE_DATE"];
02872 this.columnRES_STD_RATE = base.Columns["RES_STD_RATE"];
02873 this.columnRES_OVT_RATE = base.Columns["RES_OVT_RATE"];
02874 this.columnRES_COST_PER_USE = base.Columns["RES_COST_PER_USE"];
02875 }
02876
02877 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02878 private void InitClass() {
02879 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
02880 base.Columns.Add(this.columnRES_UID);
02881 this.columnRES_RATE_TABLE = new global::System.Data.DataColumn("RES_RATE_TABLE", typeof(int), null, global::System.Data.MappingType.Element);
02882 base.Columns.Add(this.columnRES_RATE_TABLE);
02883 this.columnRES_RATE_EFFECTIVE_DATE = new global::System.Data.DataColumn("RES_RATE_EFFECTIVE_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
02884 base.Columns.Add(this.columnRES_RATE_EFFECTIVE_DATE);
02885 this.columnRES_STD_RATE = new global::System.Data.DataColumn("RES_STD_RATE", typeof(double), null, global::System.Data.MappingType.Element);
02886 base.Columns.Add(this.columnRES_STD_RATE);
02887 this.columnRES_OVT_RATE = new global::System.Data.DataColumn("RES_OVT_RATE", typeof(double), null, global::System.Data.MappingType.Element);
02888 base.Columns.Add(this.columnRES_OVT_RATE);
02889 this.columnRES_COST_PER_USE = new global::System.Data.DataColumn("RES_COST_PER_USE", typeof(double), null, global::System.Data.MappingType.Element);
02890 base.Columns.Add(this.columnRES_COST_PER_USE);
02891 this.columnRES_UID.AllowDBNull = false;
02892 this.columnRES_RATE_TABLE.AllowDBNull = false;
02893 this.columnRES_RATE_TABLE.DefaultValue = ((int)(0));
02894 this.columnRES_STD_RATE.DefaultValue = ((double)(0));
02895 this.columnRES_OVT_RATE.DefaultValue = ((double)(0));
02896 this.columnRES_COST_PER_USE.DefaultValue = ((double)(0));
02897 }
02898
02899 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02900 public ResourceRatesRow NewResourceRatesRow() {
02901 return ((ResourceRatesRow)(this.NewRow()));
02902 }
02903
02904 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02905 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
02906 return new ResourceRatesRow(builder);
02907 }
02908
02909 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02910 protected override global::System.Type GetRowType() {
02911 return typeof(ResourceRatesRow);
02912 }
02913
02914 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02915 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
02916 base.OnRowChanged(e);
02917 if ((this.ResourceRatesRowChanged != null)) {
02918 this.ResourceRatesRowChanged(this, new ResourceRatesRowChangeEvent(((ResourceRatesRow)(e.Row)), e.Action));
02919 }
02920 }
02921
02922 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02923 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
02924 base.OnRowChanging(e);
02925 if ((this.ResourceRatesRowChanging != null)) {
02926 this.ResourceRatesRowChanging(this, new ResourceRatesRowChangeEvent(((ResourceRatesRow)(e.Row)), e.Action));
02927 }
02928 }
02929
02930 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02931 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
02932 base.OnRowDeleted(e);
02933 if ((this.ResourceRatesRowDeleted != null)) {
02934 this.ResourceRatesRowDeleted(this, new ResourceRatesRowChangeEvent(((ResourceRatesRow)(e.Row)), e.Action));
02935 }
02936 }
02937
02938 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02939 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
02940 base.OnRowDeleting(e);
02941 if ((this.ResourceRatesRowDeleting != null)) {
02942 this.ResourceRatesRowDeleting(this, new ResourceRatesRowChangeEvent(((ResourceRatesRow)(e.Row)), e.Action));
02943 }
02944 }
02945
02946 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02947 public void RemoveResourceRatesRow(ResourceRatesRow row) {
02948 this.Rows.Remove(row);
02949 }
02950
02951 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
02952 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
02953 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
02954 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
02955 ResourceDataSet ds = new ResourceDataSet();
02956 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
02957 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
02958 any1.MinOccurs = new decimal(0);
02959 any1.MaxOccurs = decimal.MaxValue;
02960 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
02961 sequence.Items.Add(any1);
02962 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
02963 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
02964 any2.MinOccurs = new decimal(1);
02965 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
02966 sequence.Items.Add(any2);
02967 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
02968 attribute1.Name = "namespace";
02969 attribute1.FixedValue = ds.Namespace;
02970 type.Attributes.Add(attribute1);
02971 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
02972 attribute2.Name = "tableTypeName";
02973 attribute2.FixedValue = "ResourceRatesDataTable";
02974 type.Attributes.Add(attribute2);
02975 type.Particle = sequence;
02976 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
02977 if (xs.Contains(dsSchema.TargetNamespace)) {
02978 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
02979 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
02980 try {
02981 global::System.Xml.Schema.XmlSchema schema = null;
02982 dsSchema.Write(s1);
02983 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
02984 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
02985 s2.SetLength(0);
02986 schema.Write(s2);
02987 if ((s1.Length == s2.Length)) {
02988 s1.Position = 0;
02989 s2.Position = 0;
02990 for (; ((s1.Position != s1.Length)
02991 && (s1.ReadByte() == s2.ReadByte())); ) {
02992 ;
02993 }
02994 if ((s1.Position == s1.Length)) {
02995 return type;
02996 }
02997 }
02998 }
02999 }
03000 finally {
03001 if ((s1 != null)) {
03002 s1.Close();
03003 }
03004 if ((s2 != null)) {
03005 s2.Close();
03006 }
03007 }
03008 }
03009 xs.Add(dsSchema);
03010 return type;
03011 }
03012 }
03013
03014
03015
03016
03017 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
03018 [global::System.Serializable()]
03019 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
03020 public partial class ResourceAvailabilitiesDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
03021
03022 private global::System.Data.DataColumn columnRES_UID;
03023
03024 private global::System.Data.DataColumn columnRES_AVAIL_FROM;
03025
03026 private global::System.Data.DataColumn columnRES_AVAIL_TO;
03027
03028 private global::System.Data.DataColumn columnRES_AVAIL_UNITS;
03029
03030 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03031 public ResourceAvailabilitiesDataTable() {
03032 this.TableName = "ResourceAvailabilities";
03033 this.BeginInit();
03034 this.InitClass();
03035 this.EndInit();
03036 }
03037
03038 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03039 internal ResourceAvailabilitiesDataTable(global::System.Data.DataTable table) {
03040 this.TableName = table.TableName;
03041 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
03042 this.CaseSensitive = table.CaseSensitive;
03043 }
03044 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
03045 this.Locale = table.Locale;
03046 }
03047 if ((table.Namespace != table.DataSet.Namespace)) {
03048 this.Namespace = table.Namespace;
03049 }
03050 this.Prefix = table.Prefix;
03051 this.MinimumCapacity = table.MinimumCapacity;
03052 }
03053
03054 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03055 protected ResourceAvailabilitiesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
03056 base(info, context) {
03057 this.InitVars();
03058 }
03059
03060 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03061 public global::System.Data.DataColumn RES_UIDColumn {
03062 get {
03063 return this.columnRES_UID;
03064 }
03065 }
03066
03067 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03068 public global::System.Data.DataColumn RES_AVAIL_FROMColumn {
03069 get {
03070 return this.columnRES_AVAIL_FROM;
03071 }
03072 }
03073
03074 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03075 public global::System.Data.DataColumn RES_AVAIL_TOColumn {
03076 get {
03077 return this.columnRES_AVAIL_TO;
03078 }
03079 }
03080
03081 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03082 public global::System.Data.DataColumn RES_AVAIL_UNITSColumn {
03083 get {
03084 return this.columnRES_AVAIL_UNITS;
03085 }
03086 }
03087
03088 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03089 [global::System.ComponentModel.Browsable(false)]
03090 public int Count {
03091 get {
03092 return this.Rows.Count;
03093 }
03094 }
03095
03096 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03097 public ResourceAvailabilitiesRow this[int index] {
03098 get {
03099 return ((ResourceAvailabilitiesRow)(this.Rows[index]));
03100 }
03101 }
03102
03103 public event ResourceAvailabilitiesRowChangeEventHandler ResourceAvailabilitiesRowChanging;
03104
03105 public event ResourceAvailabilitiesRowChangeEventHandler ResourceAvailabilitiesRowChanged;
03106
03107 public event ResourceAvailabilitiesRowChangeEventHandler ResourceAvailabilitiesRowDeleting;
03108
03109 public event ResourceAvailabilitiesRowChangeEventHandler ResourceAvailabilitiesRowDeleted;
03110
03111 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03112 public void AddResourceAvailabilitiesRow(ResourceAvailabilitiesRow row) {
03113 this.Rows.Add(row);
03114 }
03115
03116 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03117 public ResourceAvailabilitiesRow AddResourceAvailabilitiesRow(ResourcesRow parentResourcesRowByResourcesResourceAvailabilities, System.DateTime RES_AVAIL_FROM, System.DateTime RES_AVAIL_TO, double RES_AVAIL_UNITS) {
03118 ResourceAvailabilitiesRow rowResourceAvailabilitiesRow = ((ResourceAvailabilitiesRow)(this.NewRow()));
03119 object[] columnValuesArray = new object[] {
03120 null,
03121 RES_AVAIL_FROM,
03122 RES_AVAIL_TO,
03123 RES_AVAIL_UNITS};
03124 if ((parentResourcesRowByResourcesResourceAvailabilities != null)) {
03125 columnValuesArray[0] = parentResourcesRowByResourcesResourceAvailabilities[0];
03126 }
03127 rowResourceAvailabilitiesRow.ItemArray = columnValuesArray;
03128 this.Rows.Add(rowResourceAvailabilitiesRow);
03129 return rowResourceAvailabilitiesRow;
03130 }
03131
03132 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03133 public virtual global::System.Collections.IEnumerator GetEnumerator() {
03134 return this.Rows.GetEnumerator();
03135 }
03136
03137 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03138 public override global::System.Data.DataTable Clone() {
03139 ResourceAvailabilitiesDataTable cln = ((ResourceAvailabilitiesDataTable)(base.Clone()));
03140 cln.InitVars();
03141 return cln;
03142 }
03143
03144 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03145 protected override global::System.Data.DataTable CreateInstance() {
03146 return new ResourceAvailabilitiesDataTable();
03147 }
03148
03149 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03150 internal void InitVars() {
03151 this.columnRES_UID = base.Columns["RES_UID"];
03152 this.columnRES_AVAIL_FROM = base.Columns["RES_AVAIL_FROM"];
03153 this.columnRES_AVAIL_TO = base.Columns["RES_AVAIL_TO"];
03154 this.columnRES_AVAIL_UNITS = base.Columns["RES_AVAIL_UNITS"];
03155 }
03156
03157 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03158 private void InitClass() {
03159 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
03160 base.Columns.Add(this.columnRES_UID);
03161 this.columnRES_AVAIL_FROM = new global::System.Data.DataColumn("RES_AVAIL_FROM", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
03162 base.Columns.Add(this.columnRES_AVAIL_FROM);
03163 this.columnRES_AVAIL_TO = new global::System.Data.DataColumn("RES_AVAIL_TO", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
03164 base.Columns.Add(this.columnRES_AVAIL_TO);
03165 this.columnRES_AVAIL_UNITS = new global::System.Data.DataColumn("RES_AVAIL_UNITS", typeof(double), null, global::System.Data.MappingType.Element);
03166 base.Columns.Add(this.columnRES_AVAIL_UNITS);
03167 this.columnRES_UID.AllowDBNull = false;
03168 }
03169
03170 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03171 public ResourceAvailabilitiesRow NewResourceAvailabilitiesRow() {
03172 return ((ResourceAvailabilitiesRow)(this.NewRow()));
03173 }
03174
03175 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03176 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
03177 return new ResourceAvailabilitiesRow(builder);
03178 }
03179
03180 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03181 protected override global::System.Type GetRowType() {
03182 return typeof(ResourceAvailabilitiesRow);
03183 }
03184
03185 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03186 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
03187 base.OnRowChanged(e);
03188 if ((this.ResourceAvailabilitiesRowChanged != null)) {
03189 this.ResourceAvailabilitiesRowChanged(this, new ResourceAvailabilitiesRowChangeEvent(((ResourceAvailabilitiesRow)(e.Row)), e.Action));
03190 }
03191 }
03192
03193 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03194 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
03195 base.OnRowChanging(e);
03196 if ((this.ResourceAvailabilitiesRowChanging != null)) {
03197 this.ResourceAvailabilitiesRowChanging(this, new ResourceAvailabilitiesRowChangeEvent(((ResourceAvailabilitiesRow)(e.Row)), e.Action));
03198 }
03199 }
03200
03201 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03202 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
03203 base.OnRowDeleted(e);
03204 if ((this.ResourceAvailabilitiesRowDeleted != null)) {
03205 this.ResourceAvailabilitiesRowDeleted(this, new ResourceAvailabilitiesRowChangeEvent(((ResourceAvailabilitiesRow)(e.Row)), e.Action));
03206 }
03207 }
03208
03209 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03210 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
03211 base.OnRowDeleting(e);
03212 if ((this.ResourceAvailabilitiesRowDeleting != null)) {
03213 this.ResourceAvailabilitiesRowDeleting(this, new ResourceAvailabilitiesRowChangeEvent(((ResourceAvailabilitiesRow)(e.Row)), e.Action));
03214 }
03215 }
03216
03217 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03218 public void RemoveResourceAvailabilitiesRow(ResourceAvailabilitiesRow row) {
03219 this.Rows.Remove(row);
03220 }
03221
03222 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03223 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
03224 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
03225 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
03226 ResourceDataSet ds = new ResourceDataSet();
03227 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
03228 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
03229 any1.MinOccurs = new decimal(0);
03230 any1.MaxOccurs = decimal.MaxValue;
03231 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
03232 sequence.Items.Add(any1);
03233 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
03234 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
03235 any2.MinOccurs = new decimal(1);
03236 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
03237 sequence.Items.Add(any2);
03238 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
03239 attribute1.Name = "namespace";
03240 attribute1.FixedValue = ds.Namespace;
03241 type.Attributes.Add(attribute1);
03242 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
03243 attribute2.Name = "tableTypeName";
03244 attribute2.FixedValue = "ResourceAvailabilitiesDataTable";
03245 type.Attributes.Add(attribute2);
03246 type.Particle = sequence;
03247 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
03248 if (xs.Contains(dsSchema.TargetNamespace)) {
03249 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
03250 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
03251 try {
03252 global::System.Xml.Schema.XmlSchema schema = null;
03253 dsSchema.Write(s1);
03254 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
03255 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
03256 s2.SetLength(0);
03257 schema.Write(s2);
03258 if ((s1.Length == s2.Length)) {
03259 s1.Position = 0;
03260 s2.Position = 0;
03261 for (; ((s1.Position != s1.Length)
03262 && (s1.ReadByte() == s2.ReadByte())); ) {
03263 ;
03264 }
03265 if ((s1.Position == s1.Length)) {
03266 return type;
03267 }
03268 }
03269 }
03270 }
03271 finally {
03272 if ((s1 != null)) {
03273 s1.Close();
03274 }
03275 if ((s2 != null)) {
03276 s2.Close();
03277 }
03278 }
03279 }
03280 xs.Add(dsSchema);
03281 return type;
03282 }
03283 }
03284
03285
03286
03287
03288 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
03289 public partial class ResourcesRow : global::System.Data.DataRow {
03290
03291 private ResourcesDataTable tableResources;
03292
03293 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03294 internal ResourcesRow(global::System.Data.DataRowBuilder rb) :
03295 base(rb) {
03296 this.tableResources = ((ResourcesDataTable)(this.Table));
03297 }
03298
03299 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03300 public System.Guid RES_UID {
03301 get {
03302 return ((global::System.Guid)(this[this.tableResources.RES_UIDColumn]));
03303 }
03304 set {
03305 this[this.tableResources.RES_UIDColumn] = value;
03306 }
03307 }
03308
03309 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03310 public int RES_ID {
03311 get {
03312 return ((int)(this[this.tableResources.RES_IDColumn]));
03313 }
03314 set {
03315 this[this.tableResources.RES_IDColumn] = value;
03316 }
03317 }
03318
03319 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03320 public int RES_TYPE {
03321 get {
03322 return ((int)(this[this.tableResources.RES_TYPEColumn]));
03323 }
03324 set {
03325 this[this.tableResources.RES_TYPEColumn] = value;
03326 }
03327 }
03328
03329 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03330 public bool RES_HAS_NOTES {
03331 get {
03332 try {
03333 return ((bool)(this[this.tableResources.RES_HAS_NOTESColumn]));
03334 }
03335 catch (global::System.InvalidCastException e) {
03336 throw new global::System.Data.StrongTypingException("The value for column \'RES_HAS_NOTES\' in table \'Resources\' is DBNull.", e);
03337 }
03338 }
03339 set {
03340 this[this.tableResources.RES_HAS_NOTESColumn] = value;
03341 }
03342 }
03343
03344 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03345 public bool RES_CAN_LEVEL {
03346 get {
03347 try {
03348 return ((bool)(this[this.tableResources.RES_CAN_LEVELColumn]));
03349 }
03350 catch (global::System.InvalidCastException e) {
03351 throw new global::System.Data.StrongTypingException("The value for column \'RES_CAN_LEVEL\' in table \'Resources\' is DBNull.", e);
03352 }
03353 }
03354 set {
03355 this[this.tableResources.RES_CAN_LEVELColumn] = value;
03356 }
03357 }
03358
03359 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03360 public short RES_ACCRUE_AT {
03361 get {
03362 try {
03363 return ((short)(this[this.tableResources.RES_ACCRUE_ATColumn]));
03364 }
03365 catch (global::System.InvalidCastException e) {
03366 throw new global::System.Data.StrongTypingException("The value for column \'RES_ACCRUE_AT\' in table \'Resources\' is DBNull.", e);
03367 }
03368 }
03369 set {
03370 this[this.tableResources.RES_ACCRUE_ATColumn] = value;
03371 }
03372 }
03373
03374 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03375 public int RES_BOOKING_TYPE {
03376 get {
03377 try {
03378 return ((int)(this[this.tableResources.RES_BOOKING_TYPEColumn]));
03379 }
03380 catch (global::System.InvalidCastException e) {
03381 throw new global::System.Data.StrongTypingException("The value for column \'RES_BOOKING_TYPE\' in table \'Resources\' is DBNull.", e);
03382 }
03383 }
03384 set {
03385 this[this.tableResources.RES_BOOKING_TYPEColumn] = value;
03386 }
03387 }
03388
03389 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03390 public string RES_NAME {
03391 get {
03392 return ((string)(this[this.tableResources.RES_NAMEColumn]));
03393 }
03394 set {
03395 this[this.tableResources.RES_NAMEColumn] = value;
03396 }
03397 }
03398
03399 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03400 public string RES_INITIALS {
03401 get {
03402 try {
03403 return ((string)(this[this.tableResources.RES_INITIALSColumn]));
03404 }
03405 catch (global::System.InvalidCastException e) {
03406 throw new global::System.Data.StrongTypingException("The value for column \'RES_INITIALS\' in table \'Resources\' is DBNull.", e);
03407 }
03408 }
03409 set {
03410 this[this.tableResources.RES_INITIALSColumn] = value;
03411 }
03412 }
03413
03414 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03415 public string RES_PHONETICS {
03416 get {
03417 try {
03418 return ((string)(this[this.tableResources.RES_PHONETICSColumn]));
03419 }
03420 catch (global::System.InvalidCastException e) {
03421 throw new global::System.Data.StrongTypingException("The value for column \'RES_PHONETICS\' in table \'Resources\' is DBNull.", e);
03422 }
03423 }
03424 set {
03425 this[this.tableResources.RES_PHONETICSColumn] = value;
03426 }
03427 }
03428
03429 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03430 public string RES_MATERIAL_LABEL {
03431 get {
03432 try {
03433 return ((string)(this[this.tableResources.RES_MATERIAL_LABELColumn]));
03434 }
03435 catch (global::System.InvalidCastException e) {
03436 throw new global::System.Data.StrongTypingException("The value for column \'RES_MATERIAL_LABEL\' in table \'Resources\' is DBNull.", e);
03437 }
03438 }
03439 set {
03440 this[this.tableResources.RES_MATERIAL_LABELColumn] = value;
03441 }
03442 }
03443
03444 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03445 public byte[] RES_RTF_NOTES {
03446 get {
03447 try {
03448 return ((byte[])(this[this.tableResources.RES_RTF_NOTESColumn]));
03449 }
03450 catch (global::System.InvalidCastException e) {
03451 throw new global::System.Data.StrongTypingException("The value for column \'RES_RTF_NOTES\' in table \'Resources\' is DBNull.", e);
03452 }
03453 }
03454 set {
03455 this[this.tableResources.RES_RTF_NOTESColumn] = value;
03456 }
03457 }
03458
03459 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03460 public string WRES_ACCOUNT {
03461 get {
03462 try {
03463 return ((string)(this[this.tableResources.WRES_ACCOUNTColumn]));
03464 }
03465 catch (global::System.InvalidCastException e) {
03466 throw new global::System.Data.StrongTypingException("The value for column \'WRES_ACCOUNT\' in table \'Resources\' is DBNull.", e);
03467 }
03468 }
03469 set {
03470 this[this.tableResources.WRES_ACCOUNTColumn] = value;
03471 }
03472 }
03473
03474 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03475 public bool RES_IS_WINDOWS_USER {
03476 get {
03477 try {
03478 return ((bool)(this[this.tableResources.RES_IS_WINDOWS_USERColumn]));
03479 }
03480 catch (global::System.InvalidCastException e) {
03481 throw new global::System.Data.StrongTypingException("The value for column \'RES_IS_WINDOWS_USER\' in table \'Resources\' is DBNull.", e);
03482 }
03483 }
03484 set {
03485 this[this.tableResources.RES_IS_WINDOWS_USERColumn] = value;
03486 }
03487 }
03488
03489 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03490 public string WRES_EMAIL {
03491 get {
03492 try {
03493 return ((string)(this[this.tableResources.WRES_EMAILColumn]));
03494 }
03495 catch (global::System.InvalidCastException e) {
03496 throw new global::System.Data.StrongTypingException("The value for column \'WRES_EMAIL\' in table \'Resources\' is DBNull.", e);
03497 }
03498 }
03499 set {
03500 this[this.tableResources.WRES_EMAILColumn] = value;
03501 }
03502 }
03503
03504 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03505 public int WRES_EMAIL_LANGUAGE {
03506 get {
03507 try {
03508 return ((int)(this[this.tableResources.WRES_EMAIL_LANGUAGEColumn]));
03509 }
03510 catch (global::System.InvalidCastException e) {
03511 throw new global::System.Data.StrongTypingException("The value for column \'WRES_EMAIL_LANGUAGE\' in table \'Resources\' is DBNull.", e);
03512 }
03513 }
03514 set {
03515 this[this.tableResources.WRES_EMAIL_LANGUAGEColumn] = value;
03516 }
03517 }
03518
03519 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03520 public System.Guid RES_CHECKOUTBY {
03521 get {
03522 try {
03523 return ((global::System.Guid)(this[this.tableResources.RES_CHECKOUTBYColumn]));
03524 }
03525 catch (global::System.InvalidCastException e) {
03526 throw new global::System.Data.StrongTypingException("The value for column \'RES_CHECKOUTBY\' in table \'Resources\' is DBNull.", e);
03527 }
03528 }
03529 set {
03530 this[this.tableResources.RES_CHECKOUTBYColumn] = value;
03531 }
03532 }
03533
03534 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03535 public System.DateTime RES_CHECKOUTDATE {
03536 get {
03537 try {
03538 return ((global::System.DateTime)(this[this.tableResources.RES_CHECKOUTDATEColumn]));
03539 }
03540 catch (global::System.InvalidCastException e) {
03541 throw new global::System.Data.StrongTypingException("The value for column \'RES_CHECKOUTDATE\' in table \'Resources\' is DBNull.", e);
03542 }
03543 }
03544 set {
03545 this[this.tableResources.RES_CHECKOUTDATEColumn] = value;
03546 }
03547 }
03548
03549 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03550 public string RES_HYPERLINK_FRIENDLY_NAME {
03551 get {
03552 try {
03553 return ((string)(this[this.tableResources.RES_HYPERLINK_FRIENDLY_NAMEColumn]));
03554 }
03555 catch (global::System.InvalidCastException e) {
03556 throw new global::System.Data.StrongTypingException("The value for column \'RES_HYPERLINK_FRIENDLY_NAME\' in table \'Resources\' is DBNull" +
03557 ".", e);
03558 }
03559 }
03560 set {
03561 this[this.tableResources.RES_HYPERLINK_FRIENDLY_NAMEColumn] = value;
03562 }
03563 }
03564
03565 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03566 public string RES_HYPERLINK_ADDRESS {
03567 get {
03568 try {
03569 return ((string)(this[this.tableResources.RES_HYPERLINK_ADDRESSColumn]));
03570 }
03571 catch (global::System.InvalidCastException e) {
03572 throw new global::System.Data.StrongTypingException("The value for column \'RES_HYPERLINK_ADDRESS\' in table \'Resources\' is DBNull.", e);
03573 }
03574 }
03575 set {
03576 this[this.tableResources.RES_HYPERLINK_ADDRESSColumn] = value;
03577 }
03578 }
03579
03580 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03581 public string RES_HYPERLINK_SUB_ADDRESS {
03582 get {
03583 try {
03584 return ((string)(this[this.tableResources.RES_HYPERLINK_SUB_ADDRESSColumn]));
03585 }
03586 catch (global::System.InvalidCastException e) {
03587 throw new global::System.Data.StrongTypingException("The value for column \'RES_HYPERLINK_SUB_ADDRESS\' in table \'Resources\' is DBNull.", e);
03588 }
03589 }
03590 set {
03591 this[this.tableResources.RES_HYPERLINK_SUB_ADDRESSColumn] = value;
03592 }
03593 }
03594
03595 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03596 public string RES_CODE {
03597 get {
03598 try {
03599 return ((string)(this[this.tableResources.RES_CODEColumn]));
03600 }
03601 catch (global::System.InvalidCastException e) {
03602 throw new global::System.Data.StrongTypingException("The value for column \'RES_CODE\' in table \'Resources\' is DBNull.", e);
03603 }
03604 }
03605 set {
03606 this[this.tableResources.RES_CODEColumn] = value;
03607 }
03608 }
03609
03610 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03611 public string RES_GROUP {
03612 get {
03613 try {
03614 return ((string)(this[this.tableResources.RES_GROUPColumn]));
03615 }
03616 catch (global::System.InvalidCastException e) {
03617 throw new global::System.Data.StrongTypingException("The value for column \'RES_GROUP\' in table \'Resources\' is DBNull.", e);
03618 }
03619 }
03620 set {
03621 this[this.tableResources.RES_GROUPColumn] = value;
03622 }
03623 }
03624
03625 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03626 public string RES_EXTERNAL_ID {
03627 get {
03628 try {
03629 return ((string)(this[this.tableResources.RES_EXTERNAL_IDColumn]));
03630 }
03631 catch (global::System.InvalidCastException e) {
03632 throw new global::System.Data.StrongTypingException("The value for column \'RES_EXTERNAL_ID\' in table \'Resources\' is DBNull.", e);
03633 }
03634 }
03635 set {
03636 this[this.tableResources.RES_EXTERNAL_IDColumn] = value;
03637 }
03638 }
03639
03640 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03641 public System.Guid RES_TIMESHEET_MGR_UID {
03642 get {
03643 try {
03644 return ((global::System.Guid)(this[this.tableResources.RES_TIMESHEET_MGR_UIDColumn]));
03645 }
03646 catch (global::System.InvalidCastException e) {
03647 throw new global::System.Data.StrongTypingException("The value for column \'RES_TIMESHEET_MGR_UID\' in table \'Resources\' is DBNull.", e);
03648 }
03649 }
03650 set {
03651 this[this.tableResources.RES_TIMESHEET_MGR_UIDColumn] = value;
03652 }
03653 }
03654
03655 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03656 public System.Guid RES_DEF_ASSN_OWNER {
03657 get {
03658 try {
03659 return ((global::System.Guid)(this[this.tableResources.RES_DEF_ASSN_OWNERColumn]));
03660 }
03661 catch (global::System.InvalidCastException e) {
03662 throw new global::System.Data.StrongTypingException("The value for column \'RES_DEF_ASSN_OWNER\' in table \'Resources\' is DBNull.", e);
03663 }
03664 }
03665 set {
03666 this[this.tableResources.RES_DEF_ASSN_OWNERColumn] = value;
03667 }
03668 }
03669
03670 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03671 public System.DateTime RES_HIRE_DATE {
03672 get {
03673 try {
03674 return ((global::System.DateTime)(this[this.tableResources.RES_HIRE_DATEColumn]));
03675 }
03676 catch (global::System.InvalidCastException e) {
03677 throw new global::System.Data.StrongTypingException("The value for column \'RES_HIRE_DATE\' in table \'Resources\' is DBNull.", e);
03678 }
03679 }
03680 set {
03681 this[this.tableResources.RES_HIRE_DATEColumn] = value;
03682 }
03683 }
03684
03685 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03686 public System.DateTime RES_TERMINATION_DATE {
03687 get {
03688 try {
03689 return ((global::System.DateTime)(this[this.tableResources.RES_TERMINATION_DATEColumn]));
03690 }
03691 catch (global::System.InvalidCastException e) {
03692 throw new global::System.Data.StrongTypingException("The value for column \'RES_TERMINATION_DATE\' in table \'Resources\' is DBNull.", e);
03693 }
03694 }
03695 set {
03696 this[this.tableResources.RES_TERMINATION_DATEColumn] = value;
03697 }
03698 }
03699
03700 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03701 public bool RES_IS_TEAM {
03702 get {
03703 try {
03704 return ((bool)(this[this.tableResources.RES_IS_TEAMColumn]));
03705 }
03706 catch (global::System.InvalidCastException e) {
03707 throw new global::System.Data.StrongTypingException("The value for column \'RES_IS_TEAM\' in table \'Resources\' is DBNull.", e);
03708 }
03709 }
03710 set {
03711 this[this.tableResources.RES_IS_TEAMColumn] = value;
03712 }
03713 }
03714
03715 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03716 public string RES_COST_CENTER {
03717 get {
03718 try {
03719 return ((string)(this[this.tableResources.RES_COST_CENTERColumn]));
03720 }
03721 catch (global::System.InvalidCastException e) {
03722 throw new global::System.Data.StrongTypingException("The value for column \'RES_COST_CENTER\' in table \'Resources\' is DBNull.", e);
03723 }
03724 }
03725 set {
03726 this[this.tableResources.RES_COST_CENTERColumn] = value;
03727 }
03728 }
03729
03730 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03731 public string RES_NOTES {
03732 get {
03733 try {
03734 return ((string)(this[this.tableResources.RES_NOTESColumn]));
03735 }
03736 catch (global::System.InvalidCastException e) {
03737 throw new global::System.Data.StrongTypingException("The value for column \'RES_NOTES\' in table \'Resources\' is DBNull.", e);
03738 }
03739 }
03740 set {
03741 this[this.tableResources.RES_NOTESColumn] = value;
03742 }
03743 }
03744
03745 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03746 public System.Guid BaseCalendarUniqueId {
03747 get {
03748 try {
03749 return ((global::System.Guid)(this[this.tableResources.BaseCalendarUniqueIdColumn]));
03750 }
03751 catch (global::System.InvalidCastException e) {
03752 throw new global::System.Data.StrongTypingException("The value for column \'BaseCalendarUniqueId\' in table \'Resources\' is DBNull.", e);
03753 }
03754 }
03755 set {
03756 this[this.tableResources.BaseCalendarUniqueIdColumn] = value;
03757 }
03758 }
03759
03760 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03761 public System.DateTime CREATED_DATE {
03762 get {
03763 try {
03764 return ((global::System.DateTime)(this[this.tableResources.CREATED_DATEColumn]));
03765 }
03766 catch (global::System.InvalidCastException e) {
03767 throw new global::System.Data.StrongTypingException("The value for column \'CREATED_DATE\' in table \'Resources\' is DBNull.", e);
03768 }
03769 }
03770 set {
03771 this[this.tableResources.CREATED_DATEColumn] = value;
03772 }
03773 }
03774
03775 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03776 public System.DateTime MOD_DATE {
03777 get {
03778 try {
03779 return ((global::System.DateTime)(this[this.tableResources.MOD_DATEColumn]));
03780 }
03781 catch (global::System.InvalidCastException e) {
03782 throw new global::System.Data.StrongTypingException("The value for column \'MOD_DATE\' in table \'Resources\' is DBNull.", e);
03783 }
03784 }
03785 set {
03786 this[this.tableResources.MOD_DATEColumn] = value;
03787 }
03788 }
03789
03790 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03791 public bool IsRES_HAS_NOTESNull() {
03792 return this.IsNull(this.tableResources.RES_HAS_NOTESColumn);
03793 }
03794
03795 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03796 public void SetRES_HAS_NOTESNull() {
03797 this[this.tableResources.RES_HAS_NOTESColumn] = global::System.Convert.DBNull;
03798 }
03799
03800 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03801 public bool IsRES_CAN_LEVELNull() {
03802 return this.IsNull(this.tableResources.RES_CAN_LEVELColumn);
03803 }
03804
03805 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03806 public void SetRES_CAN_LEVELNull() {
03807 this[this.tableResources.RES_CAN_LEVELColumn] = global::System.Convert.DBNull;
03808 }
03809
03810 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03811 public bool IsRES_ACCRUE_ATNull() {
03812 return this.IsNull(this.tableResources.RES_ACCRUE_ATColumn);
03813 }
03814
03815 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03816 public void SetRES_ACCRUE_ATNull() {
03817 this[this.tableResources.RES_ACCRUE_ATColumn] = global::System.Convert.DBNull;
03818 }
03819
03820 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03821 public bool IsRES_BOOKING_TYPENull() {
03822 return this.IsNull(this.tableResources.RES_BOOKING_TYPEColumn);
03823 }
03824
03825 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03826 public void SetRES_BOOKING_TYPENull() {
03827 this[this.tableResources.RES_BOOKING_TYPEColumn] = global::System.Convert.DBNull;
03828 }
03829
03830 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03831 public bool IsRES_INITIALSNull() {
03832 return this.IsNull(this.tableResources.RES_INITIALSColumn);
03833 }
03834
03835 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03836 public void SetRES_INITIALSNull() {
03837 this[this.tableResources.RES_INITIALSColumn] = global::System.Convert.DBNull;
03838 }
03839
03840 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03841 public bool IsRES_PHONETICSNull() {
03842 return this.IsNull(this.tableResources.RES_PHONETICSColumn);
03843 }
03844
03845 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03846 public void SetRES_PHONETICSNull() {
03847 this[this.tableResources.RES_PHONETICSColumn] = global::System.Convert.DBNull;
03848 }
03849
03850 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03851 public bool IsRES_MATERIAL_LABELNull() {
03852 return this.IsNull(this.tableResources.RES_MATERIAL_LABELColumn);
03853 }
03854
03855 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03856 public void SetRES_MATERIAL_LABELNull() {
03857 this[this.tableResources.RES_MATERIAL_LABELColumn] = global::System.Convert.DBNull;
03858 }
03859
03860 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03861 public bool IsRES_RTF_NOTESNull() {
03862 return this.IsNull(this.tableResources.RES_RTF_NOTESColumn);
03863 }
03864
03865 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03866 public void SetRES_RTF_NOTESNull() {
03867 this[this.tableResources.RES_RTF_NOTESColumn] = global::System.Convert.DBNull;
03868 }
03869
03870 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03871 public bool IsWRES_ACCOUNTNull() {
03872 return this.IsNull(this.tableResources.WRES_ACCOUNTColumn);
03873 }
03874
03875 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03876 public void SetWRES_ACCOUNTNull() {
03877 this[this.tableResources.WRES_ACCOUNTColumn] = global::System.Convert.DBNull;
03878 }
03879
03880 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03881 public bool IsRES_IS_WINDOWS_USERNull() {
03882 return this.IsNull(this.tableResources.RES_IS_WINDOWS_USERColumn);
03883 }
03884
03885 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03886 public void SetRES_IS_WINDOWS_USERNull() {
03887 this[this.tableResources.RES_IS_WINDOWS_USERColumn] = global::System.Convert.DBNull;
03888 }
03889
03890 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03891 public bool IsWRES_EMAILNull() {
03892 return this.IsNull(this.tableResources.WRES_EMAILColumn);
03893 }
03894
03895 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03896 public void SetWRES_EMAILNull() {
03897 this[this.tableResources.WRES_EMAILColumn] = global::System.Convert.DBNull;
03898 }
03899
03900 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03901 public bool IsWRES_EMAIL_LANGUAGENull() {
03902 return this.IsNull(this.tableResources.WRES_EMAIL_LANGUAGEColumn);
03903 }
03904
03905 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03906 public void SetWRES_EMAIL_LANGUAGENull() {
03907 this[this.tableResources.WRES_EMAIL_LANGUAGEColumn] = global::System.Convert.DBNull;
03908 }
03909
03910 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03911 public bool IsRES_CHECKOUTBYNull() {
03912 return this.IsNull(this.tableResources.RES_CHECKOUTBYColumn);
03913 }
03914
03915 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03916 public void SetRES_CHECKOUTBYNull() {
03917 this[this.tableResources.RES_CHECKOUTBYColumn] = global::System.Convert.DBNull;
03918 }
03919
03920 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03921 public bool IsRES_CHECKOUTDATENull() {
03922 return this.IsNull(this.tableResources.RES_CHECKOUTDATEColumn);
03923 }
03924
03925 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03926 public void SetRES_CHECKOUTDATENull() {
03927 this[this.tableResources.RES_CHECKOUTDATEColumn] = global::System.Convert.DBNull;
03928 }
03929
03930 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03931 public bool IsRES_HYPERLINK_FRIENDLY_NAMENull() {
03932 return this.IsNull(this.tableResources.RES_HYPERLINK_FRIENDLY_NAMEColumn);
03933 }
03934
03935 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03936 public void SetRES_HYPERLINK_FRIENDLY_NAMENull() {
03937 this[this.tableResources.RES_HYPERLINK_FRIENDLY_NAMEColumn] = global::System.Convert.DBNull;
03938 }
03939
03940 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03941 public bool IsRES_HYPERLINK_ADDRESSNull() {
03942 return this.IsNull(this.tableResources.RES_HYPERLINK_ADDRESSColumn);
03943 }
03944
03945 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03946 public void SetRES_HYPERLINK_ADDRESSNull() {
03947 this[this.tableResources.RES_HYPERLINK_ADDRESSColumn] = global::System.Convert.DBNull;
03948 }
03949
03950 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03951 public bool IsRES_HYPERLINK_SUB_ADDRESSNull() {
03952 return this.IsNull(this.tableResources.RES_HYPERLINK_SUB_ADDRESSColumn);
03953 }
03954
03955 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03956 public void SetRES_HYPERLINK_SUB_ADDRESSNull() {
03957 this[this.tableResources.RES_HYPERLINK_SUB_ADDRESSColumn] = global::System.Convert.DBNull;
03958 }
03959
03960 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03961 public bool IsRES_CODENull() {
03962 return this.IsNull(this.tableResources.RES_CODEColumn);
03963 }
03964
03965 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03966 public void SetRES_CODENull() {
03967 this[this.tableResources.RES_CODEColumn] = global::System.Convert.DBNull;
03968 }
03969
03970 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03971 public bool IsRES_GROUPNull() {
03972 return this.IsNull(this.tableResources.RES_GROUPColumn);
03973 }
03974
03975 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03976 public void SetRES_GROUPNull() {
03977 this[this.tableResources.RES_GROUPColumn] = global::System.Convert.DBNull;
03978 }
03979
03980 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03981 public bool IsRES_EXTERNAL_IDNull() {
03982 return this.IsNull(this.tableResources.RES_EXTERNAL_IDColumn);
03983 }
03984
03985 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03986 public void SetRES_EXTERNAL_IDNull() {
03987 this[this.tableResources.RES_EXTERNAL_IDColumn] = global::System.Convert.DBNull;
03988 }
03989
03990 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03991 public bool IsRES_TIMESHEET_MGR_UIDNull() {
03992 return this.IsNull(this.tableResources.RES_TIMESHEET_MGR_UIDColumn);
03993 }
03994
03995 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
03996 public void SetRES_TIMESHEET_MGR_UIDNull() {
03997 this[this.tableResources.RES_TIMESHEET_MGR_UIDColumn] = global::System.Convert.DBNull;
03998 }
03999
04000 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04001 public bool IsRES_DEF_ASSN_OWNERNull() {
04002 return this.IsNull(this.tableResources.RES_DEF_ASSN_OWNERColumn);
04003 }
04004
04005 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04006 public void SetRES_DEF_ASSN_OWNERNull() {
04007 this[this.tableResources.RES_DEF_ASSN_OWNERColumn] = global::System.Convert.DBNull;
04008 }
04009
04010 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04011 public bool IsRES_HIRE_DATENull() {
04012 return this.IsNull(this.tableResources.RES_HIRE_DATEColumn);
04013 }
04014
04015 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04016 public void SetRES_HIRE_DATENull() {
04017 this[this.tableResources.RES_HIRE_DATEColumn] = global::System.Convert.DBNull;
04018 }
04019
04020 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04021 public bool IsRES_TERMINATION_DATENull() {
04022 return this.IsNull(this.tableResources.RES_TERMINATION_DATEColumn);
04023 }
04024
04025 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04026 public void SetRES_TERMINATION_DATENull() {
04027 this[this.tableResources.RES_TERMINATION_DATEColumn] = global::System.Convert.DBNull;
04028 }
04029
04030 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04031 public bool IsRES_IS_TEAMNull() {
04032 return this.IsNull(this.tableResources.RES_IS_TEAMColumn);
04033 }
04034
04035 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04036 public void SetRES_IS_TEAMNull() {
04037 this[this.tableResources.RES_IS_TEAMColumn] = global::System.Convert.DBNull;
04038 }
04039
04040 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04041 public bool IsRES_COST_CENTERNull() {
04042 return this.IsNull(this.tableResources.RES_COST_CENTERColumn);
04043 }
04044
04045 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04046 public void SetRES_COST_CENTERNull() {
04047 this[this.tableResources.RES_COST_CENTERColumn] = global::System.Convert.DBNull;
04048 }
04049
04050 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04051 public bool IsRES_NOTESNull() {
04052 return this.IsNull(this.tableResources.RES_NOTESColumn);
04053 }
04054
04055 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04056 public void SetRES_NOTESNull() {
04057 this[this.tableResources.RES_NOTESColumn] = global::System.Convert.DBNull;
04058 }
04059
04060 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04061 public bool IsBaseCalendarUniqueIdNull() {
04062 return this.IsNull(this.tableResources.BaseCalendarUniqueIdColumn);
04063 }
04064
04065 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04066 public void SetBaseCalendarUniqueIdNull() {
04067 this[this.tableResources.BaseCalendarUniqueIdColumn] = global::System.Convert.DBNull;
04068 }
04069
04070 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04071 public bool IsCREATED_DATENull() {
04072 return this.IsNull(this.tableResources.CREATED_DATEColumn);
04073 }
04074
04075 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04076 public void SetCREATED_DATENull() {
04077 this[this.tableResources.CREATED_DATEColumn] = global::System.Convert.DBNull;
04078 }
04079
04080 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04081 public bool IsMOD_DATENull() {
04082 return this.IsNull(this.tableResources.MOD_DATEColumn);
04083 }
04084
04085 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04086 public void SetMOD_DATENull() {
04087 this[this.tableResources.MOD_DATEColumn] = global::System.Convert.DBNull;
04088 }
04089
04090 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04091 public ResourceAvailabilitiesRow[] GetResourceAvailabilitiesRows() {
04092 if ((this.Table.ChildRelations["ResourcesResourceAvailabilities"] == null)) {
04093 return new ResourceAvailabilitiesRow[0];
04094 }
04095 else {
04096 return ((ResourceAvailabilitiesRow[])(base.GetChildRows(this.Table.ChildRelations["ResourcesResourceAvailabilities"])));
04097 }
04098 }
04099
04100 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04101 public ResourceRatesRow[] GetResourceRatesRows() {
04102 if ((this.Table.ChildRelations["ResourcesResourceRates"] == null)) {
04103 return new ResourceRatesRow[0];
04104 }
04105 else {
04106 return ((ResourceRatesRow[])(base.GetChildRows(this.Table.ChildRelations["ResourcesResourceRates"])));
04107 }
04108 }
04109
04110 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04111 public CalendarExceptionsRow[] GetCalendarExceptionsRows() {
04112 if ((this.Table.ChildRelations["ResourcesCalendarExceptions"] == null)) {
04113 return new CalendarExceptionsRow[0];
04114 }
04115 else {
04116 return ((CalendarExceptionsRow[])(base.GetChildRows(this.Table.ChildRelations["ResourcesCalendarExceptions"])));
04117 }
04118 }
04119
04120 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04121 public ResourceCustomFieldsRow[] GetResourceCustomFieldsRows() {
04122 if ((this.Table.ChildRelations["ResourcesResourceCustomFields"] == null)) {
04123 return new ResourceCustomFieldsRow[0];
04124 }
04125 else {
04126 return ((ResourceCustomFieldsRow[])(base.GetChildRows(this.Table.ChildRelations["ResourcesResourceCustomFields"])));
04127 }
04128 }
04129 }
04130
04131
04132
04133
04134 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
04135 public partial class ResourceCustomFieldsRow : global::System.Data.DataRow {
04136
04137 private ResourceCustomFieldsDataTable tableResourceCustomFields;
04138
04139 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04140 internal ResourceCustomFieldsRow(global::System.Data.DataRowBuilder rb) :
04141 base(rb) {
04142 this.tableResourceCustomFields = ((ResourceCustomFieldsDataTable)(this.Table));
04143 }
04144
04145 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04146 public System.Guid CUSTOM_FIELD_UID {
04147 get {
04148 return ((global::System.Guid)(this[this.tableResourceCustomFields.CUSTOM_FIELD_UIDColumn]));
04149 }
04150 set {
04151 this[this.tableResourceCustomFields.CUSTOM_FIELD_UIDColumn] = value;
04152 }
04153 }
04154
04155 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04156 public System.Guid RES_UID {
04157 get {
04158 return ((global::System.Guid)(this[this.tableResourceCustomFields.RES_UIDColumn]));
04159 }
04160 set {
04161 this[this.tableResourceCustomFields.RES_UIDColumn] = value;
04162 }
04163 }
04164
04165 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04166 public System.Guid MD_PROP_UID {
04167 get {
04168 try {
04169 return ((global::System.Guid)(this[this.tableResourceCustomFields.MD_PROP_UIDColumn]));
04170 }
04171 catch (global::System.InvalidCastException e) {
04172 throw new global::System.Data.StrongTypingException("The value for column \'MD_PROP_UID\' in table \'ResourceCustomFields\' is DBNull.", e);
04173 }
04174 }
04175 set {
04176 this[this.tableResourceCustomFields.MD_PROP_UIDColumn] = value;
04177 }
04178 }
04179
04180 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04181 public bool FLAG_VALUE {
04182 get {
04183 try {
04184 return ((bool)(this[this.tableResourceCustomFields.FLAG_VALUEColumn]));
04185 }
04186 catch (global::System.InvalidCastException e) {
04187 throw new global::System.Data.StrongTypingException("The value for column \'FLAG_VALUE\' in table \'ResourceCustomFields\' is DBNull.", e);
04188 }
04189 }
04190 set {
04191 this[this.tableResourceCustomFields.FLAG_VALUEColumn] = value;
04192 }
04193 }
04194
04195 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04196 public int MD_PROP_ID {
04197 get {
04198 try {
04199 return ((int)(this[this.tableResourceCustomFields.MD_PROP_IDColumn]));
04200 }
04201 catch (global::System.InvalidCastException e) {
04202 throw new global::System.Data.StrongTypingException("The value for column \'MD_PROP_ID\' in table \'ResourceCustomFields\' is DBNull.", e);
04203 }
04204 }
04205 set {
04206 this[this.tableResourceCustomFields.MD_PROP_IDColumn] = value;
04207 }
04208 }
04209
04210 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04211 public string MD_PROP_NAME {
04212 get {
04213 try {
04214 return ((string)(this[this.tableResourceCustomFields.MD_PROP_NAMEColumn]));
04215 }
04216 catch (global::System.InvalidCastException e) {
04217 throw new global::System.Data.StrongTypingException("The value for column \'MD_PROP_NAME\' in table \'ResourceCustomFields\' is DBNull.", e);
04218 }
04219 }
04220 set {
04221 this[this.tableResourceCustomFields.MD_PROP_NAMEColumn] = value;
04222 }
04223 }
04224
04225 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04226 public string TEXT_VALUE {
04227 get {
04228 try {
04229 return ((string)(this[this.tableResourceCustomFields.TEXT_VALUEColumn]));
04230 }
04231 catch (global::System.InvalidCastException e) {
04232 throw new global::System.Data.StrongTypingException("The value for column \'TEXT_VALUE\' in table \'ResourceCustomFields\' is DBNull.", e);
04233 }
04234 }
04235 set {
04236 this[this.tableResourceCustomFields.TEXT_VALUEColumn] = value;
04237 }
04238 }
04239
04240 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04241 public byte FIELD_TYPE_ENUM {
04242 get {
04243 try {
04244 return ((byte)(this[this.tableResourceCustomFields.FIELD_TYPE_ENUMColumn]));
04245 }
04246 catch (global::System.InvalidCastException e) {
04247 throw new global::System.Data.StrongTypingException("The value for column \'FIELD_TYPE_ENUM\' in table \'ResourceCustomFields\' is DBNull." +
04248 "", e);
04249 }
04250 }
04251 set {
04252 this[this.tableResourceCustomFields.FIELD_TYPE_ENUMColumn] = value;
04253 }
04254 }
04255
04256 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04257 public System.DateTime DATE_VALUE {
04258 get {
04259 try {
04260 return ((global::System.DateTime)(this[this.tableResourceCustomFields.DATE_VALUEColumn]));
04261 }
04262 catch (global::System.InvalidCastException e) {
04263 throw new global::System.Data.StrongTypingException("The value for column \'DATE_VALUE\' in table \'ResourceCustomFields\' is DBNull.", e);
04264 }
04265 }
04266 set {
04267 this[this.tableResourceCustomFields.DATE_VALUEColumn] = value;
04268 }
04269 }
04270
04271 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04272 public System.Guid CODE_VALUE {
04273 get {
04274 try {
04275 return ((global::System.Guid)(this[this.tableResourceCustomFields.CODE_VALUEColumn]));
04276 }
04277 catch (global::System.InvalidCastException e) {
04278 throw new global::System.Data.StrongTypingException("The value for column \'CODE_VALUE\' in table \'ResourceCustomFields\' is DBNull.", e);
04279 }
04280 }
04281 set {
04282 this[this.tableResourceCustomFields.CODE_VALUEColumn] = value;
04283 }
04284 }
04285
04286 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04287 public int DUR_VALUE {
04288 get {
04289 try {
04290 return ((int)(this[this.tableResourceCustomFields.DUR_VALUEColumn]));
04291 }
04292 catch (global::System.InvalidCastException e) {
04293 throw new global::System.Data.StrongTypingException("The value for column \'DUR_VALUE\' in table \'ResourceCustomFields\' is DBNull.", e);
04294 }
04295 }
04296 set {
04297 this[this.tableResourceCustomFields.DUR_VALUEColumn] = value;
04298 }
04299 }
04300
04301 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04302 public decimal NUM_VALUE {
04303 get {
04304 try {
04305 return ((decimal)(this[this.tableResourceCustomFields.NUM_VALUEColumn]));
04306 }
04307 catch (global::System.InvalidCastException e) {
04308 throw new global::System.Data.StrongTypingException("The value for column \'NUM_VALUE\' in table \'ResourceCustomFields\' is DBNull.", e);
04309 }
04310 }
04311 set {
04312 this[this.tableResourceCustomFields.NUM_VALUEColumn] = value;
04313 }
04314 }
04315
04316 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04317 public byte DUR_FMT {
04318 get {
04319 try {
04320 return ((byte)(this[this.tableResourceCustomFields.DUR_FMTColumn]));
04321 }
04322 catch (global::System.InvalidCastException e) {
04323 throw new global::System.Data.StrongTypingException("The value for column \'DUR_FMT\' in table \'ResourceCustomFields\' is DBNull.", e);
04324 }
04325 }
04326 set {
04327 this[this.tableResourceCustomFields.DUR_FMTColumn] = value;
04328 }
04329 }
04330
04331 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04332 public ResourcesRow ResourcesRow {
04333 get {
04334 return ((ResourcesRow)(this.GetParentRow(this.Table.ParentRelations["ResourcesResourceCustomFields"])));
04335 }
04336 set {
04337 this.SetParentRow(value, this.Table.ParentRelations["ResourcesResourceCustomFields"]);
04338 }
04339 }
04340
04341 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04342 public bool IsMD_PROP_UIDNull() {
04343 return this.IsNull(this.tableResourceCustomFields.MD_PROP_UIDColumn);
04344 }
04345
04346 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04347 public void SetMD_PROP_UIDNull() {
04348 this[this.tableResourceCustomFields.MD_PROP_UIDColumn] = global::System.Convert.DBNull;
04349 }
04350
04351 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04352 public bool IsFLAG_VALUENull() {
04353 return this.IsNull(this.tableResourceCustomFields.FLAG_VALUEColumn);
04354 }
04355
04356 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04357 public void SetFLAG_VALUENull() {
04358 this[this.tableResourceCustomFields.FLAG_VALUEColumn] = global::System.Convert.DBNull;
04359 }
04360
04361 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04362 public bool IsMD_PROP_IDNull() {
04363 return this.IsNull(this.tableResourceCustomFields.MD_PROP_IDColumn);
04364 }
04365
04366 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04367 public void SetMD_PROP_IDNull() {
04368 this[this.tableResourceCustomFields.MD_PROP_IDColumn] = global::System.Convert.DBNull;
04369 }
04370
04371 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04372 public bool IsMD_PROP_NAMENull() {
04373 return this.IsNull(this.tableResourceCustomFields.MD_PROP_NAMEColumn);
04374 }
04375
04376 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04377 public void SetMD_PROP_NAMENull() {
04378 this[this.tableResourceCustomFields.MD_PROP_NAMEColumn] = global::System.Convert.DBNull;
04379 }
04380
04381 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04382 public bool IsTEXT_VALUENull() {
04383 return this.IsNull(this.tableResourceCustomFields.TEXT_VALUEColumn);
04384 }
04385
04386 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04387 public void SetTEXT_VALUENull() {
04388 this[this.tableResourceCustomFields.TEXT_VALUEColumn] = global::System.Convert.DBNull;
04389 }
04390
04391 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04392 public bool IsFIELD_TYPE_ENUMNull() {
04393 return this.IsNull(this.tableResourceCustomFields.FIELD_TYPE_ENUMColumn);
04394 }
04395
04396 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04397 public void SetFIELD_TYPE_ENUMNull() {
04398 this[this.tableResourceCustomFields.FIELD_TYPE_ENUMColumn] = global::System.Convert.DBNull;
04399 }
04400
04401 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04402 public bool IsDATE_VALUENull() {
04403 return this.IsNull(this.tableResourceCustomFields.DATE_VALUEColumn);
04404 }
04405
04406 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04407 public void SetDATE_VALUENull() {
04408 this[this.tableResourceCustomFields.DATE_VALUEColumn] = global::System.Convert.DBNull;
04409 }
04410
04411 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04412 public bool IsCODE_VALUENull() {
04413 return this.IsNull(this.tableResourceCustomFields.CODE_VALUEColumn);
04414 }
04415
04416 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04417 public void SetCODE_VALUENull() {
04418 this[this.tableResourceCustomFields.CODE_VALUEColumn] = global::System.Convert.DBNull;
04419 }
04420
04421 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04422 public bool IsDUR_VALUENull() {
04423 return this.IsNull(this.tableResourceCustomFields.DUR_VALUEColumn);
04424 }
04425
04426 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04427 public void SetDUR_VALUENull() {
04428 this[this.tableResourceCustomFields.DUR_VALUEColumn] = global::System.Convert.DBNull;
04429 }
04430
04431 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04432 public bool IsNUM_VALUENull() {
04433 return this.IsNull(this.tableResourceCustomFields.NUM_VALUEColumn);
04434 }
04435
04436 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04437 public void SetNUM_VALUENull() {
04438 this[this.tableResourceCustomFields.NUM_VALUEColumn] = global::System.Convert.DBNull;
04439 }
04440
04441 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04442 public bool IsDUR_FMTNull() {
04443 return this.IsNull(this.tableResourceCustomFields.DUR_FMTColumn);
04444 }
04445
04446 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04447 public void SetDUR_FMTNull() {
04448 this[this.tableResourceCustomFields.DUR_FMTColumn] = global::System.Convert.DBNull;
04449 }
04450 }
04451
04452
04453
04454
04455 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
04456 public partial class CalendarExceptionsRow : global::System.Data.DataRow {
04457
04458 private CalendarExceptionsDataTable tableCalendarExceptions;
04459
04460 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04461 internal CalendarExceptionsRow(global::System.Data.DataRowBuilder rb) :
04462 base(rb) {
04463 this.tableCalendarExceptions = ((CalendarExceptionsDataTable)(this.Table));
04464 }
04465
04466 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04467 public System.Guid RES_UID {
04468 get {
04469 return ((global::System.Guid)(this[this.tableCalendarExceptions.RES_UIDColumn]));
04470 }
04471 set {
04472 this[this.tableCalendarExceptions.RES_UIDColumn] = value;
04473 }
04474 }
04475
04476 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04477 public string Name {
04478 get {
04479 return ((string)(this[this.tableCalendarExceptions.NameColumn]));
04480 }
04481 set {
04482 this[this.tableCalendarExceptions.NameColumn] = value;
04483 }
04484 }
04485
04486 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04487 public System.DateTime Start {
04488 get {
04489 return ((global::System.DateTime)(this[this.tableCalendarExceptions.StartColumn]));
04490 }
04491 set {
04492 this[this.tableCalendarExceptions.StartColumn] = value;
04493 }
04494 }
04495
04496 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04497 public System.DateTime Finish {
04498 get {
04499 return ((global::System.DateTime)(this[this.tableCalendarExceptions.FinishColumn]));
04500 }
04501 set {
04502 this[this.tableCalendarExceptions.FinishColumn] = value;
04503 }
04504 }
04505
04506 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04507 public int Shift1Start {
04508 get {
04509 try {
04510 return ((int)(this[this.tableCalendarExceptions.Shift1StartColumn]));
04511 }
04512 catch (global::System.InvalidCastException e) {
04513 throw new global::System.Data.StrongTypingException("The value for column \'Shift1Start\' in table \'CalendarExceptions\' is DBNull.", e);
04514 }
04515 }
04516 set {
04517 this[this.tableCalendarExceptions.Shift1StartColumn] = value;
04518 }
04519 }
04520
04521 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04522 public int Shift1Finish {
04523 get {
04524 try {
04525 return ((int)(this[this.tableCalendarExceptions.Shift1FinishColumn]));
04526 }
04527 catch (global::System.InvalidCastException e) {
04528 throw new global::System.Data.StrongTypingException("The value for column \'Shift1Finish\' in table \'CalendarExceptions\' is DBNull.", e);
04529 }
04530 }
04531 set {
04532 this[this.tableCalendarExceptions.Shift1FinishColumn] = value;
04533 }
04534 }
04535
04536 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04537 public int Shift2Start {
04538 get {
04539 try {
04540 return ((int)(this[this.tableCalendarExceptions.Shift2StartColumn]));
04541 }
04542 catch (global::System.InvalidCastException e) {
04543 throw new global::System.Data.StrongTypingException("The value for column \'Shift2Start\' in table \'CalendarExceptions\' is DBNull.", e);
04544 }
04545 }
04546 set {
04547 this[this.tableCalendarExceptions.Shift2StartColumn] = value;
04548 }
04549 }
04550
04551 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04552 public int Shift2Finish {
04553 get {
04554 try {
04555 return ((int)(this[this.tableCalendarExceptions.Shift2FinishColumn]));
04556 }
04557 catch (global::System.InvalidCastException e) {
04558 throw new global::System.Data.StrongTypingException("The value for column \'Shift2Finish\' in table \'CalendarExceptions\' is DBNull.", e);
04559 }
04560 }
04561 set {
04562 this[this.tableCalendarExceptions.Shift2FinishColumn] = value;
04563 }
04564 }
04565
04566 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04567 public int Shift3Start {
04568 get {
04569 try {
04570 return ((int)(this[this.tableCalendarExceptions.Shift3StartColumn]));
04571 }
04572 catch (global::System.InvalidCastException e) {
04573 throw new global::System.Data.StrongTypingException("The value for column \'Shift3Start\' in table \'CalendarExceptions\' is DBNull.", e);
04574 }
04575 }
04576 set {
04577 this[this.tableCalendarExceptions.Shift3StartColumn] = value;
04578 }
04579 }
04580
04581 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04582 public int Shift3Finish {
04583 get {
04584 try {
04585 return ((int)(this[this.tableCalendarExceptions.Shift3FinishColumn]));
04586 }
04587 catch (global::System.InvalidCastException e) {
04588 throw new global::System.Data.StrongTypingException("The value for column \'Shift3Finish\' in table \'CalendarExceptions\' is DBNull.", e);
04589 }
04590 }
04591 set {
04592 this[this.tableCalendarExceptions.Shift3FinishColumn] = value;
04593 }
04594 }
04595
04596 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04597 public int Shift4Start {
04598 get {
04599 try {
04600 return ((int)(this[this.tableCalendarExceptions.Shift4StartColumn]));
04601 }
04602 catch (global::System.InvalidCastException e) {
04603 throw new global::System.Data.StrongTypingException("The value for column \'Shift4Start\' in table \'CalendarExceptions\' is DBNull.", e);
04604 }
04605 }
04606 set {
04607 this[this.tableCalendarExceptions.Shift4StartColumn] = value;
04608 }
04609 }
04610
04611 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04612 public int Shift4Finish {
04613 get {
04614 try {
04615 return ((int)(this[this.tableCalendarExceptions.Shift4FinishColumn]));
04616 }
04617 catch (global::System.InvalidCastException e) {
04618 throw new global::System.Data.StrongTypingException("The value for column \'Shift4Finish\' in table \'CalendarExceptions\' is DBNull.", e);
04619 }
04620 }
04621 set {
04622 this[this.tableCalendarExceptions.Shift4FinishColumn] = value;
04623 }
04624 }
04625
04626 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04627 public int Shift5Start {
04628 get {
04629 try {
04630 return ((int)(this[this.tableCalendarExceptions.Shift5StartColumn]));
04631 }
04632 catch (global::System.InvalidCastException e) {
04633 throw new global::System.Data.StrongTypingException("The value for column \'Shift5Start\' in table \'CalendarExceptions\' is DBNull.", e);
04634 }
04635 }
04636 set {
04637 this[this.tableCalendarExceptions.Shift5StartColumn] = value;
04638 }
04639 }
04640
04641 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04642 public int Shift5Finish {
04643 get {
04644 try {
04645 return ((int)(this[this.tableCalendarExceptions.Shift5FinishColumn]));
04646 }
04647 catch (global::System.InvalidCastException e) {
04648 throw new global::System.Data.StrongTypingException("The value for column \'Shift5Finish\' in table \'CalendarExceptions\' is DBNull.", e);
04649 }
04650 }
04651 set {
04652 this[this.tableCalendarExceptions.Shift5FinishColumn] = value;
04653 }
04654 }
04655
04656 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04657 public int RecurrenceType {
04658 get {
04659 return ((int)(this[this.tableCalendarExceptions.RecurrenceTypeColumn]));
04660 }
04661 set {
04662 this[this.tableCalendarExceptions.RecurrenceTypeColumn] = value;
04663 }
04664 }
04665
04666 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04667 public int RecurrenceFrequency {
04668 get {
04669 return ((int)(this[this.tableCalendarExceptions.RecurrenceFrequencyColumn]));
04670 }
04671 set {
04672 this[this.tableCalendarExceptions.RecurrenceFrequencyColumn] = value;
04673 }
04674 }
04675
04676 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04677 public int RecurrenceDays {
04678 get {
04679 try {
04680 return ((int)(this[this.tableCalendarExceptions.RecurrenceDaysColumn]));
04681 }
04682 catch (global::System.InvalidCastException e) {
04683 throw new global::System.Data.StrongTypingException("The value for column \'RecurrenceDays\' in table \'CalendarExceptions\' is DBNull.", e);
04684 }
04685 }
04686 set {
04687 this[this.tableCalendarExceptions.RecurrenceDaysColumn] = value;
04688 }
04689 }
04690
04691 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04692 public int RecurrenceMonthDay {
04693 get {
04694 try {
04695 return ((int)(this[this.tableCalendarExceptions.RecurrenceMonthDayColumn]));
04696 }
04697 catch (global::System.InvalidCastException e) {
04698 throw new global::System.Data.StrongTypingException("The value for column \'RecurrenceMonthDay\' in table \'CalendarExceptions\' is DBNull" +
04699 ".", e);
04700 }
04701 }
04702 set {
04703 this[this.tableCalendarExceptions.RecurrenceMonthDayColumn] = value;
04704 }
04705 }
04706
04707 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04708 public int RecurrenceMonth {
04709 get {
04710 try {
04711 return ((int)(this[this.tableCalendarExceptions.RecurrenceMonthColumn]));
04712 }
04713 catch (global::System.InvalidCastException e) {
04714 throw new global::System.Data.StrongTypingException("The value for column \'RecurrenceMonth\' in table \'CalendarExceptions\' is DBNull.", e);
04715 }
04716 }
04717 set {
04718 this[this.tableCalendarExceptions.RecurrenceMonthColumn] = value;
04719 }
04720 }
04721
04722 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04723 public int RecurrencePosition {
04724 get {
04725 try {
04726 return ((int)(this[this.tableCalendarExceptions.RecurrencePositionColumn]));
04727 }
04728 catch (global::System.InvalidCastException e) {
04729 throw new global::System.Data.StrongTypingException("The value for column \'RecurrencePosition\' in table \'CalendarExceptions\' is DBNull" +
04730 ".", e);
04731 }
04732 }
04733 set {
04734 this[this.tableCalendarExceptions.RecurrencePositionColumn] = value;
04735 }
04736 }
04737
04738 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04739 public ResourcesRow ResourcesRow {
04740 get {
04741 return ((ResourcesRow)(this.GetParentRow(this.Table.ParentRelations["ResourcesCalendarExceptions"])));
04742 }
04743 set {
04744 this.SetParentRow(value, this.Table.ParentRelations["ResourcesCalendarExceptions"]);
04745 }
04746 }
04747
04748 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04749 public bool IsShift1StartNull() {
04750 return this.IsNull(this.tableCalendarExceptions.Shift1StartColumn);
04751 }
04752
04753 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04754 public void SetShift1StartNull() {
04755 this[this.tableCalendarExceptions.Shift1StartColumn] = global::System.Convert.DBNull;
04756 }
04757
04758 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04759 public bool IsShift1FinishNull() {
04760 return this.IsNull(this.tableCalendarExceptions.Shift1FinishColumn);
04761 }
04762
04763 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04764 public void SetShift1FinishNull() {
04765 this[this.tableCalendarExceptions.Shift1FinishColumn] = global::System.Convert.DBNull;
04766 }
04767
04768 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04769 public bool IsShift2StartNull() {
04770 return this.IsNull(this.tableCalendarExceptions.Shift2StartColumn);
04771 }
04772
04773 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04774 public void SetShift2StartNull() {
04775 this[this.tableCalendarExceptions.Shift2StartColumn] = global::System.Convert.DBNull;
04776 }
04777
04778 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04779 public bool IsShift2FinishNull() {
04780 return this.IsNull(this.tableCalendarExceptions.Shift2FinishColumn);
04781 }
04782
04783 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04784 public void SetShift2FinishNull() {
04785 this[this.tableCalendarExceptions.Shift2FinishColumn] = global::System.Convert.DBNull;
04786 }
04787
04788 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04789 public bool IsShift3StartNull() {
04790 return this.IsNull(this.tableCalendarExceptions.Shift3StartColumn);
04791 }
04792
04793 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04794 public void SetShift3StartNull() {
04795 this[this.tableCalendarExceptions.Shift3StartColumn] = global::System.Convert.DBNull;
04796 }
04797
04798 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04799 public bool IsShift3FinishNull() {
04800 return this.IsNull(this.tableCalendarExceptions.Shift3FinishColumn);
04801 }
04802
04803 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04804 public void SetShift3FinishNull() {
04805 this[this.tableCalendarExceptions.Shift3FinishColumn] = global::System.Convert.DBNull;
04806 }
04807
04808 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04809 public bool IsShift4StartNull() {
04810 return this.IsNull(this.tableCalendarExceptions.Shift4StartColumn);
04811 }
04812
04813 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04814 public void SetShift4StartNull() {
04815 this[this.tableCalendarExceptions.Shift4StartColumn] = global::System.Convert.DBNull;
04816 }
04817
04818 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04819 public bool IsShift4FinishNull() {
04820 return this.IsNull(this.tableCalendarExceptions.Shift4FinishColumn);
04821 }
04822
04823 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04824 public void SetShift4FinishNull() {
04825 this[this.tableCalendarExceptions.Shift4FinishColumn] = global::System.Convert.DBNull;
04826 }
04827
04828 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04829 public bool IsShift5StartNull() {
04830 return this.IsNull(this.tableCalendarExceptions.Shift5StartColumn);
04831 }
04832
04833 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04834 public void SetShift5StartNull() {
04835 this[this.tableCalendarExceptions.Shift5StartColumn] = global::System.Convert.DBNull;
04836 }
04837
04838 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04839 public bool IsShift5FinishNull() {
04840 return this.IsNull(this.tableCalendarExceptions.Shift5FinishColumn);
04841 }
04842
04843 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04844 public void SetShift5FinishNull() {
04845 this[this.tableCalendarExceptions.Shift5FinishColumn] = global::System.Convert.DBNull;
04846 }
04847
04848 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04849 public bool IsRecurrenceDaysNull() {
04850 return this.IsNull(this.tableCalendarExceptions.RecurrenceDaysColumn);
04851 }
04852
04853 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04854 public void SetRecurrenceDaysNull() {
04855 this[this.tableCalendarExceptions.RecurrenceDaysColumn] = global::System.Convert.DBNull;
04856 }
04857
04858 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04859 public bool IsRecurrenceMonthDayNull() {
04860 return this.IsNull(this.tableCalendarExceptions.RecurrenceMonthDayColumn);
04861 }
04862
04863 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04864 public void SetRecurrenceMonthDayNull() {
04865 this[this.tableCalendarExceptions.RecurrenceMonthDayColumn] = global::System.Convert.DBNull;
04866 }
04867
04868 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04869 public bool IsRecurrenceMonthNull() {
04870 return this.IsNull(this.tableCalendarExceptions.RecurrenceMonthColumn);
04871 }
04872
04873 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04874 public void SetRecurrenceMonthNull() {
04875 this[this.tableCalendarExceptions.RecurrenceMonthColumn] = global::System.Convert.DBNull;
04876 }
04877
04878 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04879 public bool IsRecurrencePositionNull() {
04880 return this.IsNull(this.tableCalendarExceptions.RecurrencePositionColumn);
04881 }
04882
04883 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04884 public void SetRecurrencePositionNull() {
04885 this[this.tableCalendarExceptions.RecurrencePositionColumn] = global::System.Convert.DBNull;
04886 }
04887 }
04888
04889
04890
04891
04892 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
04893 public partial class ResourceRatesRow : global::System.Data.DataRow {
04894
04895 private ResourceRatesDataTable tableResourceRates;
04896
04897 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04898 internal ResourceRatesRow(global::System.Data.DataRowBuilder rb) :
04899 base(rb) {
04900 this.tableResourceRates = ((ResourceRatesDataTable)(this.Table));
04901 }
04902
04903 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04904 public System.Guid RES_UID {
04905 get {
04906 return ((global::System.Guid)(this[this.tableResourceRates.RES_UIDColumn]));
04907 }
04908 set {
04909 this[this.tableResourceRates.RES_UIDColumn] = value;
04910 }
04911 }
04912
04913 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04914 public int RES_RATE_TABLE {
04915 get {
04916 return ((int)(this[this.tableResourceRates.RES_RATE_TABLEColumn]));
04917 }
04918 set {
04919 this[this.tableResourceRates.RES_RATE_TABLEColumn] = value;
04920 }
04921 }
04922
04923 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04924 public System.DateTime RES_RATE_EFFECTIVE_DATE {
04925 get {
04926 try {
04927 return ((global::System.DateTime)(this[this.tableResourceRates.RES_RATE_EFFECTIVE_DATEColumn]));
04928 }
04929 catch (global::System.InvalidCastException e) {
04930 throw new global::System.Data.StrongTypingException("The value for column \'RES_RATE_EFFECTIVE_DATE\' in table \'ResourceRates\' is DBNull" +
04931 ".", e);
04932 }
04933 }
04934 set {
04935 this[this.tableResourceRates.RES_RATE_EFFECTIVE_DATEColumn] = value;
04936 }
04937 }
04938
04939 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04940 public double RES_STD_RATE {
04941 get {
04942 try {
04943 return ((double)(this[this.tableResourceRates.RES_STD_RATEColumn]));
04944 }
04945 catch (global::System.InvalidCastException e) {
04946 throw new global::System.Data.StrongTypingException("The value for column \'RES_STD_RATE\' in table \'ResourceRates\' is DBNull.", e);
04947 }
04948 }
04949 set {
04950 this[this.tableResourceRates.RES_STD_RATEColumn] = value;
04951 }
04952 }
04953
04954 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04955 public double RES_OVT_RATE {
04956 get {
04957 try {
04958 return ((double)(this[this.tableResourceRates.RES_OVT_RATEColumn]));
04959 }
04960 catch (global::System.InvalidCastException e) {
04961 throw new global::System.Data.StrongTypingException("The value for column \'RES_OVT_RATE\' in table \'ResourceRates\' is DBNull.", e);
04962 }
04963 }
04964 set {
04965 this[this.tableResourceRates.RES_OVT_RATEColumn] = value;
04966 }
04967 }
04968
04969 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04970 public double RES_COST_PER_USE {
04971 get {
04972 try {
04973 return ((double)(this[this.tableResourceRates.RES_COST_PER_USEColumn]));
04974 }
04975 catch (global::System.InvalidCastException e) {
04976 throw new global::System.Data.StrongTypingException("The value for column \'RES_COST_PER_USE\' in table \'ResourceRates\' is DBNull.", e);
04977 }
04978 }
04979 set {
04980 this[this.tableResourceRates.RES_COST_PER_USEColumn] = value;
04981 }
04982 }
04983
04984 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04985 public ResourcesRow ResourcesRow {
04986 get {
04987 return ((ResourcesRow)(this.GetParentRow(this.Table.ParentRelations["ResourcesResourceRates"])));
04988 }
04989 set {
04990 this.SetParentRow(value, this.Table.ParentRelations["ResourcesResourceRates"]);
04991 }
04992 }
04993
04994 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
04995 public bool IsRES_RATE_EFFECTIVE_DATENull() {
04996 return this.IsNull(this.tableResourceRates.RES_RATE_EFFECTIVE_DATEColumn);
04997 }
04998
04999 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05000 public void SetRES_RATE_EFFECTIVE_DATENull() {
05001 this[this.tableResourceRates.RES_RATE_EFFECTIVE_DATEColumn] = global::System.Convert.DBNull;
05002 }
05003
05004 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05005 public bool IsRES_STD_RATENull() {
05006 return this.IsNull(this.tableResourceRates.RES_STD_RATEColumn);
05007 }
05008
05009 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05010 public void SetRES_STD_RATENull() {
05011 this[this.tableResourceRates.RES_STD_RATEColumn] = global::System.Convert.DBNull;
05012 }
05013
05014 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05015 public bool IsRES_OVT_RATENull() {
05016 return this.IsNull(this.tableResourceRates.RES_OVT_RATEColumn);
05017 }
05018
05019 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05020 public void SetRES_OVT_RATENull() {
05021 this[this.tableResourceRates.RES_OVT_RATEColumn] = global::System.Convert.DBNull;
05022 }
05023
05024 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05025 public bool IsRES_COST_PER_USENull() {
05026 return this.IsNull(this.tableResourceRates.RES_COST_PER_USEColumn);
05027 }
05028
05029 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05030 public void SetRES_COST_PER_USENull() {
05031 this[this.tableResourceRates.RES_COST_PER_USEColumn] = global::System.Convert.DBNull;
05032 }
05033 }
05034
05035
05036
05037
05038 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05039 public partial class ResourceAvailabilitiesRow : global::System.Data.DataRow {
05040
05041 private ResourceAvailabilitiesDataTable tableResourceAvailabilities;
05042
05043 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05044 internal ResourceAvailabilitiesRow(global::System.Data.DataRowBuilder rb) :
05045 base(rb) {
05046 this.tableResourceAvailabilities = ((ResourceAvailabilitiesDataTable)(this.Table));
05047 }
05048
05049 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05050 public System.Guid RES_UID {
05051 get {
05052 return ((global::System.Guid)(this[this.tableResourceAvailabilities.RES_UIDColumn]));
05053 }
05054 set {
05055 this[this.tableResourceAvailabilities.RES_UIDColumn] = value;
05056 }
05057 }
05058
05059 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05060 public System.DateTime RES_AVAIL_FROM {
05061 get {
05062 try {
05063 return ((global::System.DateTime)(this[this.tableResourceAvailabilities.RES_AVAIL_FROMColumn]));
05064 }
05065 catch (global::System.InvalidCastException e) {
05066 throw new global::System.Data.StrongTypingException("The value for column \'RES_AVAIL_FROM\' in table \'ResourceAvailabilities\' is DBNull" +
05067 ".", e);
05068 }
05069 }
05070 set {
05071 this[this.tableResourceAvailabilities.RES_AVAIL_FROMColumn] = value;
05072 }
05073 }
05074
05075 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05076 public System.DateTime RES_AVAIL_TO {
05077 get {
05078 try {
05079 return ((global::System.DateTime)(this[this.tableResourceAvailabilities.RES_AVAIL_TOColumn]));
05080 }
05081 catch (global::System.InvalidCastException e) {
05082 throw new global::System.Data.StrongTypingException("The value for column \'RES_AVAIL_TO\' in table \'ResourceAvailabilities\' is DBNull.", e);
05083 }
05084 }
05085 set {
05086 this[this.tableResourceAvailabilities.RES_AVAIL_TOColumn] = value;
05087 }
05088 }
05089
05090 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05091 public double RES_AVAIL_UNITS {
05092 get {
05093 try {
05094 return ((double)(this[this.tableResourceAvailabilities.RES_AVAIL_UNITSColumn]));
05095 }
05096 catch (global::System.InvalidCastException e) {
05097 throw new global::System.Data.StrongTypingException("The value for column \'RES_AVAIL_UNITS\' in table \'ResourceAvailabilities\' is DBNul" +
05098 "l.", e);
05099 }
05100 }
05101 set {
05102 this[this.tableResourceAvailabilities.RES_AVAIL_UNITSColumn] = value;
05103 }
05104 }
05105
05106 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05107 public ResourcesRow ResourcesRow {
05108 get {
05109 return ((ResourcesRow)(this.GetParentRow(this.Table.ParentRelations["ResourcesResourceAvailabilities"])));
05110 }
05111 set {
05112 this.SetParentRow(value, this.Table.ParentRelations["ResourcesResourceAvailabilities"]);
05113 }
05114 }
05115
05116 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05117 public bool IsRES_AVAIL_FROMNull() {
05118 return this.IsNull(this.tableResourceAvailabilities.RES_AVAIL_FROMColumn);
05119 }
05120
05121 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05122 public void SetRES_AVAIL_FROMNull() {
05123 this[this.tableResourceAvailabilities.RES_AVAIL_FROMColumn] = global::System.Convert.DBNull;
05124 }
05125
05126 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05127 public bool IsRES_AVAIL_TONull() {
05128 return this.IsNull(this.tableResourceAvailabilities.RES_AVAIL_TOColumn);
05129 }
05130
05131 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05132 public void SetRES_AVAIL_TONull() {
05133 this[this.tableResourceAvailabilities.RES_AVAIL_TOColumn] = global::System.Convert.DBNull;
05134 }
05135
05136 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05137 public bool IsRES_AVAIL_UNITSNull() {
05138 return this.IsNull(this.tableResourceAvailabilities.RES_AVAIL_UNITSColumn);
05139 }
05140
05141 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05142 public void SetRES_AVAIL_UNITSNull() {
05143 this[this.tableResourceAvailabilities.RES_AVAIL_UNITSColumn] = global::System.Convert.DBNull;
05144 }
05145 }
05146
05147
05148
05149
05150 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05151 public class ResourcesRowChangeEvent : global::System.EventArgs {
05152
05153 private ResourcesRow eventRow;
05154
05155 private global::System.Data.DataRowAction eventAction;
05156
05157 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05158 public ResourcesRowChangeEvent(ResourcesRow row, global::System.Data.DataRowAction action) {
05159 this.eventRow = row;
05160 this.eventAction = action;
05161 }
05162
05163 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05164 public ResourcesRow Row {
05165 get {
05166 return this.eventRow;
05167 }
05168 }
05169
05170 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05171 public global::System.Data.DataRowAction Action {
05172 get {
05173 return this.eventAction;
05174 }
05175 }
05176 }
05177
05178
05179
05180
05181 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05182 public class ResourceCustomFieldsRowChangeEvent : global::System.EventArgs {
05183
05184 private ResourceCustomFieldsRow eventRow;
05185
05186 private global::System.Data.DataRowAction eventAction;
05187
05188 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05189 public ResourceCustomFieldsRowChangeEvent(ResourceCustomFieldsRow row, global::System.Data.DataRowAction action) {
05190 this.eventRow = row;
05191 this.eventAction = action;
05192 }
05193
05194 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05195 public ResourceCustomFieldsRow Row {
05196 get {
05197 return this.eventRow;
05198 }
05199 }
05200
05201 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05202 public global::System.Data.DataRowAction Action {
05203 get {
05204 return this.eventAction;
05205 }
05206 }
05207 }
05208
05209
05210
05211
05212 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05213 public class CalendarExceptionsRowChangeEvent : global::System.EventArgs {
05214
05215 private CalendarExceptionsRow eventRow;
05216
05217 private global::System.Data.DataRowAction eventAction;
05218
05219 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05220 public CalendarExceptionsRowChangeEvent(CalendarExceptionsRow row, global::System.Data.DataRowAction action) {
05221 this.eventRow = row;
05222 this.eventAction = action;
05223 }
05224
05225 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05226 public CalendarExceptionsRow Row {
05227 get {
05228 return this.eventRow;
05229 }
05230 }
05231
05232 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05233 public global::System.Data.DataRowAction Action {
05234 get {
05235 return this.eventAction;
05236 }
05237 }
05238 }
05239
05240
05241
05242
05243 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05244 public class ResourceRatesRowChangeEvent : global::System.EventArgs {
05245
05246 private ResourceRatesRow eventRow;
05247
05248 private global::System.Data.DataRowAction eventAction;
05249
05250 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05251 public ResourceRatesRowChangeEvent(ResourceRatesRow row, global::System.Data.DataRowAction action) {
05252 this.eventRow = row;
05253 this.eventAction = action;
05254 }
05255
05256 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05257 public ResourceRatesRow Row {
05258 get {
05259 return this.eventRow;
05260 }
05261 }
05262
05263 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05264 public global::System.Data.DataRowAction Action {
05265 get {
05266 return this.eventAction;
05267 }
05268 }
05269 }
05270
05271
05272
05273
05274 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05275 public class ResourceAvailabilitiesRowChangeEvent : global::System.EventArgs {
05276
05277 private ResourceAvailabilitiesRow eventRow;
05278
05279 private global::System.Data.DataRowAction eventAction;
05280
05281 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05282 public ResourceAvailabilitiesRowChangeEvent(ResourceAvailabilitiesRow row, global::System.Data.DataRowAction action) {
05283 this.eventRow = row;
05284 this.eventAction = action;
05285 }
05286
05287 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05288 public ResourceAvailabilitiesRow Row {
05289 get {
05290 return this.eventRow;
05291 }
05292 }
05293
05294 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05295 public global::System.Data.DataRowAction Action {
05296 get {
05297 return this.eventAction;
05298 }
05299 }
05300 }
05301 }
05302
05303
05304
05305
05306
05307 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05308 [global::System.Serializable()]
05309 [global::System.ComponentModel.DesignerCategoryAttribute("code")]
05310 [global::System.ComponentModel.ToolboxItem(true)]
05311 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
05312 [global::System.Xml.Serialization.XmlRootAttribute("ResourceAssignmentDataSet")]
05313 [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
05314 public partial class ResourceAssignmentDataSet : global::System.Data.DataSet {
05315
05316 private ResourceAssignmentDataTable tableResourceAssignment;
05317
05318 private ResourceAssignmentCustomFieldsDataTable tableResourceAssignmentCustomFields;
05319
05320 private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
05321
05322 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05323 public ResourceAssignmentDataSet() {
05324 this.BeginInit();
05325 this.InitClass();
05326 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
05327 base.Tables.CollectionChanged += schemaChangedHandler;
05328 base.Relations.CollectionChanged += schemaChangedHandler;
05329 this.EndInit();
05330 }
05331
05332 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05333 protected ResourceAssignmentDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
05334 base(info, context, false) {
05335 if ((this.IsBinarySerialized(info, context) == true)) {
05336 this.InitVars(false);
05337 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
05338 this.Tables.CollectionChanged += schemaChangedHandler1;
05339 this.Relations.CollectionChanged += schemaChangedHandler1;
05340 return;
05341 }
05342 string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
05343 if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
05344 global::System.Data.DataSet ds = new global::System.Data.DataSet();
05345 ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
05346 if ((ds.Tables["ResourceAssignment"] != null)) {
05347 base.Tables.Add(new ResourceAssignmentDataTable(ds.Tables["ResourceAssignment"]));
05348 }
05349 if ((ds.Tables["ResourceAssignmentCustomFields"] != null)) {
05350 base.Tables.Add(new ResourceAssignmentCustomFieldsDataTable(ds.Tables["ResourceAssignmentCustomFields"]));
05351 }
05352 this.DataSetName = ds.DataSetName;
05353 this.Prefix = ds.Prefix;
05354 this.Namespace = ds.Namespace;
05355 this.Locale = ds.Locale;
05356 this.CaseSensitive = ds.CaseSensitive;
05357 this.EnforceConstraints = ds.EnforceConstraints;
05358 this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
05359 this.InitVars();
05360 }
05361 else {
05362 this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
05363 }
05364 this.GetSerializationData(info, context);
05365 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
05366 base.Tables.CollectionChanged += schemaChangedHandler;
05367 this.Relations.CollectionChanged += schemaChangedHandler;
05368 }
05369
05370 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05371 [global::System.ComponentModel.Browsable(false)]
05372 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
05373 public ResourceAssignmentDataTable ResourceAssignment {
05374 get {
05375 return this.tableResourceAssignment;
05376 }
05377 }
05378
05379 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05380 [global::System.ComponentModel.Browsable(false)]
05381 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
05382 public ResourceAssignmentCustomFieldsDataTable ResourceAssignmentCustomFields {
05383 get {
05384 return this.tableResourceAssignmentCustomFields;
05385 }
05386 }
05387
05388 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05389 [global::System.ComponentModel.BrowsableAttribute(true)]
05390 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
05391 public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
05392 get {
05393 return this._schemaSerializationMode;
05394 }
05395 set {
05396 this._schemaSerializationMode = value;
05397 }
05398 }
05399
05400 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05401 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
05402 public new global::System.Data.DataTableCollection Tables {
05403 get {
05404 return base.Tables;
05405 }
05406 }
05407
05408 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05409 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
05410 public new global::System.Data.DataRelationCollection Relations {
05411 get {
05412 return base.Relations;
05413 }
05414 }
05415
05416 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05417 protected override void InitializeDerivedDataSet() {
05418 this.BeginInit();
05419 this.InitClass();
05420 this.EndInit();
05421 }
05422
05423 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05424 public override global::System.Data.DataSet Clone() {
05425 ResourceAssignmentDataSet cln = ((ResourceAssignmentDataSet)(base.Clone()));
05426 cln.InitVars();
05427 cln.SchemaSerializationMode = this.SchemaSerializationMode;
05428 return cln;
05429 }
05430
05431 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05432 protected override bool ShouldSerializeTables() {
05433 return false;
05434 }
05435
05436 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05437 protected override bool ShouldSerializeRelations() {
05438 return false;
05439 }
05440
05441 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05442 protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
05443 if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
05444 this.Reset();
05445 global::System.Data.DataSet ds = new global::System.Data.DataSet();
05446 ds.ReadXml(reader);
05447 if ((ds.Tables["ResourceAssignment"] != null)) {
05448 base.Tables.Add(new ResourceAssignmentDataTable(ds.Tables["ResourceAssignment"]));
05449 }
05450 if ((ds.Tables["ResourceAssignmentCustomFields"] != null)) {
05451 base.Tables.Add(new ResourceAssignmentCustomFieldsDataTable(ds.Tables["ResourceAssignmentCustomFields"]));
05452 }
05453 this.DataSetName = ds.DataSetName;
05454 this.Prefix = ds.Prefix;
05455 this.Namespace = ds.Namespace;
05456 this.Locale = ds.Locale;
05457 this.CaseSensitive = ds.CaseSensitive;
05458 this.EnforceConstraints = ds.EnforceConstraints;
05459 this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
05460 this.InitVars();
05461 }
05462 else {
05463 this.ReadXml(reader);
05464 this.InitVars();
05465 }
05466 }
05467
05468 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05469 protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
05470 global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
05471 this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
05472 stream.Position = 0;
05473 return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
05474 }
05475
05476 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05477 internal void InitVars() {
05478 this.InitVars(true);
05479 }
05480
05481 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05482 internal void InitVars(bool initTable) {
05483 this.tableResourceAssignment = ((ResourceAssignmentDataTable)(base.Tables["ResourceAssignment"]));
05484 if ((initTable == true)) {
05485 if ((this.tableResourceAssignment != null)) {
05486 this.tableResourceAssignment.InitVars();
05487 }
05488 }
05489 this.tableResourceAssignmentCustomFields = ((ResourceAssignmentCustomFieldsDataTable)(base.Tables["ResourceAssignmentCustomFields"]));
05490 if ((initTable == true)) {
05491 if ((this.tableResourceAssignmentCustomFields != null)) {
05492 this.tableResourceAssignmentCustomFields.InitVars();
05493 }
05494 }
05495 }
05496
05497 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05498 private void InitClass() {
05499 this.DataSetName = "ResourceAssignmentDataSet";
05500 this.Prefix = "";
05501 this.Namespace = "http://schemas.microsoft.com/office/project/server/webservices/ResourceAssignment" +
05502 "DataSet/";
05503 this.EnforceConstraints = true;
05504 this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
05505 this.tableResourceAssignment = new ResourceAssignmentDataTable();
05506 base.Tables.Add(this.tableResourceAssignment);
05507 this.tableResourceAssignmentCustomFields = new ResourceAssignmentCustomFieldsDataTable();
05508 base.Tables.Add(this.tableResourceAssignmentCustomFields);
05509 }
05510
05511 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05512 private bool ShouldSerializeResourceAssignment() {
05513 return false;
05514 }
05515
05516 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05517 private bool ShouldSerializeResourceAssignmentCustomFields() {
05518 return false;
05519 }
05520
05521 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05522 private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
05523 if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
05524 this.InitVars();
05525 }
05526 }
05527
05528 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05529 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
05530 ResourceAssignmentDataSet ds = new ResourceAssignmentDataSet();
05531 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
05532 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
05533 global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
05534 any.Namespace = ds.Namespace;
05535 sequence.Items.Add(any);
05536 type.Particle = sequence;
05537 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
05538 if (xs.Contains(dsSchema.TargetNamespace)) {
05539 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
05540 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
05541 try {
05542 global::System.Xml.Schema.XmlSchema schema = null;
05543 dsSchema.Write(s1);
05544 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
05545 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
05546 s2.SetLength(0);
05547 schema.Write(s2);
05548 if ((s1.Length == s2.Length)) {
05549 s1.Position = 0;
05550 s2.Position = 0;
05551 for (; ((s1.Position != s1.Length)
05552 && (s1.ReadByte() == s2.ReadByte())); ) {
05553 ;
05554 }
05555 if ((s1.Position == s1.Length)) {
05556 return type;
05557 }
05558 }
05559 }
05560 }
05561 finally {
05562 if ((s1 != null)) {
05563 s1.Close();
05564 }
05565 if ((s2 != null)) {
05566 s2.Close();
05567 }
05568 }
05569 }
05570 xs.Add(dsSchema);
05571 return type;
05572 }
05573
05574 public delegate void ResourceAssignmentRowChangeEventHandler(object sender, ResourceAssignmentRowChangeEvent e);
05575
05576 public delegate void ResourceAssignmentCustomFieldsRowChangeEventHandler(object sender, ResourceAssignmentCustomFieldsRowChangeEvent e);
05577
05578
05579
05580
05581 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
05582 [global::System.Serializable()]
05583 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
05584 public partial class ResourceAssignmentDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
05585
05586 private global::System.Data.DataColumn columnPROJ_UID;
05587
05588 private global::System.Data.DataColumn columnPROJ_NAME;
05589
05590 private global::System.Data.DataColumn columnTASK_UID;
05591
05592 private global::System.Data.DataColumn columnASSN_UID;
05593
05594 private global::System.Data.DataColumn columnRES_UID;
05595
05596 private global::System.Data.DataColumn columnASSN_PARENT_UID;
05597
05598 private global::System.Data.DataColumn columnASSN_ACT_START;
05599
05600 private global::System.Data.DataColumn columnASSN_ACT_FINISH;
05601
05602 private global::System.Data.DataColumn columnASSN_WORK_CONTOUR;
05603
05604 private global::System.Data.DataColumn columnASSN_DELAY;
05605
05606 private global::System.Data.DataColumn columnASSN_LEVELING_DELAY;
05607
05608 private global::System.Data.DataColumn columnASSN_COST_RATE_TABLE;
05609
05610 private global::System.Data.DataColumn columnASSN_UNITS;
05611
05612 private global::System.Data.DataColumn columnASSN_WORK;
05613
05614 private global::System.Data.DataColumn columnASSN_ACT_WORK;
05615
05616 private global::System.Data.DataColumn columnASSN_BASE_WORK;
05617
05618 private global::System.Data.DataColumn columnASSN_REG_WORK;
05619
05620 private global::System.Data.DataColumn columnASSN_OVT_WORK;
05621
05622 private global::System.Data.DataColumn columnASSN_REM_WORK;
05623
05624 private global::System.Data.DataColumn columnASSN_ACT_OVT_WORK;
05625
05626 private global::System.Data.DataColumn columnASSN_REM_OVT_WORK;
05627
05628 private global::System.Data.DataColumn columnASSN_START_DATE;
05629
05630 private global::System.Data.DataColumn columnASSN_FINISH_DATE;
05631
05632 private global::System.Data.DataColumn columnASSN_BASE_START;
05633
05634 private global::System.Data.DataColumn columnASSN_BASE_FINISH;
05635
05636 private global::System.Data.DataColumn columnASSN_RESUME_DATE;
05637
05638 private global::System.Data.DataColumn columnASSN_STOP_DATE;
05639
05640 private global::System.Data.DataColumn columnASSN_BASE_COST_PER_USE;
05641
05642 private global::System.Data.DataColumn columnASSN_ENTSUMPROJID;
05643
05644 private global::System.Data.DataColumn columnASSN_COST;
05645
05646 private global::System.Data.DataColumn columnASSN_ACT_COST;
05647
05648 private global::System.Data.DataColumn columnASSN_ACT_OVT_COST;
05649
05650 private global::System.Data.DataColumn columnASSN_BASE_COST;
05651
05652 private global::System.Data.DataColumn columnASSN_REM_COST;
05653
05654 private global::System.Data.DataColumn columnASSN_REM_OVT_COST;
05655
05656 private global::System.Data.DataColumn columnASSN_OVT_COST;
05657
05658 private global::System.Data.DataColumn columnTASK_NAME;
05659
05660 private global::System.Data.DataColumn columnRES_NAME;
05661
05662 private global::System.Data.DataColumn columnASSN_PCT_WORK_COMPLETE;
05663
05664 private global::System.Data.DataColumn columnASSN_ACWP;
05665
05666 private global::System.Data.DataColumn columnASSN_BCWP;
05667
05668 private global::System.Data.DataColumn columnASSN_BCWS;
05669
05670 private global::System.Data.DataColumn columnASSN_BOOKING_TYPE;
05671
05672 private global::System.Data.DataColumn columnASSN_DEMAND_REQ;
05673
05674 private global::System.Data.DataColumn columnASSN_MATERIAL_RATE_FMT;
05675
05676 private global::System.Data.DataColumn columnASSN_DELAY_FMT;
05677
05678 private global::System.Data.DataColumn columnASSN_START_VAR;
05679
05680 private global::System.Data.DataColumn columnASSN_FINISH_VAR;
05681
05682 private global::System.Data.DataColumn columnASSN_HAS_LINKED_FIELDS;
05683
05684 private global::System.Data.DataColumn columnASSN_IS_CONFIRMED;
05685
05686 private global::System.Data.DataColumn columnASSN_IS_OVERALLOCATED;
05687
05688 private global::System.Data.DataColumn columnASSN_RES_TYPE;
05689
05690 private global::System.Data.DataColumn columnASSN_RESPONSE_PENDING;
05691
05692 private global::System.Data.DataColumn columnWASSN_SEND_UPDATE_DATE;
05693
05694 private global::System.Data.DataColumn columnWASSN_NOTE_STATUS;
05695
05696 private global::System.Data.DataColumn columnASSN_UPDATE_NEEDED;
05697
05698 private global::System.Data.DataColumn columnCREATED_DATE;
05699
05700 private global::System.Data.DataColumn columnWASSN_COMMENTS;
05701
05702 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05703 public ResourceAssignmentDataTable() {
05704 this.TableName = "ResourceAssignment";
05705 this.BeginInit();
05706 this.InitClass();
05707 this.EndInit();
05708 }
05709
05710 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05711 internal ResourceAssignmentDataTable(global::System.Data.DataTable table) {
05712 this.TableName = table.TableName;
05713 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
05714 this.CaseSensitive = table.CaseSensitive;
05715 }
05716 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
05717 this.Locale = table.Locale;
05718 }
05719 if ((table.Namespace != table.DataSet.Namespace)) {
05720 this.Namespace = table.Namespace;
05721 }
05722 this.Prefix = table.Prefix;
05723 this.MinimumCapacity = table.MinimumCapacity;
05724 }
05725
05726 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05727 protected ResourceAssignmentDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
05728 base(info, context) {
05729 this.InitVars();
05730 }
05731
05732 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05733 public global::System.Data.DataColumn PROJ_UIDColumn {
05734 get {
05735 return this.columnPROJ_UID;
05736 }
05737 }
05738
05739 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05740 public global::System.Data.DataColumn PROJ_NAMEColumn {
05741 get {
05742 return this.columnPROJ_NAME;
05743 }
05744 }
05745
05746 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05747 public global::System.Data.DataColumn TASK_UIDColumn {
05748 get {
05749 return this.columnTASK_UID;
05750 }
05751 }
05752
05753 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05754 public global::System.Data.DataColumn ASSN_UIDColumn {
05755 get {
05756 return this.columnASSN_UID;
05757 }
05758 }
05759
05760 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05761 public global::System.Data.DataColumn RES_UIDColumn {
05762 get {
05763 return this.columnRES_UID;
05764 }
05765 }
05766
05767 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05768 public global::System.Data.DataColumn ASSN_PARENT_UIDColumn {
05769 get {
05770 return this.columnASSN_PARENT_UID;
05771 }
05772 }
05773
05774 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05775 public global::System.Data.DataColumn ASSN_ACT_STARTColumn {
05776 get {
05777 return this.columnASSN_ACT_START;
05778 }
05779 }
05780
05781 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05782 public global::System.Data.DataColumn ASSN_ACT_FINISHColumn {
05783 get {
05784 return this.columnASSN_ACT_FINISH;
05785 }
05786 }
05787
05788 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05789 public global::System.Data.DataColumn ASSN_WORK_CONTOURColumn {
05790 get {
05791 return this.columnASSN_WORK_CONTOUR;
05792 }
05793 }
05794
05795 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05796 public global::System.Data.DataColumn ASSN_DELAYColumn {
05797 get {
05798 return this.columnASSN_DELAY;
05799 }
05800 }
05801
05802 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05803 public global::System.Data.DataColumn ASSN_LEVELING_DELAYColumn {
05804 get {
05805 return this.columnASSN_LEVELING_DELAY;
05806 }
05807 }
05808
05809 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05810 public global::System.Data.DataColumn ASSN_COST_RATE_TABLEColumn {
05811 get {
05812 return this.columnASSN_COST_RATE_TABLE;
05813 }
05814 }
05815
05816 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05817 public global::System.Data.DataColumn ASSN_UNITSColumn {
05818 get {
05819 return this.columnASSN_UNITS;
05820 }
05821 }
05822
05823 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05824 public global::System.Data.DataColumn ASSN_WORKColumn {
05825 get {
05826 return this.columnASSN_WORK;
05827 }
05828 }
05829
05830 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05831 public global::System.Data.DataColumn ASSN_ACT_WORKColumn {
05832 get {
05833 return this.columnASSN_ACT_WORK;
05834 }
05835 }
05836
05837 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05838 public global::System.Data.DataColumn ASSN_BASE_WORKColumn {
05839 get {
05840 return this.columnASSN_BASE_WORK;
05841 }
05842 }
05843
05844 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05845 public global::System.Data.DataColumn ASSN_REG_WORKColumn {
05846 get {
05847 return this.columnASSN_REG_WORK;
05848 }
05849 }
05850
05851 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05852 public global::System.Data.DataColumn ASSN_OVT_WORKColumn {
05853 get {
05854 return this.columnASSN_OVT_WORK;
05855 }
05856 }
05857
05858 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05859 public global::System.Data.DataColumn ASSN_REM_WORKColumn {
05860 get {
05861 return this.columnASSN_REM_WORK;
05862 }
05863 }
05864
05865 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05866 public global::System.Data.DataColumn ASSN_ACT_OVT_WORKColumn {
05867 get {
05868 return this.columnASSN_ACT_OVT_WORK;
05869 }
05870 }
05871
05872 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05873 public global::System.Data.DataColumn ASSN_REM_OVT_WORKColumn {
05874 get {
05875 return this.columnASSN_REM_OVT_WORK;
05876 }
05877 }
05878
05879 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05880 public global::System.Data.DataColumn ASSN_START_DATEColumn {
05881 get {
05882 return this.columnASSN_START_DATE;
05883 }
05884 }
05885
05886 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05887 public global::System.Data.DataColumn ASSN_FINISH_DATEColumn {
05888 get {
05889 return this.columnASSN_FINISH_DATE;
05890 }
05891 }
05892
05893 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05894 public global::System.Data.DataColumn ASSN_BASE_STARTColumn {
05895 get {
05896 return this.columnASSN_BASE_START;
05897 }
05898 }
05899
05900 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05901 public global::System.Data.DataColumn ASSN_BASE_FINISHColumn {
05902 get {
05903 return this.columnASSN_BASE_FINISH;
05904 }
05905 }
05906
05907 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05908 public global::System.Data.DataColumn ASSN_RESUME_DATEColumn {
05909 get {
05910 return this.columnASSN_RESUME_DATE;
05911 }
05912 }
05913
05914 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05915 public global::System.Data.DataColumn ASSN_STOP_DATEColumn {
05916 get {
05917 return this.columnASSN_STOP_DATE;
05918 }
05919 }
05920
05921 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05922 public global::System.Data.DataColumn ASSN_BASE_COST_PER_USEColumn {
05923 get {
05924 return this.columnASSN_BASE_COST_PER_USE;
05925 }
05926 }
05927
05928 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05929 public global::System.Data.DataColumn ASSN_ENTSUMPROJIDColumn {
05930 get {
05931 return this.columnASSN_ENTSUMPROJID;
05932 }
05933 }
05934
05935 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05936 public global::System.Data.DataColumn ASSN_COSTColumn {
05937 get {
05938 return this.columnASSN_COST;
05939 }
05940 }
05941
05942 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05943 public global::System.Data.DataColumn ASSN_ACT_COSTColumn {
05944 get {
05945 return this.columnASSN_ACT_COST;
05946 }
05947 }
05948
05949 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05950 public global::System.Data.DataColumn ASSN_ACT_OVT_COSTColumn {
05951 get {
05952 return this.columnASSN_ACT_OVT_COST;
05953 }
05954 }
05955
05956 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05957 public global::System.Data.DataColumn ASSN_BASE_COSTColumn {
05958 get {
05959 return this.columnASSN_BASE_COST;
05960 }
05961 }
05962
05963 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05964 public global::System.Data.DataColumn ASSN_REM_COSTColumn {
05965 get {
05966 return this.columnASSN_REM_COST;
05967 }
05968 }
05969
05970 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05971 public global::System.Data.DataColumn ASSN_REM_OVT_COSTColumn {
05972 get {
05973 return this.columnASSN_REM_OVT_COST;
05974 }
05975 }
05976
05977 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05978 public global::System.Data.DataColumn ASSN_OVT_COSTColumn {
05979 get {
05980 return this.columnASSN_OVT_COST;
05981 }
05982 }
05983
05984 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05985 public global::System.Data.DataColumn TASK_NAMEColumn {
05986 get {
05987 return this.columnTASK_NAME;
05988 }
05989 }
05990
05991 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05992 public global::System.Data.DataColumn RES_NAMEColumn {
05993 get {
05994 return this.columnRES_NAME;
05995 }
05996 }
05997
05998 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
05999 public global::System.Data.DataColumn ASSN_PCT_WORK_COMPLETEColumn {
06000 get {
06001 return this.columnASSN_PCT_WORK_COMPLETE;
06002 }
06003 }
06004
06005 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06006 public global::System.Data.DataColumn ASSN_ACWPColumn {
06007 get {
06008 return this.columnASSN_ACWP;
06009 }
06010 }
06011
06012 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06013 public global::System.Data.DataColumn ASSN_BCWPColumn {
06014 get {
06015 return this.columnASSN_BCWP;
06016 }
06017 }
06018
06019 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06020 public global::System.Data.DataColumn ASSN_BCWSColumn {
06021 get {
06022 return this.columnASSN_BCWS;
06023 }
06024 }
06025
06026 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06027 public global::System.Data.DataColumn ASSN_BOOKING_TYPEColumn {
06028 get {
06029 return this.columnASSN_BOOKING_TYPE;
06030 }
06031 }
06032
06033 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06034 public global::System.Data.DataColumn ASSN_DEMAND_REQColumn {
06035 get {
06036 return this.columnASSN_DEMAND_REQ;
06037 }
06038 }
06039
06040 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06041 public global::System.Data.DataColumn ASSN_MATERIAL_RATE_FMTColumn {
06042 get {
06043 return this.columnASSN_MATERIAL_RATE_FMT;
06044 }
06045 }
06046
06047 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06048 public global::System.Data.DataColumn ASSN_DELAY_FMTColumn {
06049 get {
06050 return this.columnASSN_DELAY_FMT;
06051 }
06052 }
06053
06054 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06055 public global::System.Data.DataColumn ASSN_START_VARColumn {
06056 get {
06057 return this.columnASSN_START_VAR;
06058 }
06059 }
06060
06061 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06062 public global::System.Data.DataColumn ASSN_FINISH_VARColumn {
06063 get {
06064 return this.columnASSN_FINISH_VAR;
06065 }
06066 }
06067
06068 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06069 public global::System.Data.DataColumn ASSN_HAS_LINKED_FIELDSColumn {
06070 get {
06071 return this.columnASSN_HAS_LINKED_FIELDS;
06072 }
06073 }
06074
06075 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06076 public global::System.Data.DataColumn ASSN_IS_CONFIRMEDColumn {
06077 get {
06078 return this.columnASSN_IS_CONFIRMED;
06079 }
06080 }
06081
06082 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06083 public global::System.Data.DataColumn ASSN_IS_OVERALLOCATEDColumn {
06084 get {
06085 return this.columnASSN_IS_OVERALLOCATED;
06086 }
06087 }
06088
06089 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06090 public global::System.Data.DataColumn ASSN_RES_TYPEColumn {
06091 get {
06092 return this.columnASSN_RES_TYPE;
06093 }
06094 }
06095
06096 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06097 public global::System.Data.DataColumn ASSN_RESPONSE_PENDINGColumn {
06098 get {
06099 return this.columnASSN_RESPONSE_PENDING;
06100 }
06101 }
06102
06103 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06104 public global::System.Data.DataColumn WASSN_SEND_UPDATE_DATEColumn {
06105 get {
06106 return this.columnWASSN_SEND_UPDATE_DATE;
06107 }
06108 }
06109
06110 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06111 public global::System.Data.DataColumn WASSN_NOTE_STATUSColumn {
06112 get {
06113 return this.columnWASSN_NOTE_STATUS;
06114 }
06115 }
06116
06117 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06118 public global::System.Data.DataColumn ASSN_UPDATE_NEEDEDColumn {
06119 get {
06120 return this.columnASSN_UPDATE_NEEDED;
06121 }
06122 }
06123
06124 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06125 public global::System.Data.DataColumn CREATED_DATEColumn {
06126 get {
06127 return this.columnCREATED_DATE;
06128 }
06129 }
06130
06131 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06132 public global::System.Data.DataColumn WASSN_COMMENTSColumn {
06133 get {
06134 return this.columnWASSN_COMMENTS;
06135 }
06136 }
06137
06138 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06139 [global::System.ComponentModel.Browsable(false)]
06140 public int Count {
06141 get {
06142 return this.Rows.Count;
06143 }
06144 }
06145
06146 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06147 public ResourceAssignmentRow this[int index] {
06148 get {
06149 return ((ResourceAssignmentRow)(this.Rows[index]));
06150 }
06151 }
06152
06153 public event ResourceAssignmentRowChangeEventHandler ResourceAssignmentRowChanging;
06154
06155 public event ResourceAssignmentRowChangeEventHandler ResourceAssignmentRowChanged;
06156
06157 public event ResourceAssignmentRowChangeEventHandler ResourceAssignmentRowDeleting;
06158
06159 public event ResourceAssignmentRowChangeEventHandler ResourceAssignmentRowDeleted;
06160
06161 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06162 public void AddResourceAssignmentRow(ResourceAssignmentRow row) {
06163 this.Rows.Add(row);
06164 }
06165
06166 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06167 public ResourceAssignmentRow AddResourceAssignmentRow(
06168 System.Guid PROJ_UID,
06169 string PROJ_NAME,
06170 System.Guid TASK_UID,
06171 System.Guid ASSN_UID,
06172 System.Guid RES_UID,
06173 System.Guid ASSN_PARENT_UID,
06174 System.DateTime ASSN_ACT_START,
06175 System.DateTime ASSN_ACT_FINISH,
06176 int ASSN_WORK_CONTOUR,
06177 int ASSN_DELAY,
06178 int ASSN_LEVELING_DELAY,
06179 int ASSN_COST_RATE_TABLE,
06180 double ASSN_UNITS,
06181 double ASSN_WORK,
06182 double ASSN_ACT_WORK,
06183 double ASSN_BASE_WORK,
06184 double ASSN_REG_WORK,
06185 double ASSN_OVT_WORK,
06186 double ASSN_REM_WORK,
06187 double ASSN_ACT_OVT_WORK,
06188 double ASSN_REM_OVT_WORK,
06189 System.DateTime ASSN_START_DATE,
06190 System.DateTime ASSN_FINISH_DATE,
06191 System.DateTime ASSN_BASE_START,
06192 System.DateTime ASSN_BASE_FINISH,
06193 System.DateTime ASSN_RESUME_DATE,
06194 System.DateTime ASSN_STOP_DATE,
06195 double ASSN_BASE_COST_PER_USE,
06196 int ASSN_ENTSUMPROJID,
06197 double ASSN_COST,
06198 double ASSN_ACT_COST,
06199 double ASSN_ACT_OVT_COST,
06200 double ASSN_BASE_COST,
06201 double ASSN_REM_COST,
06202 double ASSN_REM_OVT_COST,
06203 double ASSN_OVT_COST,
06204 string TASK_NAME,
06205 string RES_NAME,
06206 int ASSN_PCT_WORK_COMPLETE,
06207 double ASSN_ACWP,
06208 double ASSN_BCWP,
06209 double ASSN_BCWS,
06210 short ASSN_BOOKING_TYPE,
06211 byte ASSN_DEMAND_REQ,
06212 short ASSN_MATERIAL_RATE_FMT,
06213 short ASSN_DELAY_FMT,
06214 int ASSN_START_VAR,
06215 int ASSN_FINISH_VAR,
06216 bool ASSN_HAS_LINKED_FIELDS,
06217 bool ASSN_IS_CONFIRMED,
06218 bool ASSN_IS_OVERALLOCATED,
06219 bool ASSN_RES_TYPE,
06220 bool ASSN_RESPONSE_PENDING,
06221 System.DateTime WASSN_SEND_UPDATE_DATE,
06222 int WASSN_NOTE_STATUS,
06223 bool ASSN_UPDATE_NEEDED,
06224 System.DateTime CREATED_DATE,
06225 string WASSN_COMMENTS) {
06226 ResourceAssignmentRow rowResourceAssignmentRow = ((ResourceAssignmentRow)(this.NewRow()));
06227 object[] columnValuesArray = new object[] {
06228 PROJ_UID,
06229 PROJ_NAME,
06230 TASK_UID,
06231 ASSN_UID,
06232 RES_UID,
06233 ASSN_PARENT_UID,
06234 ASSN_ACT_START,
06235 ASSN_ACT_FINISH,
06236 ASSN_WORK_CONTOUR,
06237 ASSN_DELAY,
06238 ASSN_LEVELING_DELAY,
06239 ASSN_COST_RATE_TABLE,
06240 ASSN_UNITS,
06241 ASSN_WORK,
06242 ASSN_ACT_WORK,
06243 ASSN_BASE_WORK,
06244 ASSN_REG_WORK,
06245 ASSN_OVT_WORK,
06246 ASSN_REM_WORK,
06247 ASSN_ACT_OVT_WORK,
06248 ASSN_REM_OVT_WORK,
06249 ASSN_START_DATE,
06250 ASSN_FINISH_DATE,
06251 ASSN_BASE_START,
06252 ASSN_BASE_FINISH,
06253 ASSN_RESUME_DATE,
06254 ASSN_STOP_DATE,
06255 ASSN_BASE_COST_PER_USE,
06256 ASSN_ENTSUMPROJID,
06257 ASSN_COST,
06258 ASSN_ACT_COST,
06259 ASSN_ACT_OVT_COST,
06260 ASSN_BASE_COST,
06261 ASSN_REM_COST,
06262 ASSN_REM_OVT_COST,
06263 ASSN_OVT_COST,
06264 TASK_NAME,
06265 RES_NAME,
06266 ASSN_PCT_WORK_COMPLETE,
06267 ASSN_ACWP,
06268 ASSN_BCWP,
06269 ASSN_BCWS,
06270 ASSN_BOOKING_TYPE,
06271 ASSN_DEMAND_REQ,
06272 ASSN_MATERIAL_RATE_FMT,
06273 ASSN_DELAY_FMT,
06274 ASSN_START_VAR,
06275 ASSN_FINISH_VAR,
06276 ASSN_HAS_LINKED_FIELDS,
06277 ASSN_IS_CONFIRMED,
06278 ASSN_IS_OVERALLOCATED,
06279 ASSN_RES_TYPE,
06280 ASSN_RESPONSE_PENDING,
06281 WASSN_SEND_UPDATE_DATE,
06282 WASSN_NOTE_STATUS,
06283 ASSN_UPDATE_NEEDED,
06284 CREATED_DATE,
06285 WASSN_COMMENTS};
06286 rowResourceAssignmentRow.ItemArray = columnValuesArray;
06287 this.Rows.Add(rowResourceAssignmentRow);
06288 return rowResourceAssignmentRow;
06289 }
06290
06291 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06292 public ResourceAssignmentRow FindByASSN_UIDPROJ_UIDRES_UID(System.Guid ASSN_UID, System.Guid PROJ_UID, System.Guid RES_UID) {
06293 return ((ResourceAssignmentRow)(this.Rows.Find(new object[] {
06294 ASSN_UID,
06295 PROJ_UID,
06296 RES_UID})));
06297 }
06298
06299 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06300 public virtual global::System.Collections.IEnumerator GetEnumerator() {
06301 return this.Rows.GetEnumerator();
06302 }
06303
06304 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06305 public override global::System.Data.DataTable Clone() {
06306 ResourceAssignmentDataTable cln = ((ResourceAssignmentDataTable)(base.Clone()));
06307 cln.InitVars();
06308 return cln;
06309 }
06310
06311 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06312 protected override global::System.Data.DataTable CreateInstance() {
06313 return new ResourceAssignmentDataTable();
06314 }
06315
06316 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06317 internal void InitVars() {
06318 this.columnPROJ_UID = base.Columns["PROJ_UID"];
06319 this.columnPROJ_NAME = base.Columns["PROJ_NAME"];
06320 this.columnTASK_UID = base.Columns["TASK_UID"];
06321 this.columnASSN_UID = base.Columns["ASSN_UID"];
06322 this.columnRES_UID = base.Columns["RES_UID"];
06323 this.columnASSN_PARENT_UID = base.Columns["ASSN_PARENT_UID"];
06324 this.columnASSN_ACT_START = base.Columns["ASSN_ACT_START"];
06325 this.columnASSN_ACT_FINISH = base.Columns["ASSN_ACT_FINISH"];
06326 this.columnASSN_WORK_CONTOUR = base.Columns["ASSN_WORK_CONTOUR"];
06327 this.columnASSN_DELAY = base.Columns["ASSN_DELAY"];
06328 this.columnASSN_LEVELING_DELAY = base.Columns["ASSN_LEVELING_DELAY"];
06329 this.columnASSN_COST_RATE_TABLE = base.Columns["ASSN_COST_RATE_TABLE"];
06330 this.columnASSN_UNITS = base.Columns["ASSN_UNITS"];
06331 this.columnASSN_WORK = base.Columns["ASSN_WORK"];
06332 this.columnASSN_ACT_WORK = base.Columns["ASSN_ACT_WORK"];
06333 this.columnASSN_BASE_WORK = base.Columns["ASSN_BASE_WORK"];
06334 this.columnASSN_REG_WORK = base.Columns["ASSN_REG_WORK"];
06335 this.columnASSN_OVT_WORK = base.Columns["ASSN_OVT_WORK"];
06336 this.columnASSN_REM_WORK = base.Columns["ASSN_REM_WORK"];
06337 this.columnASSN_ACT_OVT_WORK = base.Columns["ASSN_ACT_OVT_WORK"];
06338 this.columnASSN_REM_OVT_WORK = base.Columns["ASSN_REM_OVT_WORK"];
06339 this.columnASSN_START_DATE = base.Columns["ASSN_START_DATE"];
06340 this.columnASSN_FINISH_DATE = base.Columns["ASSN_FINISH_DATE"];
06341 this.columnASSN_BASE_START = base.Columns["ASSN_BASE_START"];
06342 this.columnASSN_BASE_FINISH = base.Columns["ASSN_BASE_FINISH"];
06343 this.columnASSN_RESUME_DATE = base.Columns["ASSN_RESUME_DATE"];
06344 this.columnASSN_STOP_DATE = base.Columns["ASSN_STOP_DATE"];
06345 this.columnASSN_BASE_COST_PER_USE = base.Columns["ASSN_BASE_COST_PER_USE"];
06346 this.columnASSN_ENTSUMPROJID = base.Columns["ASSN_ENTSUMPROJID"];
06347 this.columnASSN_COST = base.Columns["ASSN_COST"];
06348 this.columnASSN_ACT_COST = base.Columns["ASSN_ACT_COST"];
06349 this.columnASSN_ACT_OVT_COST = base.Columns["ASSN_ACT_OVT_COST"];
06350 this.columnASSN_BASE_COST = base.Columns["ASSN_BASE_COST"];
06351 this.columnASSN_REM_COST = base.Columns["ASSN_REM_COST"];
06352 this.columnASSN_REM_OVT_COST = base.Columns["ASSN_REM_OVT_COST"];
06353 this.columnASSN_OVT_COST = base.Columns["ASSN_OVT_COST"];
06354 this.columnTASK_NAME = base.Columns["TASK_NAME"];
06355 this.columnRES_NAME = base.Columns["RES_NAME"];
06356 this.columnASSN_PCT_WORK_COMPLETE = base.Columns["ASSN_PCT_WORK_COMPLETE"];
06357 this.columnASSN_ACWP = base.Columns["ASSN_ACWP"];
06358 this.columnASSN_BCWP = base.Columns["ASSN_BCWP"];
06359 this.columnASSN_BCWS = base.Columns["ASSN_BCWS"];
06360 this.columnASSN_BOOKING_TYPE = base.Columns["ASSN_BOOKING_TYPE"];
06361 this.columnASSN_DEMAND_REQ = base.Columns["ASSN_DEMAND_REQ"];
06362 this.columnASSN_MATERIAL_RATE_FMT = base.Columns["ASSN_MATERIAL_RATE_FMT"];
06363 this.columnASSN_DELAY_FMT = base.Columns["ASSN_DELAY_FMT"];
06364 this.columnASSN_START_VAR = base.Columns["ASSN_START_VAR"];
06365 this.columnASSN_FINISH_VAR = base.Columns["ASSN_FINISH_VAR"];
06366 this.columnASSN_HAS_LINKED_FIELDS = base.Columns["ASSN_HAS_LINKED_FIELDS"];
06367 this.columnASSN_IS_CONFIRMED = base.Columns["ASSN_IS_CONFIRMED"];
06368 this.columnASSN_IS_OVERALLOCATED = base.Columns["ASSN_IS_OVERALLOCATED"];
06369 this.columnASSN_RES_TYPE = base.Columns["ASSN_RES_TYPE"];
06370 this.columnASSN_RESPONSE_PENDING = base.Columns["ASSN_RESPONSE_PENDING"];
06371 this.columnWASSN_SEND_UPDATE_DATE = base.Columns["WASSN_SEND_UPDATE_DATE"];
06372 this.columnWASSN_NOTE_STATUS = base.Columns["WASSN_NOTE_STATUS"];
06373 this.columnASSN_UPDATE_NEEDED = base.Columns["ASSN_UPDATE_NEEDED"];
06374 this.columnCREATED_DATE = base.Columns["CREATED_DATE"];
06375 this.columnWASSN_COMMENTS = base.Columns["WASSN_COMMENTS"];
06376 }
06377
06378 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06379 private void InitClass() {
06380 this.columnPROJ_UID = new global::System.Data.DataColumn("PROJ_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06381 base.Columns.Add(this.columnPROJ_UID);
06382 this.columnPROJ_NAME = new global::System.Data.DataColumn("PROJ_NAME", typeof(string), null, global::System.Data.MappingType.Element);
06383 base.Columns.Add(this.columnPROJ_NAME);
06384 this.columnTASK_UID = new global::System.Data.DataColumn("TASK_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06385 base.Columns.Add(this.columnTASK_UID);
06386 this.columnASSN_UID = new global::System.Data.DataColumn("ASSN_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06387 base.Columns.Add(this.columnASSN_UID);
06388 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06389 base.Columns.Add(this.columnRES_UID);
06390 this.columnASSN_PARENT_UID = new global::System.Data.DataColumn("ASSN_PARENT_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06391 base.Columns.Add(this.columnASSN_PARENT_UID);
06392 this.columnASSN_ACT_START = new global::System.Data.DataColumn("ASSN_ACT_START", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06393 base.Columns.Add(this.columnASSN_ACT_START);
06394 this.columnASSN_ACT_FINISH = new global::System.Data.DataColumn("ASSN_ACT_FINISH", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06395 base.Columns.Add(this.columnASSN_ACT_FINISH);
06396 this.columnASSN_WORK_CONTOUR = new global::System.Data.DataColumn("ASSN_WORK_CONTOUR", typeof(int), null, global::System.Data.MappingType.Element);
06397 base.Columns.Add(this.columnASSN_WORK_CONTOUR);
06398 this.columnASSN_DELAY = new global::System.Data.DataColumn("ASSN_DELAY", typeof(int), null, global::System.Data.MappingType.Element);
06399 base.Columns.Add(this.columnASSN_DELAY);
06400 this.columnASSN_LEVELING_DELAY = new global::System.Data.DataColumn("ASSN_LEVELING_DELAY", typeof(int), null, global::System.Data.MappingType.Element);
06401 base.Columns.Add(this.columnASSN_LEVELING_DELAY);
06402 this.columnASSN_COST_RATE_TABLE = new global::System.Data.DataColumn("ASSN_COST_RATE_TABLE", typeof(int), null, global::System.Data.MappingType.Element);
06403 base.Columns.Add(this.columnASSN_COST_RATE_TABLE);
06404 this.columnASSN_UNITS = new global::System.Data.DataColumn("ASSN_UNITS", typeof(double), null, global::System.Data.MappingType.Element);
06405 base.Columns.Add(this.columnASSN_UNITS);
06406 this.columnASSN_WORK = new global::System.Data.DataColumn("ASSN_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06407 base.Columns.Add(this.columnASSN_WORK);
06408 this.columnASSN_ACT_WORK = new global::System.Data.DataColumn("ASSN_ACT_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06409 base.Columns.Add(this.columnASSN_ACT_WORK);
06410 this.columnASSN_BASE_WORK = new global::System.Data.DataColumn("ASSN_BASE_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06411 base.Columns.Add(this.columnASSN_BASE_WORK);
06412 this.columnASSN_REG_WORK = new global::System.Data.DataColumn("ASSN_REG_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06413 base.Columns.Add(this.columnASSN_REG_WORK);
06414 this.columnASSN_OVT_WORK = new global::System.Data.DataColumn("ASSN_OVT_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06415 base.Columns.Add(this.columnASSN_OVT_WORK);
06416 this.columnASSN_REM_WORK = new global::System.Data.DataColumn("ASSN_REM_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06417 base.Columns.Add(this.columnASSN_REM_WORK);
06418 this.columnASSN_ACT_OVT_WORK = new global::System.Data.DataColumn("ASSN_ACT_OVT_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06419 base.Columns.Add(this.columnASSN_ACT_OVT_WORK);
06420 this.columnASSN_REM_OVT_WORK = new global::System.Data.DataColumn("ASSN_REM_OVT_WORK", typeof(double), null, global::System.Data.MappingType.Element);
06421 base.Columns.Add(this.columnASSN_REM_OVT_WORK);
06422 this.columnASSN_START_DATE = new global::System.Data.DataColumn("ASSN_START_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06423 base.Columns.Add(this.columnASSN_START_DATE);
06424 this.columnASSN_FINISH_DATE = new global::System.Data.DataColumn("ASSN_FINISH_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06425 base.Columns.Add(this.columnASSN_FINISH_DATE);
06426 this.columnASSN_BASE_START = new global::System.Data.DataColumn("ASSN_BASE_START", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06427 base.Columns.Add(this.columnASSN_BASE_START);
06428 this.columnASSN_BASE_FINISH = new global::System.Data.DataColumn("ASSN_BASE_FINISH", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06429 base.Columns.Add(this.columnASSN_BASE_FINISH);
06430 this.columnASSN_RESUME_DATE = new global::System.Data.DataColumn("ASSN_RESUME_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06431 base.Columns.Add(this.columnASSN_RESUME_DATE);
06432 this.columnASSN_STOP_DATE = new global::System.Data.DataColumn("ASSN_STOP_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06433 base.Columns.Add(this.columnASSN_STOP_DATE);
06434 this.columnASSN_BASE_COST_PER_USE = new global::System.Data.DataColumn("ASSN_BASE_COST_PER_USE", typeof(double), null, global::System.Data.MappingType.Element);
06435 base.Columns.Add(this.columnASSN_BASE_COST_PER_USE);
06436 this.columnASSN_ENTSUMPROJID = new global::System.Data.DataColumn("ASSN_ENTSUMPROJID", typeof(int), null, global::System.Data.MappingType.Element);
06437 base.Columns.Add(this.columnASSN_ENTSUMPROJID);
06438 this.columnASSN_COST = new global::System.Data.DataColumn("ASSN_COST", typeof(double), null, global::System.Data.MappingType.Element);
06439 base.Columns.Add(this.columnASSN_COST);
06440 this.columnASSN_ACT_COST = new global::System.Data.DataColumn("ASSN_ACT_COST", typeof(double), null, global::System.Data.MappingType.Element);
06441 base.Columns.Add(this.columnASSN_ACT_COST);
06442 this.columnASSN_ACT_OVT_COST = new global::System.Data.DataColumn("ASSN_ACT_OVT_COST", typeof(double), null, global::System.Data.MappingType.Element);
06443 base.Columns.Add(this.columnASSN_ACT_OVT_COST);
06444 this.columnASSN_BASE_COST = new global::System.Data.DataColumn("ASSN_BASE_COST", typeof(double), null, global::System.Data.MappingType.Element);
06445 base.Columns.Add(this.columnASSN_BASE_COST);
06446 this.columnASSN_REM_COST = new global::System.Data.DataColumn("ASSN_REM_COST", typeof(double), null, global::System.Data.MappingType.Element);
06447 base.Columns.Add(this.columnASSN_REM_COST);
06448 this.columnASSN_REM_OVT_COST = new global::System.Data.DataColumn("ASSN_REM_OVT_COST", typeof(double), null, global::System.Data.MappingType.Element);
06449 base.Columns.Add(this.columnASSN_REM_OVT_COST);
06450 this.columnASSN_OVT_COST = new global::System.Data.DataColumn("ASSN_OVT_COST", typeof(double), null, global::System.Data.MappingType.Element);
06451 base.Columns.Add(this.columnASSN_OVT_COST);
06452 this.columnTASK_NAME = new global::System.Data.DataColumn("TASK_NAME", typeof(string), null, global::System.Data.MappingType.Element);
06453 base.Columns.Add(this.columnTASK_NAME);
06454 this.columnRES_NAME = new global::System.Data.DataColumn("RES_NAME", typeof(string), null, global::System.Data.MappingType.Element);
06455 base.Columns.Add(this.columnRES_NAME);
06456 this.columnASSN_PCT_WORK_COMPLETE = new global::System.Data.DataColumn("ASSN_PCT_WORK_COMPLETE", typeof(int), null, global::System.Data.MappingType.Element);
06457 base.Columns.Add(this.columnASSN_PCT_WORK_COMPLETE);
06458 this.columnASSN_ACWP = new global::System.Data.DataColumn("ASSN_ACWP", typeof(double), null, global::System.Data.MappingType.Element);
06459 base.Columns.Add(this.columnASSN_ACWP);
06460 this.columnASSN_BCWP = new global::System.Data.DataColumn("ASSN_BCWP", typeof(double), null, global::System.Data.MappingType.Element);
06461 base.Columns.Add(this.columnASSN_BCWP);
06462 this.columnASSN_BCWS = new global::System.Data.DataColumn("ASSN_BCWS", typeof(double), null, global::System.Data.MappingType.Element);
06463 base.Columns.Add(this.columnASSN_BCWS);
06464 this.columnASSN_BOOKING_TYPE = new global::System.Data.DataColumn("ASSN_BOOKING_TYPE", typeof(short), null, global::System.Data.MappingType.Element);
06465 base.Columns.Add(this.columnASSN_BOOKING_TYPE);
06466 this.columnASSN_DEMAND_REQ = new global::System.Data.DataColumn("ASSN_DEMAND_REQ", typeof(byte), null, global::System.Data.MappingType.Element);
06467 base.Columns.Add(this.columnASSN_DEMAND_REQ);
06468 this.columnASSN_MATERIAL_RATE_FMT = new global::System.Data.DataColumn("ASSN_MATERIAL_RATE_FMT", typeof(short), null, global::System.Data.MappingType.Element);
06469 base.Columns.Add(this.columnASSN_MATERIAL_RATE_FMT);
06470 this.columnASSN_DELAY_FMT = new global::System.Data.DataColumn("ASSN_DELAY_FMT", typeof(short), null, global::System.Data.MappingType.Element);
06471 base.Columns.Add(this.columnASSN_DELAY_FMT);
06472 this.columnASSN_START_VAR = new global::System.Data.DataColumn("ASSN_START_VAR", typeof(int), null, global::System.Data.MappingType.Element);
06473 base.Columns.Add(this.columnASSN_START_VAR);
06474 this.columnASSN_FINISH_VAR = new global::System.Data.DataColumn("ASSN_FINISH_VAR", typeof(int), null, global::System.Data.MappingType.Element);
06475 base.Columns.Add(this.columnASSN_FINISH_VAR);
06476 this.columnASSN_HAS_LINKED_FIELDS = new global::System.Data.DataColumn("ASSN_HAS_LINKED_FIELDS", typeof(bool), null, global::System.Data.MappingType.Element);
06477 base.Columns.Add(this.columnASSN_HAS_LINKED_FIELDS);
06478 this.columnASSN_IS_CONFIRMED = new global::System.Data.DataColumn("ASSN_IS_CONFIRMED", typeof(bool), null, global::System.Data.MappingType.Element);
06479 base.Columns.Add(this.columnASSN_IS_CONFIRMED);
06480 this.columnASSN_IS_OVERALLOCATED = new global::System.Data.DataColumn("ASSN_IS_OVERALLOCATED", typeof(bool), null, global::System.Data.MappingType.Element);
06481 base.Columns.Add(this.columnASSN_IS_OVERALLOCATED);
06482 this.columnASSN_RES_TYPE = new global::System.Data.DataColumn("ASSN_RES_TYPE", typeof(bool), null, global::System.Data.MappingType.Element);
06483 base.Columns.Add(this.columnASSN_RES_TYPE);
06484 this.columnASSN_RESPONSE_PENDING = new global::System.Data.DataColumn("ASSN_RESPONSE_PENDING", typeof(bool), null, global::System.Data.MappingType.Element);
06485 base.Columns.Add(this.columnASSN_RESPONSE_PENDING);
06486 this.columnWASSN_SEND_UPDATE_DATE = new global::System.Data.DataColumn("WASSN_SEND_UPDATE_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06487 base.Columns.Add(this.columnWASSN_SEND_UPDATE_DATE);
06488 this.columnWASSN_NOTE_STATUS = new global::System.Data.DataColumn("WASSN_NOTE_STATUS", typeof(int), null, global::System.Data.MappingType.Element);
06489 base.Columns.Add(this.columnWASSN_NOTE_STATUS);
06490 this.columnASSN_UPDATE_NEEDED = new global::System.Data.DataColumn("ASSN_UPDATE_NEEDED", typeof(bool), null, global::System.Data.MappingType.Element);
06491 base.Columns.Add(this.columnASSN_UPDATE_NEEDED);
06492 this.columnCREATED_DATE = new global::System.Data.DataColumn("CREATED_DATE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06493 base.Columns.Add(this.columnCREATED_DATE);
06494 this.columnWASSN_COMMENTS = new global::System.Data.DataColumn("WASSN_COMMENTS", typeof(string), null, global::System.Data.MappingType.Element);
06495 base.Columns.Add(this.columnWASSN_COMMENTS);
06496 this.Constraints.Add(new global::System.Data.UniqueConstraint("ResourceAssignmentKey", new global::System.Data.DataColumn[] {
06497 this.columnASSN_UID,
06498 this.columnPROJ_UID,
06499 this.columnRES_UID}, true));
06500 this.columnPROJ_UID.AllowDBNull = false;
06501 this.columnTASK_UID.AllowDBNull = false;
06502 this.columnASSN_UID.AllowDBNull = false;
06503 this.columnRES_UID.AllowDBNull = false;
06504 this.columnASSN_PARENT_UID.ReadOnly = true;
06505 this.columnASSN_RESUME_DATE.ReadOnly = true;
06506 this.columnASSN_STOP_DATE.ReadOnly = true;
06507 this.columnASSN_BASE_COST_PER_USE.ReadOnly = true;
06508 this.columnASSN_ENTSUMPROJID.ReadOnly = true;
06509 this.columnASSN_OVT_COST.ReadOnly = true;
06510 this.columnASSN_ACWP.ReadOnly = true;
06511 this.columnASSN_BCWP.ReadOnly = true;
06512 this.columnASSN_BCWS.ReadOnly = true;
06513 this.columnASSN_DELAY_FMT.ReadOnly = true;
06514 this.columnASSN_IS_CONFIRMED.ReadOnly = true;
06515 this.columnASSN_UPDATE_NEEDED.ReadOnly = true;
06516 this.columnCREATED_DATE.ReadOnly = true;
06517 }
06518
06519 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06520 public ResourceAssignmentRow NewResourceAssignmentRow() {
06521 return ((ResourceAssignmentRow)(this.NewRow()));
06522 }
06523
06524 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06525 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
06526 return new ResourceAssignmentRow(builder);
06527 }
06528
06529 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06530 protected override global::System.Type GetRowType() {
06531 return typeof(ResourceAssignmentRow);
06532 }
06533
06534 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06535 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
06536 base.OnRowChanged(e);
06537 if ((this.ResourceAssignmentRowChanged != null)) {
06538 this.ResourceAssignmentRowChanged(this, new ResourceAssignmentRowChangeEvent(((ResourceAssignmentRow)(e.Row)), e.Action));
06539 }
06540 }
06541
06542 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06543 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
06544 base.OnRowChanging(e);
06545 if ((this.ResourceAssignmentRowChanging != null)) {
06546 this.ResourceAssignmentRowChanging(this, new ResourceAssignmentRowChangeEvent(((ResourceAssignmentRow)(e.Row)), e.Action));
06547 }
06548 }
06549
06550 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06551 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
06552 base.OnRowDeleted(e);
06553 if ((this.ResourceAssignmentRowDeleted != null)) {
06554 this.ResourceAssignmentRowDeleted(this, new ResourceAssignmentRowChangeEvent(((ResourceAssignmentRow)(e.Row)), e.Action));
06555 }
06556 }
06557
06558 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06559 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
06560 base.OnRowDeleting(e);
06561 if ((this.ResourceAssignmentRowDeleting != null)) {
06562 this.ResourceAssignmentRowDeleting(this, new ResourceAssignmentRowChangeEvent(((ResourceAssignmentRow)(e.Row)), e.Action));
06563 }
06564 }
06565
06566 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06567 public void RemoveResourceAssignmentRow(ResourceAssignmentRow row) {
06568 this.Rows.Remove(row);
06569 }
06570
06571 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06572 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
06573 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
06574 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
06575 ResourceAssignmentDataSet ds = new ResourceAssignmentDataSet();
06576 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
06577 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
06578 any1.MinOccurs = new decimal(0);
06579 any1.MaxOccurs = decimal.MaxValue;
06580 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
06581 sequence.Items.Add(any1);
06582 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
06583 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
06584 any2.MinOccurs = new decimal(1);
06585 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
06586 sequence.Items.Add(any2);
06587 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
06588 attribute1.Name = "namespace";
06589 attribute1.FixedValue = ds.Namespace;
06590 type.Attributes.Add(attribute1);
06591 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
06592 attribute2.Name = "tableTypeName";
06593 attribute2.FixedValue = "ResourceAssignmentDataTable";
06594 type.Attributes.Add(attribute2);
06595 type.Particle = sequence;
06596 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
06597 if (xs.Contains(dsSchema.TargetNamespace)) {
06598 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
06599 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
06600 try {
06601 global::System.Xml.Schema.XmlSchema schema = null;
06602 dsSchema.Write(s1);
06603 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
06604 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
06605 s2.SetLength(0);
06606 schema.Write(s2);
06607 if ((s1.Length == s2.Length)) {
06608 s1.Position = 0;
06609 s2.Position = 0;
06610 for (; ((s1.Position != s1.Length)
06611 && (s1.ReadByte() == s2.ReadByte())); ) {
06612 ;
06613 }
06614 if ((s1.Position == s1.Length)) {
06615 return type;
06616 }
06617 }
06618 }
06619 }
06620 finally {
06621 if ((s1 != null)) {
06622 s1.Close();
06623 }
06624 if ((s2 != null)) {
06625 s2.Close();
06626 }
06627 }
06628 }
06629 xs.Add(dsSchema);
06630 return type;
06631 }
06632 }
06633
06634
06635
06636
06637 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
06638 [global::System.Serializable()]
06639 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
06640 public partial class ResourceAssignmentCustomFieldsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
06641
06642 private global::System.Data.DataColumn columnCUSTOM_FIELD_UID;
06643
06644 private global::System.Data.DataColumn columnPROJ_UID;
06645
06646 private global::System.Data.DataColumn columnASSN_UID;
06647
06648 private global::System.Data.DataColumn columnMD_PROP_UID;
06649
06650 private global::System.Data.DataColumn columnMD_PROP_ID;
06651
06652 private global::System.Data.DataColumn columnFIELD_TYPE_ENUM;
06653
06654 private global::System.Data.DataColumn columnFLAG_VALUE;
06655
06656 private global::System.Data.DataColumn columnTEXT_VALUE;
06657
06658 private global::System.Data.DataColumn columnDATE_VALUE;
06659
06660 private global::System.Data.DataColumn columnCODE_VALUE;
06661
06662 private global::System.Data.DataColumn columnDUR_VALUE;
06663
06664 private global::System.Data.DataColumn columnNUM_VALUE;
06665
06666 private global::System.Data.DataColumn columnDUR_FMT;
06667
06668 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06669 public ResourceAssignmentCustomFieldsDataTable() {
06670 this.TableName = "ResourceAssignmentCustomFields";
06671 this.BeginInit();
06672 this.InitClass();
06673 this.EndInit();
06674 }
06675
06676 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06677 internal ResourceAssignmentCustomFieldsDataTable(global::System.Data.DataTable table) {
06678 this.TableName = table.TableName;
06679 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
06680 this.CaseSensitive = table.CaseSensitive;
06681 }
06682 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
06683 this.Locale = table.Locale;
06684 }
06685 if ((table.Namespace != table.DataSet.Namespace)) {
06686 this.Namespace = table.Namespace;
06687 }
06688 this.Prefix = table.Prefix;
06689 this.MinimumCapacity = table.MinimumCapacity;
06690 }
06691
06692 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06693 protected ResourceAssignmentCustomFieldsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
06694 base(info, context) {
06695 this.InitVars();
06696 }
06697
06698 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06699 public global::System.Data.DataColumn CUSTOM_FIELD_UIDColumn {
06700 get {
06701 return this.columnCUSTOM_FIELD_UID;
06702 }
06703 }
06704
06705 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06706 public global::System.Data.DataColumn PROJ_UIDColumn {
06707 get {
06708 return this.columnPROJ_UID;
06709 }
06710 }
06711
06712 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06713 public global::System.Data.DataColumn ASSN_UIDColumn {
06714 get {
06715 return this.columnASSN_UID;
06716 }
06717 }
06718
06719 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06720 public global::System.Data.DataColumn MD_PROP_UIDColumn {
06721 get {
06722 return this.columnMD_PROP_UID;
06723 }
06724 }
06725
06726 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06727 public global::System.Data.DataColumn MD_PROP_IDColumn {
06728 get {
06729 return this.columnMD_PROP_ID;
06730 }
06731 }
06732
06733 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06734 public global::System.Data.DataColumn FIELD_TYPE_ENUMColumn {
06735 get {
06736 return this.columnFIELD_TYPE_ENUM;
06737 }
06738 }
06739
06740 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06741 public global::System.Data.DataColumn FLAG_VALUEColumn {
06742 get {
06743 return this.columnFLAG_VALUE;
06744 }
06745 }
06746
06747 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06748 public global::System.Data.DataColumn TEXT_VALUEColumn {
06749 get {
06750 return this.columnTEXT_VALUE;
06751 }
06752 }
06753
06754 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06755 public global::System.Data.DataColumn DATE_VALUEColumn {
06756 get {
06757 return this.columnDATE_VALUE;
06758 }
06759 }
06760
06761 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06762 public global::System.Data.DataColumn CODE_VALUEColumn {
06763 get {
06764 return this.columnCODE_VALUE;
06765 }
06766 }
06767
06768 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06769 public global::System.Data.DataColumn DUR_VALUEColumn {
06770 get {
06771 return this.columnDUR_VALUE;
06772 }
06773 }
06774
06775 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06776 public global::System.Data.DataColumn NUM_VALUEColumn {
06777 get {
06778 return this.columnNUM_VALUE;
06779 }
06780 }
06781
06782 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06783 public global::System.Data.DataColumn DUR_FMTColumn {
06784 get {
06785 return this.columnDUR_FMT;
06786 }
06787 }
06788
06789 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06790 [global::System.ComponentModel.Browsable(false)]
06791 public int Count {
06792 get {
06793 return this.Rows.Count;
06794 }
06795 }
06796
06797 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06798 public ResourceAssignmentCustomFieldsRow this[int index] {
06799 get {
06800 return ((ResourceAssignmentCustomFieldsRow)(this.Rows[index]));
06801 }
06802 }
06803
06804 public event ResourceAssignmentCustomFieldsRowChangeEventHandler ResourceAssignmentCustomFieldsRowChanging;
06805
06806 public event ResourceAssignmentCustomFieldsRowChangeEventHandler ResourceAssignmentCustomFieldsRowChanged;
06807
06808 public event ResourceAssignmentCustomFieldsRowChangeEventHandler ResourceAssignmentCustomFieldsRowDeleting;
06809
06810 public event ResourceAssignmentCustomFieldsRowChangeEventHandler ResourceAssignmentCustomFieldsRowDeleted;
06811
06812 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06813 public void AddResourceAssignmentCustomFieldsRow(ResourceAssignmentCustomFieldsRow row) {
06814 this.Rows.Add(row);
06815 }
06816
06817 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06818 public ResourceAssignmentCustomFieldsRow AddResourceAssignmentCustomFieldsRow(System.Guid CUSTOM_FIELD_UID, System.Guid PROJ_UID, System.Guid ASSN_UID, System.Guid MD_PROP_UID, int MD_PROP_ID, byte FIELD_TYPE_ENUM, bool FLAG_VALUE, string TEXT_VALUE, System.DateTime DATE_VALUE, System.Guid CODE_VALUE, int DUR_VALUE, decimal NUM_VALUE, byte DUR_FMT) {
06819 ResourceAssignmentCustomFieldsRow rowResourceAssignmentCustomFieldsRow = ((ResourceAssignmentCustomFieldsRow)(this.NewRow()));
06820 object[] columnValuesArray = new object[] {
06821 CUSTOM_FIELD_UID,
06822 PROJ_UID,
06823 ASSN_UID,
06824 MD_PROP_UID,
06825 MD_PROP_ID,
06826 FIELD_TYPE_ENUM,
06827 FLAG_VALUE,
06828 TEXT_VALUE,
06829 DATE_VALUE,
06830 CODE_VALUE,
06831 DUR_VALUE,
06832 NUM_VALUE,
06833 DUR_FMT};
06834 rowResourceAssignmentCustomFieldsRow.ItemArray = columnValuesArray;
06835 this.Rows.Add(rowResourceAssignmentCustomFieldsRow);
06836 return rowResourceAssignmentCustomFieldsRow;
06837 }
06838
06839 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06840 public ResourceAssignmentCustomFieldsRow FindByCUSTOM_FIELD_UID(System.Guid CUSTOM_FIELD_UID) {
06841 return ((ResourceAssignmentCustomFieldsRow)(this.Rows.Find(new object[] {
06842 CUSTOM_FIELD_UID})));
06843 }
06844
06845 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06846 public virtual global::System.Collections.IEnumerator GetEnumerator() {
06847 return this.Rows.GetEnumerator();
06848 }
06849
06850 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06851 public override global::System.Data.DataTable Clone() {
06852 ResourceAssignmentCustomFieldsDataTable cln = ((ResourceAssignmentCustomFieldsDataTable)(base.Clone()));
06853 cln.InitVars();
06854 return cln;
06855 }
06856
06857 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06858 protected override global::System.Data.DataTable CreateInstance() {
06859 return new ResourceAssignmentCustomFieldsDataTable();
06860 }
06861
06862 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06863 internal void InitVars() {
06864 this.columnCUSTOM_FIELD_UID = base.Columns["CUSTOM_FIELD_UID"];
06865 this.columnPROJ_UID = base.Columns["PROJ_UID"];
06866 this.columnASSN_UID = base.Columns["ASSN_UID"];
06867 this.columnMD_PROP_UID = base.Columns["MD_PROP_UID"];
06868 this.columnMD_PROP_ID = base.Columns["MD_PROP_ID"];
06869 this.columnFIELD_TYPE_ENUM = base.Columns["FIELD_TYPE_ENUM"];
06870 this.columnFLAG_VALUE = base.Columns["FLAG_VALUE"];
06871 this.columnTEXT_VALUE = base.Columns["TEXT_VALUE"];
06872 this.columnDATE_VALUE = base.Columns["DATE_VALUE"];
06873 this.columnCODE_VALUE = base.Columns["CODE_VALUE"];
06874 this.columnDUR_VALUE = base.Columns["DUR_VALUE"];
06875 this.columnNUM_VALUE = base.Columns["NUM_VALUE"];
06876 this.columnDUR_FMT = base.Columns["DUR_FMT"];
06877 }
06878
06879 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06880 private void InitClass() {
06881 this.columnCUSTOM_FIELD_UID = new global::System.Data.DataColumn("CUSTOM_FIELD_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06882 base.Columns.Add(this.columnCUSTOM_FIELD_UID);
06883 this.columnPROJ_UID = new global::System.Data.DataColumn("PROJ_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06884 base.Columns.Add(this.columnPROJ_UID);
06885 this.columnASSN_UID = new global::System.Data.DataColumn("ASSN_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06886 base.Columns.Add(this.columnASSN_UID);
06887 this.columnMD_PROP_UID = new global::System.Data.DataColumn("MD_PROP_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06888 base.Columns.Add(this.columnMD_PROP_UID);
06889 this.columnMD_PROP_ID = new global::System.Data.DataColumn("MD_PROP_ID", typeof(int), null, global::System.Data.MappingType.Element);
06890 base.Columns.Add(this.columnMD_PROP_ID);
06891 this.columnFIELD_TYPE_ENUM = new global::System.Data.DataColumn("FIELD_TYPE_ENUM", typeof(byte), null, global::System.Data.MappingType.Element);
06892 base.Columns.Add(this.columnFIELD_TYPE_ENUM);
06893 this.columnFLAG_VALUE = new global::System.Data.DataColumn("FLAG_VALUE", typeof(bool), null, global::System.Data.MappingType.Element);
06894 base.Columns.Add(this.columnFLAG_VALUE);
06895 this.columnTEXT_VALUE = new global::System.Data.DataColumn("TEXT_VALUE", typeof(string), null, global::System.Data.MappingType.Element);
06896 base.Columns.Add(this.columnTEXT_VALUE);
06897 this.columnDATE_VALUE = new global::System.Data.DataColumn("DATE_VALUE", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
06898 base.Columns.Add(this.columnDATE_VALUE);
06899 this.columnCODE_VALUE = new global::System.Data.DataColumn("CODE_VALUE", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
06900 base.Columns.Add(this.columnCODE_VALUE);
06901 this.columnDUR_VALUE = new global::System.Data.DataColumn("DUR_VALUE", typeof(int), null, global::System.Data.MappingType.Element);
06902 base.Columns.Add(this.columnDUR_VALUE);
06903 this.columnNUM_VALUE = new global::System.Data.DataColumn("NUM_VALUE", typeof(decimal), null, global::System.Data.MappingType.Element);
06904 base.Columns.Add(this.columnNUM_VALUE);
06905 this.columnDUR_FMT = new global::System.Data.DataColumn("DUR_FMT", typeof(byte), null, global::System.Data.MappingType.Element);
06906 base.Columns.Add(this.columnDUR_FMT);
06907 this.Constraints.Add(new global::System.Data.UniqueConstraint("ResourceAssignmentCustomFieldsKey", new global::System.Data.DataColumn[] {
06908 this.columnCUSTOM_FIELD_UID}, true));
06909 this.columnCUSTOM_FIELD_UID.AllowDBNull = false;
06910 this.columnCUSTOM_FIELD_UID.Unique = true;
06911 this.columnPROJ_UID.AllowDBNull = false;
06912 this.columnASSN_UID.AllowDBNull = false;
06913 }
06914
06915 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06916 public ResourceAssignmentCustomFieldsRow NewResourceAssignmentCustomFieldsRow() {
06917 return ((ResourceAssignmentCustomFieldsRow)(this.NewRow()));
06918 }
06919
06920 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06921 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
06922 return new ResourceAssignmentCustomFieldsRow(builder);
06923 }
06924
06925 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06926 protected override global::System.Type GetRowType() {
06927 return typeof(ResourceAssignmentCustomFieldsRow);
06928 }
06929
06930 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06931 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
06932 base.OnRowChanged(e);
06933 if ((this.ResourceAssignmentCustomFieldsRowChanged != null)) {
06934 this.ResourceAssignmentCustomFieldsRowChanged(this, new ResourceAssignmentCustomFieldsRowChangeEvent(((ResourceAssignmentCustomFieldsRow)(e.Row)), e.Action));
06935 }
06936 }
06937
06938 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06939 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
06940 base.OnRowChanging(e);
06941 if ((this.ResourceAssignmentCustomFieldsRowChanging != null)) {
06942 this.ResourceAssignmentCustomFieldsRowChanging(this, new ResourceAssignmentCustomFieldsRowChangeEvent(((ResourceAssignmentCustomFieldsRow)(e.Row)), e.Action));
06943 }
06944 }
06945
06946 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06947 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
06948 base.OnRowDeleted(e);
06949 if ((this.ResourceAssignmentCustomFieldsRowDeleted != null)) {
06950 this.ResourceAssignmentCustomFieldsRowDeleted(this, new ResourceAssignmentCustomFieldsRowChangeEvent(((ResourceAssignmentCustomFieldsRow)(e.Row)), e.Action));
06951 }
06952 }
06953
06954 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06955 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
06956 base.OnRowDeleting(e);
06957 if ((this.ResourceAssignmentCustomFieldsRowDeleting != null)) {
06958 this.ResourceAssignmentCustomFieldsRowDeleting(this, new ResourceAssignmentCustomFieldsRowChangeEvent(((ResourceAssignmentCustomFieldsRow)(e.Row)), e.Action));
06959 }
06960 }
06961
06962 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06963 public void RemoveResourceAssignmentCustomFieldsRow(ResourceAssignmentCustomFieldsRow row) {
06964 this.Rows.Remove(row);
06965 }
06966
06967 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
06968 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
06969 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
06970 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
06971 ResourceAssignmentDataSet ds = new ResourceAssignmentDataSet();
06972 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
06973 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
06974 any1.MinOccurs = new decimal(0);
06975 any1.MaxOccurs = decimal.MaxValue;
06976 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
06977 sequence.Items.Add(any1);
06978 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
06979 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
06980 any2.MinOccurs = new decimal(1);
06981 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
06982 sequence.Items.Add(any2);
06983 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
06984 attribute1.Name = "namespace";
06985 attribute1.FixedValue = ds.Namespace;
06986 type.Attributes.Add(attribute1);
06987 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
06988 attribute2.Name = "tableTypeName";
06989 attribute2.FixedValue = "ResourceAssignmentCustomFieldsDataTable";
06990 type.Attributes.Add(attribute2);
06991 type.Particle = sequence;
06992 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
06993 if (xs.Contains(dsSchema.TargetNamespace)) {
06994 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
06995 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
06996 try {
06997 global::System.Xml.Schema.XmlSchema schema = null;
06998 dsSchema.Write(s1);
06999 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
07000 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
07001 s2.SetLength(0);
07002 schema.Write(s2);
07003 if ((s1.Length == s2.Length)) {
07004 s1.Position = 0;
07005 s2.Position = 0;
07006 for (; ((s1.Position != s1.Length)
07007 && (s1.ReadByte() == s2.ReadByte())); ) {
07008 ;
07009 }
07010 if ((s1.Position == s1.Length)) {
07011 return type;
07012 }
07013 }
07014 }
07015 }
07016 finally {
07017 if ((s1 != null)) {
07018 s1.Close();
07019 }
07020 if ((s2 != null)) {
07021 s2.Close();
07022 }
07023 }
07024 }
07025 xs.Add(dsSchema);
07026 return type;
07027 }
07028 }
07029
07030
07031
07032
07033 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
07034 public partial class ResourceAssignmentRow : global::System.Data.DataRow {
07035
07036 private ResourceAssignmentDataTable tableResourceAssignment;
07037
07038 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07039 internal ResourceAssignmentRow(global::System.Data.DataRowBuilder rb) :
07040 base(rb) {
07041 this.tableResourceAssignment = ((ResourceAssignmentDataTable)(this.Table));
07042 }
07043
07044 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07045 public System.Guid PROJ_UID {
07046 get {
07047 return ((global::System.Guid)(this[this.tableResourceAssignment.PROJ_UIDColumn]));
07048 }
07049 set {
07050 this[this.tableResourceAssignment.PROJ_UIDColumn] = value;
07051 }
07052 }
07053
07054 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07055 public string PROJ_NAME {
07056 get {
07057 try {
07058 return ((string)(this[this.tableResourceAssignment.PROJ_NAMEColumn]));
07059 }
07060 catch (global::System.InvalidCastException e) {
07061 throw new global::System.Data.StrongTypingException("The value for column \'PROJ_NAME\' in table \'ResourceAssignment\' is DBNull.", e);
07062 }
07063 }
07064 set {
07065 this[this.tableResourceAssignment.PROJ_NAMEColumn] = value;
07066 }
07067 }
07068
07069 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07070 public System.Guid TASK_UID {
07071 get {
07072 return ((global::System.Guid)(this[this.tableResourceAssignment.TASK_UIDColumn]));
07073 }
07074 set {
07075 this[this.tableResourceAssignment.TASK_UIDColumn] = value;
07076 }
07077 }
07078
07079 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07080 public System.Guid ASSN_UID {
07081 get {
07082 return ((global::System.Guid)(this[this.tableResourceAssignment.ASSN_UIDColumn]));
07083 }
07084 set {
07085 this[this.tableResourceAssignment.ASSN_UIDColumn] = value;
07086 }
07087 }
07088
07089 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07090 public System.Guid RES_UID {
07091 get {
07092 return ((global::System.Guid)(this[this.tableResourceAssignment.RES_UIDColumn]));
07093 }
07094 set {
07095 this[this.tableResourceAssignment.RES_UIDColumn] = value;
07096 }
07097 }
07098
07099 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07100 public System.Guid ASSN_PARENT_UID {
07101 get {
07102 try {
07103 return ((global::System.Guid)(this[this.tableResourceAssignment.ASSN_PARENT_UIDColumn]));
07104 }
07105 catch (global::System.InvalidCastException e) {
07106 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_PARENT_UID\' in table \'ResourceAssignment\' is DBNull.", e);
07107 }
07108 }
07109 set {
07110 this[this.tableResourceAssignment.ASSN_PARENT_UIDColumn] = value;
07111 }
07112 }
07113
07114 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07115 public System.DateTime ASSN_ACT_START {
07116 get {
07117 try {
07118 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_ACT_STARTColumn]));
07119 }
07120 catch (global::System.InvalidCastException e) {
07121 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACT_START\' in table \'ResourceAssignment\' is DBNull.", e);
07122 }
07123 }
07124 set {
07125 this[this.tableResourceAssignment.ASSN_ACT_STARTColumn] = value;
07126 }
07127 }
07128
07129 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07130 public System.DateTime ASSN_ACT_FINISH {
07131 get {
07132 try {
07133 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_ACT_FINISHColumn]));
07134 }
07135 catch (global::System.InvalidCastException e) {
07136 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACT_FINISH\' in table \'ResourceAssignment\' is DBNull.", e);
07137 }
07138 }
07139 set {
07140 this[this.tableResourceAssignment.ASSN_ACT_FINISHColumn] = value;
07141 }
07142 }
07143
07144 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07145 public int ASSN_WORK_CONTOUR {
07146 get {
07147 try {
07148 return ((int)(this[this.tableResourceAssignment.ASSN_WORK_CONTOURColumn]));
07149 }
07150 catch (global::System.InvalidCastException e) {
07151 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_WORK_CONTOUR\' in table \'ResourceAssignment\' is DBNull." +
07152 "", e);
07153 }
07154 }
07155 set {
07156 this[this.tableResourceAssignment.ASSN_WORK_CONTOURColumn] = value;
07157 }
07158 }
07159
07160 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07161 public int ASSN_DELAY {
07162 get {
07163 try {
07164 return ((int)(this[this.tableResourceAssignment.ASSN_DELAYColumn]));
07165 }
07166 catch (global::System.InvalidCastException e) {
07167 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_DELAY\' in table \'ResourceAssignment\' is DBNull.", e);
07168 }
07169 }
07170 set {
07171 this[this.tableResourceAssignment.ASSN_DELAYColumn] = value;
07172 }
07173 }
07174
07175 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07176 public int ASSN_LEVELING_DELAY {
07177 get {
07178 try {
07179 return ((int)(this[this.tableResourceAssignment.ASSN_LEVELING_DELAYColumn]));
07180 }
07181 catch (global::System.InvalidCastException e) {
07182 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_LEVELING_DELAY\' in table \'ResourceAssignment\' is DBNul" +
07183 "l.", e);
07184 }
07185 }
07186 set {
07187 this[this.tableResourceAssignment.ASSN_LEVELING_DELAYColumn] = value;
07188 }
07189 }
07190
07191 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07192 public int ASSN_COST_RATE_TABLE {
07193 get {
07194 try {
07195 return ((int)(this[this.tableResourceAssignment.ASSN_COST_RATE_TABLEColumn]));
07196 }
07197 catch (global::System.InvalidCastException e) {
07198 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_COST_RATE_TABLE\' in table \'ResourceAssignment\' is DBNu" +
07199 "ll.", e);
07200 }
07201 }
07202 set {
07203 this[this.tableResourceAssignment.ASSN_COST_RATE_TABLEColumn] = value;
07204 }
07205 }
07206
07207 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07208 public double ASSN_UNITS {
07209 get {
07210 try {
07211 return ((double)(this[this.tableResourceAssignment.ASSN_UNITSColumn]));
07212 }
07213 catch (global::System.InvalidCastException e) {
07214 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_UNITS\' in table \'ResourceAssignment\' is DBNull.", e);
07215 }
07216 }
07217 set {
07218 this[this.tableResourceAssignment.ASSN_UNITSColumn] = value;
07219 }
07220 }
07221
07222 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07223 public double ASSN_WORK {
07224 get {
07225 try {
07226 return ((double)(this[this.tableResourceAssignment.ASSN_WORKColumn]));
07227 }
07228 catch (global::System.InvalidCastException e) {
07229 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_WORK\' in table \'ResourceAssignment\' is DBNull.", e);
07230 }
07231 }
07232 set {
07233 this[this.tableResourceAssignment.ASSN_WORKColumn] = value;
07234 }
07235 }
07236
07237 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07238 public double ASSN_ACT_WORK {
07239 get {
07240 try {
07241 return ((double)(this[this.tableResourceAssignment.ASSN_ACT_WORKColumn]));
07242 }
07243 catch (global::System.InvalidCastException e) {
07244 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACT_WORK\' in table \'ResourceAssignment\' is DBNull.", e);
07245 }
07246 }
07247 set {
07248 this[this.tableResourceAssignment.ASSN_ACT_WORKColumn] = value;
07249 }
07250 }
07251
07252 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07253 public double ASSN_BASE_WORK {
07254 get {
07255 try {
07256 return ((double)(this[this.tableResourceAssignment.ASSN_BASE_WORKColumn]));
07257 }
07258 catch (global::System.InvalidCastException e) {
07259 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BASE_WORK\' in table \'ResourceAssignment\' is DBNull.", e);
07260 }
07261 }
07262 set {
07263 this[this.tableResourceAssignment.ASSN_BASE_WORKColumn] = value;
07264 }
07265 }
07266
07267 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07268 public double ASSN_REG_WORK {
07269 get {
07270 try {
07271 return ((double)(this[this.tableResourceAssignment.ASSN_REG_WORKColumn]));
07272 }
07273 catch (global::System.InvalidCastException e) {
07274 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_REG_WORK\' in table \'ResourceAssignment\' is DBNull.", e);
07275 }
07276 }
07277 set {
07278 this[this.tableResourceAssignment.ASSN_REG_WORKColumn] = value;
07279 }
07280 }
07281
07282 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07283 public double ASSN_OVT_WORK {
07284 get {
07285 try {
07286 return ((double)(this[this.tableResourceAssignment.ASSN_OVT_WORKColumn]));
07287 }
07288 catch (global::System.InvalidCastException e) {
07289 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_OVT_WORK\' in table \'ResourceAssignment\' is DBNull.", e);
07290 }
07291 }
07292 set {
07293 this[this.tableResourceAssignment.ASSN_OVT_WORKColumn] = value;
07294 }
07295 }
07296
07297 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07298 public double ASSN_REM_WORK {
07299 get {
07300 try {
07301 return ((double)(this[this.tableResourceAssignment.ASSN_REM_WORKColumn]));
07302 }
07303 catch (global::System.InvalidCastException e) {
07304 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_REM_WORK\' in table \'ResourceAssignment\' is DBNull.", e);
07305 }
07306 }
07307 set {
07308 this[this.tableResourceAssignment.ASSN_REM_WORKColumn] = value;
07309 }
07310 }
07311
07312 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07313 public double ASSN_ACT_OVT_WORK {
07314 get {
07315 try {
07316 return ((double)(this[this.tableResourceAssignment.ASSN_ACT_OVT_WORKColumn]));
07317 }
07318 catch (global::System.InvalidCastException e) {
07319 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACT_OVT_WORK\' in table \'ResourceAssignment\' is DBNull." +
07320 "", e);
07321 }
07322 }
07323 set {
07324 this[this.tableResourceAssignment.ASSN_ACT_OVT_WORKColumn] = value;
07325 }
07326 }
07327
07328 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07329 public double ASSN_REM_OVT_WORK {
07330 get {
07331 try {
07332 return ((double)(this[this.tableResourceAssignment.ASSN_REM_OVT_WORKColumn]));
07333 }
07334 catch (global::System.InvalidCastException e) {
07335 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_REM_OVT_WORK\' in table \'ResourceAssignment\' is DBNull." +
07336 "", e);
07337 }
07338 }
07339 set {
07340 this[this.tableResourceAssignment.ASSN_REM_OVT_WORKColumn] = value;
07341 }
07342 }
07343
07344 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07345 public System.DateTime ASSN_START_DATE {
07346 get {
07347 try {
07348 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_START_DATEColumn]));
07349 }
07350 catch (global::System.InvalidCastException e) {
07351 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_START_DATE\' in table \'ResourceAssignment\' is DBNull.", e);
07352 }
07353 }
07354 set {
07355 this[this.tableResourceAssignment.ASSN_START_DATEColumn] = value;
07356 }
07357 }
07358
07359 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07360 public System.DateTime ASSN_FINISH_DATE {
07361 get {
07362 try {
07363 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_FINISH_DATEColumn]));
07364 }
07365 catch (global::System.InvalidCastException e) {
07366 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_FINISH_DATE\' in table \'ResourceAssignment\' is DBNull.", e);
07367 }
07368 }
07369 set {
07370 this[this.tableResourceAssignment.ASSN_FINISH_DATEColumn] = value;
07371 }
07372 }
07373
07374 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07375 public System.DateTime ASSN_BASE_START {
07376 get {
07377 try {
07378 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_BASE_STARTColumn]));
07379 }
07380 catch (global::System.InvalidCastException e) {
07381 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BASE_START\' in table \'ResourceAssignment\' is DBNull.", e);
07382 }
07383 }
07384 set {
07385 this[this.tableResourceAssignment.ASSN_BASE_STARTColumn] = value;
07386 }
07387 }
07388
07389 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07390 public System.DateTime ASSN_BASE_FINISH {
07391 get {
07392 try {
07393 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_BASE_FINISHColumn]));
07394 }
07395 catch (global::System.InvalidCastException e) {
07396 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BASE_FINISH\' in table \'ResourceAssignment\' is DBNull.", e);
07397 }
07398 }
07399 set {
07400 this[this.tableResourceAssignment.ASSN_BASE_FINISHColumn] = value;
07401 }
07402 }
07403
07404 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07405 public System.DateTime ASSN_RESUME_DATE {
07406 get {
07407 try {
07408 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_RESUME_DATEColumn]));
07409 }
07410 catch (global::System.InvalidCastException e) {
07411 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_RESUME_DATE\' in table \'ResourceAssignment\' is DBNull.", e);
07412 }
07413 }
07414 set {
07415 this[this.tableResourceAssignment.ASSN_RESUME_DATEColumn] = value;
07416 }
07417 }
07418
07419 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07420 public System.DateTime ASSN_STOP_DATE {
07421 get {
07422 try {
07423 return ((global::System.DateTime)(this[this.tableResourceAssignment.ASSN_STOP_DATEColumn]));
07424 }
07425 catch (global::System.InvalidCastException e) {
07426 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_STOP_DATE\' in table \'ResourceAssignment\' is DBNull.", e);
07427 }
07428 }
07429 set {
07430 this[this.tableResourceAssignment.ASSN_STOP_DATEColumn] = value;
07431 }
07432 }
07433
07434 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07435 public double ASSN_BASE_COST_PER_USE {
07436 get {
07437 try {
07438 return ((double)(this[this.tableResourceAssignment.ASSN_BASE_COST_PER_USEColumn]));
07439 }
07440 catch (global::System.InvalidCastException e) {
07441 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BASE_COST_PER_USE\' in table \'ResourceAssignment\' is DB" +
07442 "Null.", e);
07443 }
07444 }
07445 set {
07446 this[this.tableResourceAssignment.ASSN_BASE_COST_PER_USEColumn] = value;
07447 }
07448 }
07449
07450 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07451 public int ASSN_ENTSUMPROJID {
07452 get {
07453 try {
07454 return ((int)(this[this.tableResourceAssignment.ASSN_ENTSUMPROJIDColumn]));
07455 }
07456 catch (global::System.InvalidCastException e) {
07457 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ENTSUMPROJID\' in table \'ResourceAssignment\' is DBNull." +
07458 "", e);
07459 }
07460 }
07461 set {
07462 this[this.tableResourceAssignment.ASSN_ENTSUMPROJIDColumn] = value;
07463 }
07464 }
07465
07466 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07467 public double ASSN_COST {
07468 get {
07469 try {
07470 return ((double)(this[this.tableResourceAssignment.ASSN_COSTColumn]));
07471 }
07472 catch (global::System.InvalidCastException e) {
07473 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_COST\' in table \'ResourceAssignment\' is DBNull.", e);
07474 }
07475 }
07476 set {
07477 this[this.tableResourceAssignment.ASSN_COSTColumn] = value;
07478 }
07479 }
07480
07481 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07482 public double ASSN_ACT_COST {
07483 get {
07484 try {
07485 return ((double)(this[this.tableResourceAssignment.ASSN_ACT_COSTColumn]));
07486 }
07487 catch (global::System.InvalidCastException e) {
07488 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACT_COST\' in table \'ResourceAssignment\' is DBNull.", e);
07489 }
07490 }
07491 set {
07492 this[this.tableResourceAssignment.ASSN_ACT_COSTColumn] = value;
07493 }
07494 }
07495
07496 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07497 public double ASSN_ACT_OVT_COST {
07498 get {
07499 try {
07500 return ((double)(this[this.tableResourceAssignment.ASSN_ACT_OVT_COSTColumn]));
07501 }
07502 catch (global::System.InvalidCastException e) {
07503 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACT_OVT_COST\' in table \'ResourceAssignment\' is DBNull." +
07504 "", e);
07505 }
07506 }
07507 set {
07508 this[this.tableResourceAssignment.ASSN_ACT_OVT_COSTColumn] = value;
07509 }
07510 }
07511
07512 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07513 public double ASSN_BASE_COST {
07514 get {
07515 try {
07516 return ((double)(this[this.tableResourceAssignment.ASSN_BASE_COSTColumn]));
07517 }
07518 catch (global::System.InvalidCastException e) {
07519 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BASE_COST\' in table \'ResourceAssignment\' is DBNull.", e);
07520 }
07521 }
07522 set {
07523 this[this.tableResourceAssignment.ASSN_BASE_COSTColumn] = value;
07524 }
07525 }
07526
07527 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07528 public double ASSN_REM_COST {
07529 get {
07530 try {
07531 return ((double)(this[this.tableResourceAssignment.ASSN_REM_COSTColumn]));
07532 }
07533 catch (global::System.InvalidCastException e) {
07534 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_REM_COST\' in table \'ResourceAssignment\' is DBNull.", e);
07535 }
07536 }
07537 set {
07538 this[this.tableResourceAssignment.ASSN_REM_COSTColumn] = value;
07539 }
07540 }
07541
07542 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07543 public double ASSN_REM_OVT_COST {
07544 get {
07545 try {
07546 return ((double)(this[this.tableResourceAssignment.ASSN_REM_OVT_COSTColumn]));
07547 }
07548 catch (global::System.InvalidCastException e) {
07549 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_REM_OVT_COST\' in table \'ResourceAssignment\' is DBNull." +
07550 "", e);
07551 }
07552 }
07553 set {
07554 this[this.tableResourceAssignment.ASSN_REM_OVT_COSTColumn] = value;
07555 }
07556 }
07557
07558 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07559 public double ASSN_OVT_COST {
07560 get {
07561 try {
07562 return ((double)(this[this.tableResourceAssignment.ASSN_OVT_COSTColumn]));
07563 }
07564 catch (global::System.InvalidCastException e) {
07565 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_OVT_COST\' in table \'ResourceAssignment\' is DBNull.", e);
07566 }
07567 }
07568 set {
07569 this[this.tableResourceAssignment.ASSN_OVT_COSTColumn] = value;
07570 }
07571 }
07572
07573 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07574 public string TASK_NAME {
07575 get {
07576 try {
07577 return ((string)(this[this.tableResourceAssignment.TASK_NAMEColumn]));
07578 }
07579 catch (global::System.InvalidCastException e) {
07580 throw new global::System.Data.StrongTypingException("The value for column \'TASK_NAME\' in table \'ResourceAssignment\' is DBNull.", e);
07581 }
07582 }
07583 set {
07584 this[this.tableResourceAssignment.TASK_NAMEColumn] = value;
07585 }
07586 }
07587
07588 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07589 public string RES_NAME {
07590 get {
07591 try {
07592 return ((string)(this[this.tableResourceAssignment.RES_NAMEColumn]));
07593 }
07594 catch (global::System.InvalidCastException e) {
07595 throw new global::System.Data.StrongTypingException("The value for column \'RES_NAME\' in table \'ResourceAssignment\' is DBNull.", e);
07596 }
07597 }
07598 set {
07599 this[this.tableResourceAssignment.RES_NAMEColumn] = value;
07600 }
07601 }
07602
07603 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07604 public int ASSN_PCT_WORK_COMPLETE {
07605 get {
07606 try {
07607 return ((int)(this[this.tableResourceAssignment.ASSN_PCT_WORK_COMPLETEColumn]));
07608 }
07609 catch (global::System.InvalidCastException e) {
07610 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_PCT_WORK_COMPLETE\' in table \'ResourceAssignment\' is DB" +
07611 "Null.", e);
07612 }
07613 }
07614 set {
07615 this[this.tableResourceAssignment.ASSN_PCT_WORK_COMPLETEColumn] = value;
07616 }
07617 }
07618
07619 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07620 public double ASSN_ACWP {
07621 get {
07622 try {
07623 return ((double)(this[this.tableResourceAssignment.ASSN_ACWPColumn]));
07624 }
07625 catch (global::System.InvalidCastException e) {
07626 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_ACWP\' in table \'ResourceAssignment\' is DBNull.", e);
07627 }
07628 }
07629 set {
07630 this[this.tableResourceAssignment.ASSN_ACWPColumn] = value;
07631 }
07632 }
07633
07634 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07635 public double ASSN_BCWP {
07636 get {
07637 try {
07638 return ((double)(this[this.tableResourceAssignment.ASSN_BCWPColumn]));
07639 }
07640 catch (global::System.InvalidCastException e) {
07641 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BCWP\' in table \'ResourceAssignment\' is DBNull.", e);
07642 }
07643 }
07644 set {
07645 this[this.tableResourceAssignment.ASSN_BCWPColumn] = value;
07646 }
07647 }
07648
07649 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07650 public double ASSN_BCWS {
07651 get {
07652 try {
07653 return ((double)(this[this.tableResourceAssignment.ASSN_BCWSColumn]));
07654 }
07655 catch (global::System.InvalidCastException e) {
07656 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BCWS\' in table \'ResourceAssignment\' is DBNull.", e);
07657 }
07658 }
07659 set {
07660 this[this.tableResourceAssignment.ASSN_BCWSColumn] = value;
07661 }
07662 }
07663
07664 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07665 public short ASSN_BOOKING_TYPE {
07666 get {
07667 try {
07668 return ((short)(this[this.tableResourceAssignment.ASSN_BOOKING_TYPEColumn]));
07669 }
07670 catch (global::System.InvalidCastException e) {
07671 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_BOOKING_TYPE\' in table \'ResourceAssignment\' is DBNull." +
07672 "", e);
07673 }
07674 }
07675 set {
07676 this[this.tableResourceAssignment.ASSN_BOOKING_TYPEColumn] = value;
07677 }
07678 }
07679
07680 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07681 public byte ASSN_DEMAND_REQ {
07682 get {
07683 try {
07684 return ((byte)(this[this.tableResourceAssignment.ASSN_DEMAND_REQColumn]));
07685 }
07686 catch (global::System.InvalidCastException e) {
07687 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_DEMAND_REQ\' in table \'ResourceAssignment\' is DBNull.", e);
07688 }
07689 }
07690 set {
07691 this[this.tableResourceAssignment.ASSN_DEMAND_REQColumn] = value;
07692 }
07693 }
07694
07695 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07696 public short ASSN_MATERIAL_RATE_FMT {
07697 get {
07698 try {
07699 return ((short)(this[this.tableResourceAssignment.ASSN_MATERIAL_RATE_FMTColumn]));
07700 }
07701 catch (global::System.InvalidCastException e) {
07702 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_MATERIAL_RATE_FMT\' in table \'ResourceAssignment\' is DB" +
07703 "Null.", e);
07704 }
07705 }
07706 set {
07707 this[this.tableResourceAssignment.ASSN_MATERIAL_RATE_FMTColumn] = value;
07708 }
07709 }
07710
07711 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07712 public short ASSN_DELAY_FMT {
07713 get {
07714 try {
07715 return ((short)(this[this.tableResourceAssignment.ASSN_DELAY_FMTColumn]));
07716 }
07717 catch (global::System.InvalidCastException e) {
07718 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_DELAY_FMT\' in table \'ResourceAssignment\' is DBNull.", e);
07719 }
07720 }
07721 set {
07722 this[this.tableResourceAssignment.ASSN_DELAY_FMTColumn] = value;
07723 }
07724 }
07725
07726 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07727 public int ASSN_START_VAR {
07728 get {
07729 try {
07730 return ((int)(this[this.tableResourceAssignment.ASSN_START_VARColumn]));
07731 }
07732 catch (global::System.InvalidCastException e) {
07733 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_START_VAR\' in table \'ResourceAssignment\' is DBNull.", e);
07734 }
07735 }
07736 set {
07737 this[this.tableResourceAssignment.ASSN_START_VARColumn] = value;
07738 }
07739 }
07740
07741 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07742 public int ASSN_FINISH_VAR {
07743 get {
07744 try {
07745 return ((int)(this[this.tableResourceAssignment.ASSN_FINISH_VARColumn]));
07746 }
07747 catch (global::System.InvalidCastException e) {
07748 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_FINISH_VAR\' in table \'ResourceAssignment\' is DBNull.", e);
07749 }
07750 }
07751 set {
07752 this[this.tableResourceAssignment.ASSN_FINISH_VARColumn] = value;
07753 }
07754 }
07755
07756 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07757 public bool ASSN_HAS_LINKED_FIELDS {
07758 get {
07759 try {
07760 return ((bool)(this[this.tableResourceAssignment.ASSN_HAS_LINKED_FIELDSColumn]));
07761 }
07762 catch (global::System.InvalidCastException e) {
07763 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_HAS_LINKED_FIELDS\' in table \'ResourceAssignment\' is DB" +
07764 "Null.", e);
07765 }
07766 }
07767 set {
07768 this[this.tableResourceAssignment.ASSN_HAS_LINKED_FIELDSColumn] = value;
07769 }
07770 }
07771
07772 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07773 public bool ASSN_IS_CONFIRMED {
07774 get {
07775 try {
07776 return ((bool)(this[this.tableResourceAssignment.ASSN_IS_CONFIRMEDColumn]));
07777 }
07778 catch (global::System.InvalidCastException e) {
07779 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_IS_CONFIRMED\' in table \'ResourceAssignment\' is DBNull." +
07780 "", e);
07781 }
07782 }
07783 set {
07784 this[this.tableResourceAssignment.ASSN_IS_CONFIRMEDColumn] = value;
07785 }
07786 }
07787
07788 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07789 public bool ASSN_IS_OVERALLOCATED {
07790 get {
07791 try {
07792 return ((bool)(this[this.tableResourceAssignment.ASSN_IS_OVERALLOCATEDColumn]));
07793 }
07794 catch (global::System.InvalidCastException e) {
07795 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_IS_OVERALLOCATED\' in table \'ResourceAssignment\' is DBN" +
07796 "ull.", e);
07797 }
07798 }
07799 set {
07800 this[this.tableResourceAssignment.ASSN_IS_OVERALLOCATEDColumn] = value;
07801 }
07802 }
07803
07804 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07805 public bool ASSN_RES_TYPE {
07806 get {
07807 try {
07808 return ((bool)(this[this.tableResourceAssignment.ASSN_RES_TYPEColumn]));
07809 }
07810 catch (global::System.InvalidCastException e) {
07811 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_RES_TYPE\' in table \'ResourceAssignment\' is DBNull.", e);
07812 }
07813 }
07814 set {
07815 this[this.tableResourceAssignment.ASSN_RES_TYPEColumn] = value;
07816 }
07817 }
07818
07819 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07820 public bool ASSN_RESPONSE_PENDING {
07821 get {
07822 try {
07823 return ((bool)(this[this.tableResourceAssignment.ASSN_RESPONSE_PENDINGColumn]));
07824 }
07825 catch (global::System.InvalidCastException e) {
07826 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_RESPONSE_PENDING\' in table \'ResourceAssignment\' is DBN" +
07827 "ull.", e);
07828 }
07829 }
07830 set {
07831 this[this.tableResourceAssignment.ASSN_RESPONSE_PENDINGColumn] = value;
07832 }
07833 }
07834
07835 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07836 public System.DateTime WASSN_SEND_UPDATE_DATE {
07837 get {
07838 try {
07839 return ((global::System.DateTime)(this[this.tableResourceAssignment.WASSN_SEND_UPDATE_DATEColumn]));
07840 }
07841 catch (global::System.InvalidCastException e) {
07842 throw new global::System.Data.StrongTypingException("The value for column \'WASSN_SEND_UPDATE_DATE\' in table \'ResourceAssignment\' is DB" +
07843 "Null.", e);
07844 }
07845 }
07846 set {
07847 this[this.tableResourceAssignment.WASSN_SEND_UPDATE_DATEColumn] = value;
07848 }
07849 }
07850
07851 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07852 public int WASSN_NOTE_STATUS {
07853 get {
07854 try {
07855 return ((int)(this[this.tableResourceAssignment.WASSN_NOTE_STATUSColumn]));
07856 }
07857 catch (global::System.InvalidCastException e) {
07858 throw new global::System.Data.StrongTypingException("The value for column \'WASSN_NOTE_STATUS\' in table \'ResourceAssignment\' is DBNull." +
07859 "", e);
07860 }
07861 }
07862 set {
07863 this[this.tableResourceAssignment.WASSN_NOTE_STATUSColumn] = value;
07864 }
07865 }
07866
07867 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07868 public bool ASSN_UPDATE_NEEDED {
07869 get {
07870 try {
07871 return ((bool)(this[this.tableResourceAssignment.ASSN_UPDATE_NEEDEDColumn]));
07872 }
07873 catch (global::System.InvalidCastException e) {
07874 throw new global::System.Data.StrongTypingException("The value for column \'ASSN_UPDATE_NEEDED\' in table \'ResourceAssignment\' is DBNull" +
07875 ".", e);
07876 }
07877 }
07878 set {
07879 this[this.tableResourceAssignment.ASSN_UPDATE_NEEDEDColumn] = value;
07880 }
07881 }
07882
07883 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07884 public System.DateTime CREATED_DATE {
07885 get {
07886 try {
07887 return ((global::System.DateTime)(this[this.tableResourceAssignment.CREATED_DATEColumn]));
07888 }
07889 catch (global::System.InvalidCastException e) {
07890 throw new global::System.Data.StrongTypingException("The value for column \'CREATED_DATE\' in table \'ResourceAssignment\' is DBNull.", e);
07891 }
07892 }
07893 set {
07894 this[this.tableResourceAssignment.CREATED_DATEColumn] = value;
07895 }
07896 }
07897
07898 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07899 public string WASSN_COMMENTS {
07900 get {
07901 try {
07902 return ((string)(this[this.tableResourceAssignment.WASSN_COMMENTSColumn]));
07903 }
07904 catch (global::System.InvalidCastException e) {
07905 throw new global::System.Data.StrongTypingException("The value for column \'WASSN_COMMENTS\' in table \'ResourceAssignment\' is DBNull.", e);
07906 }
07907 }
07908 set {
07909 this[this.tableResourceAssignment.WASSN_COMMENTSColumn] = value;
07910 }
07911 }
07912
07913 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07914 public bool IsPROJ_NAMENull() {
07915 return this.IsNull(this.tableResourceAssignment.PROJ_NAMEColumn);
07916 }
07917
07918 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07919 public void SetPROJ_NAMENull() {
07920 this[this.tableResourceAssignment.PROJ_NAMEColumn] = global::System.Convert.DBNull;
07921 }
07922
07923 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07924 public bool IsASSN_PARENT_UIDNull() {
07925 return this.IsNull(this.tableResourceAssignment.ASSN_PARENT_UIDColumn);
07926 }
07927
07928 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07929 public void SetASSN_PARENT_UIDNull() {
07930 this[this.tableResourceAssignment.ASSN_PARENT_UIDColumn] = global::System.Convert.DBNull;
07931 }
07932
07933 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07934 public bool IsASSN_ACT_STARTNull() {
07935 return this.IsNull(this.tableResourceAssignment.ASSN_ACT_STARTColumn);
07936 }
07937
07938 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07939 public void SetASSN_ACT_STARTNull() {
07940 this[this.tableResourceAssignment.ASSN_ACT_STARTColumn] = global::System.Convert.DBNull;
07941 }
07942
07943 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07944 public bool IsASSN_ACT_FINISHNull() {
07945 return this.IsNull(this.tableResourceAssignment.ASSN_ACT_FINISHColumn);
07946 }
07947
07948 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07949 public void SetASSN_ACT_FINISHNull() {
07950 this[this.tableResourceAssignment.ASSN_ACT_FINISHColumn] = global::System.Convert.DBNull;
07951 }
07952
07953 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07954 public bool IsASSN_WORK_CONTOURNull() {
07955 return this.IsNull(this.tableResourceAssignment.ASSN_WORK_CONTOURColumn);
07956 }
07957
07958 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07959 public void SetASSN_WORK_CONTOURNull() {
07960 this[this.tableResourceAssignment.ASSN_WORK_CONTOURColumn] = global::System.Convert.DBNull;
07961 }
07962
07963 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07964 public bool IsASSN_DELAYNull() {
07965 return this.IsNull(this.tableResourceAssignment.ASSN_DELAYColumn);
07966 }
07967
07968 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07969 public void SetASSN_DELAYNull() {
07970 this[this.tableResourceAssignment.ASSN_DELAYColumn] = global::System.Convert.DBNull;
07971 }
07972
07973 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07974 public bool IsASSN_LEVELING_DELAYNull() {
07975 return this.IsNull(this.tableResourceAssignment.ASSN_LEVELING_DELAYColumn);
07976 }
07977
07978 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07979 public void SetASSN_LEVELING_DELAYNull() {
07980 this[this.tableResourceAssignment.ASSN_LEVELING_DELAYColumn] = global::System.Convert.DBNull;
07981 }
07982
07983 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07984 public bool IsASSN_COST_RATE_TABLENull() {
07985 return this.IsNull(this.tableResourceAssignment.ASSN_COST_RATE_TABLEColumn);
07986 }
07987
07988 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07989 public void SetASSN_COST_RATE_TABLENull() {
07990 this[this.tableResourceAssignment.ASSN_COST_RATE_TABLEColumn] = global::System.Convert.DBNull;
07991 }
07992
07993 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07994 public bool IsASSN_UNITSNull() {
07995 return this.IsNull(this.tableResourceAssignment.ASSN_UNITSColumn);
07996 }
07997
07998 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
07999 public void SetASSN_UNITSNull() {
08000 this[this.tableResourceAssignment.ASSN_UNITSColumn] = global::System.Convert.DBNull;
08001 }
08002
08003 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08004 public bool IsASSN_WORKNull() {
08005 return this.IsNull(this.tableResourceAssignment.ASSN_WORKColumn);
08006 }
08007
08008 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08009 public void SetASSN_WORKNull() {
08010 this[this.tableResourceAssignment.ASSN_WORKColumn] = global::System.Convert.DBNull;
08011 }
08012
08013 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08014 public bool IsASSN_ACT_WORKNull() {
08015 return this.IsNull(this.tableResourceAssignment.ASSN_ACT_WORKColumn);
08016 }
08017
08018 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08019 public void SetASSN_ACT_WORKNull() {
08020 this[this.tableResourceAssignment.ASSN_ACT_WORKColumn] = global::System.Convert.DBNull;
08021 }
08022
08023 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08024 public bool IsASSN_BASE_WORKNull() {
08025 return this.IsNull(this.tableResourceAssignment.ASSN_BASE_WORKColumn);
08026 }
08027
08028 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08029 public void SetASSN_BASE_WORKNull() {
08030 this[this.tableResourceAssignment.ASSN_BASE_WORKColumn] = global::System.Convert.DBNull;
08031 }
08032
08033 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08034 public bool IsASSN_REG_WORKNull() {
08035 return this.IsNull(this.tableResourceAssignment.ASSN_REG_WORKColumn);
08036 }
08037
08038 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08039 public void SetASSN_REG_WORKNull() {
08040 this[this.tableResourceAssignment.ASSN_REG_WORKColumn] = global::System.Convert.DBNull;
08041 }
08042
08043 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08044 public bool IsASSN_OVT_WORKNull() {
08045 return this.IsNull(this.tableResourceAssignment.ASSN_OVT_WORKColumn);
08046 }
08047
08048 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08049 public void SetASSN_OVT_WORKNull() {
08050 this[this.tableResourceAssignment.ASSN_OVT_WORKColumn] = global::System.Convert.DBNull;
08051 }
08052
08053 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08054 public bool IsASSN_REM_WORKNull() {
08055 return this.IsNull(this.tableResourceAssignment.ASSN_REM_WORKColumn);
08056 }
08057
08058 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08059 public void SetASSN_REM_WORKNull() {
08060 this[this.tableResourceAssignment.ASSN_REM_WORKColumn] = global::System.Convert.DBNull;
08061 }
08062
08063 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08064 public bool IsASSN_ACT_OVT_WORKNull() {
08065 return this.IsNull(this.tableResourceAssignment.ASSN_ACT_OVT_WORKColumn);
08066 }
08067
08068 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08069 public void SetASSN_ACT_OVT_WORKNull() {
08070 this[this.tableResourceAssignment.ASSN_ACT_OVT_WORKColumn] = global::System.Convert.DBNull;
08071 }
08072
08073 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08074 public bool IsASSN_REM_OVT_WORKNull() {
08075 return this.IsNull(this.tableResourceAssignment.ASSN_REM_OVT_WORKColumn);
08076 }
08077
08078 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08079 public void SetASSN_REM_OVT_WORKNull() {
08080 this[this.tableResourceAssignment.ASSN_REM_OVT_WORKColumn] = global::System.Convert.DBNull;
08081 }
08082
08083 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08084 public bool IsASSN_START_DATENull() {
08085 return this.IsNull(this.tableResourceAssignment.ASSN_START_DATEColumn);
08086 }
08087
08088 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08089 public void SetASSN_START_DATENull() {
08090 this[this.tableResourceAssignment.ASSN_START_DATEColumn] = global::System.Convert.DBNull;
08091 }
08092
08093 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08094 public bool IsASSN_FINISH_DATENull() {
08095 return this.IsNull(this.tableResourceAssignment.ASSN_FINISH_DATEColumn);
08096 }
08097
08098 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08099 public void SetASSN_FINISH_DATENull() {
08100 this[this.tableResourceAssignment.ASSN_FINISH_DATEColumn] = global::System.Convert.DBNull;
08101 }
08102
08103 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08104 public bool IsASSN_BASE_STARTNull() {
08105 return this.IsNull(this.tableResourceAssignment.ASSN_BASE_STARTColumn);
08106 }
08107
08108 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08109 public void SetASSN_BASE_STARTNull() {
08110 this[this.tableResourceAssignment.ASSN_BASE_STARTColumn] = global::System.Convert.DBNull;
08111 }
08112
08113 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08114 public bool IsASSN_BASE_FINISHNull() {
08115 return this.IsNull(this.tableResourceAssignment.ASSN_BASE_FINISHColumn);
08116 }
08117
08118 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08119 public void SetASSN_BASE_FINISHNull() {
08120 this[this.tableResourceAssignment.ASSN_BASE_FINISHColumn] = global::System.Convert.DBNull;
08121 }
08122
08123 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08124 public bool IsASSN_RESUME_DATENull() {
08125 return this.IsNull(this.tableResourceAssignment.ASSN_RESUME_DATEColumn);
08126 }
08127
08128 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08129 public void SetASSN_RESUME_DATENull() {
08130 this[this.tableResourceAssignment.ASSN_RESUME_DATEColumn] = global::System.Convert.DBNull;
08131 }
08132
08133 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08134 public bool IsASSN_STOP_DATENull() {
08135 return this.IsNull(this.tableResourceAssignment.ASSN_STOP_DATEColumn);
08136 }
08137
08138 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08139 public void SetASSN_STOP_DATENull() {
08140 this[this.tableResourceAssignment.ASSN_STOP_DATEColumn] = global::System.Convert.DBNull;
08141 }
08142
08143 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08144 public bool IsASSN_BASE_COST_PER_USENull() {
08145 return this.IsNull(this.tableResourceAssignment.ASSN_BASE_COST_PER_USEColumn);
08146 }
08147
08148 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08149 public void SetASSN_BASE_COST_PER_USENull() {
08150 this[this.tableResourceAssignment.ASSN_BASE_COST_PER_USEColumn] = global::System.Convert.DBNull;
08151 }
08152
08153 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08154 public bool IsASSN_ENTSUMPROJIDNull() {
08155 return this.IsNull(this.tableResourceAssignment.ASSN_ENTSUMPROJIDColumn);
08156 }
08157
08158 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08159 public void SetASSN_ENTSUMPROJIDNull() {
08160 this[this.tableResourceAssignment.ASSN_ENTSUMPROJIDColumn] = global::System.Convert.DBNull;
08161 }
08162
08163 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08164 public bool IsASSN_COSTNull() {
08165 return this.IsNull(this.tableResourceAssignment.ASSN_COSTColumn);
08166 }
08167
08168 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08169 public void SetASSN_COSTNull() {
08170 this[this.tableResourceAssignment.ASSN_COSTColumn] = global::System.Convert.DBNull;
08171 }
08172
08173 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08174 public bool IsASSN_ACT_COSTNull() {
08175 return this.IsNull(this.tableResourceAssignment.ASSN_ACT_COSTColumn);
08176 }
08177
08178 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08179 public void SetASSN_ACT_COSTNull() {
08180 this[this.tableResourceAssignment.ASSN_ACT_COSTColumn] = global::System.Convert.DBNull;
08181 }
08182
08183 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08184 public bool IsASSN_ACT_OVT_COSTNull() {
08185 return this.IsNull(this.tableResourceAssignment.ASSN_ACT_OVT_COSTColumn);
08186 }
08187
08188 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08189 public void SetASSN_ACT_OVT_COSTNull() {
08190 this[this.tableResourceAssignment.ASSN_ACT_OVT_COSTColumn] = global::System.Convert.DBNull;
08191 }
08192
08193 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08194 public bool IsASSN_BASE_COSTNull() {
08195 return this.IsNull(this.tableResourceAssignment.ASSN_BASE_COSTColumn);
08196 }
08197
08198 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08199 public void SetASSN_BASE_COSTNull() {
08200 this[this.tableResourceAssignment.ASSN_BASE_COSTColumn] = global::System.Convert.DBNull;
08201 }
08202
08203 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08204 public bool IsASSN_REM_COSTNull() {
08205 return this.IsNull(this.tableResourceAssignment.ASSN_REM_COSTColumn);
08206 }
08207
08208 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08209 public void SetASSN_REM_COSTNull() {
08210 this[this.tableResourceAssignment.ASSN_REM_COSTColumn] = global::System.Convert.DBNull;
08211 }
08212
08213 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08214 public bool IsASSN_REM_OVT_COSTNull() {
08215 return this.IsNull(this.tableResourceAssignment.ASSN_REM_OVT_COSTColumn);
08216 }
08217
08218 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08219 public void SetASSN_REM_OVT_COSTNull() {
08220 this[this.tableResourceAssignment.ASSN_REM_OVT_COSTColumn] = global::System.Convert.DBNull;
08221 }
08222
08223 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08224 public bool IsASSN_OVT_COSTNull() {
08225 return this.IsNull(this.tableResourceAssignment.ASSN_OVT_COSTColumn);
08226 }
08227
08228 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08229 public void SetASSN_OVT_COSTNull() {
08230 this[this.tableResourceAssignment.ASSN_OVT_COSTColumn] = global::System.Convert.DBNull;
08231 }
08232
08233 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08234 public bool IsTASK_NAMENull() {
08235 return this.IsNull(this.tableResourceAssignment.TASK_NAMEColumn);
08236 }
08237
08238 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08239 public void SetTASK_NAMENull() {
08240 this[this.tableResourceAssignment.TASK_NAMEColumn] = global::System.Convert.DBNull;
08241 }
08242
08243 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08244 public bool IsRES_NAMENull() {
08245 return this.IsNull(this.tableResourceAssignment.RES_NAMEColumn);
08246 }
08247
08248 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08249 public void SetRES_NAMENull() {
08250 this[this.tableResourceAssignment.RES_NAMEColumn] = global::System.Convert.DBNull;
08251 }
08252
08253 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08254 public bool IsASSN_PCT_WORK_COMPLETENull() {
08255 return this.IsNull(this.tableResourceAssignment.ASSN_PCT_WORK_COMPLETEColumn);
08256 }
08257
08258 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08259 public void SetASSN_PCT_WORK_COMPLETENull() {
08260 this[this.tableResourceAssignment.ASSN_PCT_WORK_COMPLETEColumn] = global::System.Convert.DBNull;
08261 }
08262
08263 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08264 public bool IsASSN_ACWPNull() {
08265 return this.IsNull(this.tableResourceAssignment.ASSN_ACWPColumn);
08266 }
08267
08268 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08269 public void SetASSN_ACWPNull() {
08270 this[this.tableResourceAssignment.ASSN_ACWPColumn] = global::System.Convert.DBNull;
08271 }
08272
08273 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08274 public bool IsASSN_BCWPNull() {
08275 return this.IsNull(this.tableResourceAssignment.ASSN_BCWPColumn);
08276 }
08277
08278 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08279 public void SetASSN_BCWPNull() {
08280 this[this.tableResourceAssignment.ASSN_BCWPColumn] = global::System.Convert.DBNull;
08281 }
08282
08283 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08284 public bool IsASSN_BCWSNull() {
08285 return this.IsNull(this.tableResourceAssignment.ASSN_BCWSColumn);
08286 }
08287
08288 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08289 public void SetASSN_BCWSNull() {
08290 this[this.tableResourceAssignment.ASSN_BCWSColumn] = global::System.Convert.DBNull;
08291 }
08292
08293 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08294 public bool IsASSN_BOOKING_TYPENull() {
08295 return this.IsNull(this.tableResourceAssignment.ASSN_BOOKING_TYPEColumn);
08296 }
08297
08298 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08299 public void SetASSN_BOOKING_TYPENull() {
08300 this[this.tableResourceAssignment.ASSN_BOOKING_TYPEColumn] = global::System.Convert.DBNull;
08301 }
08302
08303 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08304 public bool IsASSN_DEMAND_REQNull() {
08305 return this.IsNull(this.tableResourceAssignment.ASSN_DEMAND_REQColumn);
08306 }
08307
08308 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08309 public void SetASSN_DEMAND_REQNull() {
08310 this[this.tableResourceAssignment.ASSN_DEMAND_REQColumn] = global::System.Convert.DBNull;
08311 }
08312
08313 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08314 public bool IsASSN_MATERIAL_RATE_FMTNull() {
08315 return this.IsNull(this.tableResourceAssignment.ASSN_MATERIAL_RATE_FMTColumn);
08316 }
08317
08318 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08319 public void SetASSN_MATERIAL_RATE_FMTNull() {
08320 this[this.tableResourceAssignment.ASSN_MATERIAL_RATE_FMTColumn] = global::System.Convert.DBNull;
08321 }
08322
08323 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08324 public bool IsASSN_DELAY_FMTNull() {
08325 return this.IsNull(this.tableResourceAssignment.ASSN_DELAY_FMTColumn);
08326 }
08327
08328 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08329 public void SetASSN_DELAY_FMTNull() {
08330 this[this.tableResourceAssignment.ASSN_DELAY_FMTColumn] = global::System.Convert.DBNull;
08331 }
08332
08333 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08334 public bool IsASSN_START_VARNull() {
08335 return this.IsNull(this.tableResourceAssignment.ASSN_START_VARColumn);
08336 }
08337
08338 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08339 public void SetASSN_START_VARNull() {
08340 this[this.tableResourceAssignment.ASSN_START_VARColumn] = global::System.Convert.DBNull;
08341 }
08342
08343 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08344 public bool IsASSN_FINISH_VARNull() {
08345 return this.IsNull(this.tableResourceAssignment.ASSN_FINISH_VARColumn);
08346 }
08347
08348 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08349 public void SetASSN_FINISH_VARNull() {
08350 this[this.tableResourceAssignment.ASSN_FINISH_VARColumn] = global::System.Convert.DBNull;
08351 }
08352
08353 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08354 public bool IsASSN_HAS_LINKED_FIELDSNull() {
08355 return this.IsNull(this.tableResourceAssignment.ASSN_HAS_LINKED_FIELDSColumn);
08356 }
08357
08358 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08359 public void SetASSN_HAS_LINKED_FIELDSNull() {
08360 this[this.tableResourceAssignment.ASSN_HAS_LINKED_FIELDSColumn] = global::System.Convert.DBNull;
08361 }
08362
08363 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08364 public bool IsASSN_IS_CONFIRMEDNull() {
08365 return this.IsNull(this.tableResourceAssignment.ASSN_IS_CONFIRMEDColumn);
08366 }
08367
08368 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08369 public void SetASSN_IS_CONFIRMEDNull() {
08370 this[this.tableResourceAssignment.ASSN_IS_CONFIRMEDColumn] = global::System.Convert.DBNull;
08371 }
08372
08373 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08374 public bool IsASSN_IS_OVERALLOCATEDNull() {
08375 return this.IsNull(this.tableResourceAssignment.ASSN_IS_OVERALLOCATEDColumn);
08376 }
08377
08378 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08379 public void SetASSN_IS_OVERALLOCATEDNull() {
08380 this[this.tableResourceAssignment.ASSN_IS_OVERALLOCATEDColumn] = global::System.Convert.DBNull;
08381 }
08382
08383 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08384 public bool IsASSN_RES_TYPENull() {
08385 return this.IsNull(this.tableResourceAssignment.ASSN_RES_TYPEColumn);
08386 }
08387
08388 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08389 public void SetASSN_RES_TYPENull() {
08390 this[this.tableResourceAssignment.ASSN_RES_TYPEColumn] = global::System.Convert.DBNull;
08391 }
08392
08393 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08394 public bool IsASSN_RESPONSE_PENDINGNull() {
08395 return this.IsNull(this.tableResourceAssignment.ASSN_RESPONSE_PENDINGColumn);
08396 }
08397
08398 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08399 public void SetASSN_RESPONSE_PENDINGNull() {
08400 this[this.tableResourceAssignment.ASSN_RESPONSE_PENDINGColumn] = global::System.Convert.DBNull;
08401 }
08402
08403 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08404 public bool IsWASSN_SEND_UPDATE_DATENull() {
08405 return this.IsNull(this.tableResourceAssignment.WASSN_SEND_UPDATE_DATEColumn);
08406 }
08407
08408 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08409 public void SetWASSN_SEND_UPDATE_DATENull() {
08410 this[this.tableResourceAssignment.WASSN_SEND_UPDATE_DATEColumn] = global::System.Convert.DBNull;
08411 }
08412
08413 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08414 public bool IsWASSN_NOTE_STATUSNull() {
08415 return this.IsNull(this.tableResourceAssignment.WASSN_NOTE_STATUSColumn);
08416 }
08417
08418 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08419 public void SetWASSN_NOTE_STATUSNull() {
08420 this[this.tableResourceAssignment.WASSN_NOTE_STATUSColumn] = global::System.Convert.DBNull;
08421 }
08422
08423 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08424 public bool IsASSN_UPDATE_NEEDEDNull() {
08425 return this.IsNull(this.tableResourceAssignment.ASSN_UPDATE_NEEDEDColumn);
08426 }
08427
08428 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08429 public void SetASSN_UPDATE_NEEDEDNull() {
08430 this[this.tableResourceAssignment.ASSN_UPDATE_NEEDEDColumn] = global::System.Convert.DBNull;
08431 }
08432
08433 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08434 public bool IsCREATED_DATENull() {
08435 return this.IsNull(this.tableResourceAssignment.CREATED_DATEColumn);
08436 }
08437
08438 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08439 public void SetCREATED_DATENull() {
08440 this[this.tableResourceAssignment.CREATED_DATEColumn] = global::System.Convert.DBNull;
08441 }
08442
08443 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08444 public bool IsWASSN_COMMENTSNull() {
08445 return this.IsNull(this.tableResourceAssignment.WASSN_COMMENTSColumn);
08446 }
08447
08448 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08449 public void SetWASSN_COMMENTSNull() {
08450 this[this.tableResourceAssignment.WASSN_COMMENTSColumn] = global::System.Convert.DBNull;
08451 }
08452 }
08453
08454
08455
08456
08457 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
08458 public partial class ResourceAssignmentCustomFieldsRow : global::System.Data.DataRow {
08459
08460 private ResourceAssignmentCustomFieldsDataTable tableResourceAssignmentCustomFields;
08461
08462 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08463 internal ResourceAssignmentCustomFieldsRow(global::System.Data.DataRowBuilder rb) :
08464 base(rb) {
08465 this.tableResourceAssignmentCustomFields = ((ResourceAssignmentCustomFieldsDataTable)(this.Table));
08466 }
08467
08468 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08469 public System.Guid CUSTOM_FIELD_UID {
08470 get {
08471 return ((global::System.Guid)(this[this.tableResourceAssignmentCustomFields.CUSTOM_FIELD_UIDColumn]));
08472 }
08473 set {
08474 this[this.tableResourceAssignmentCustomFields.CUSTOM_FIELD_UIDColumn] = value;
08475 }
08476 }
08477
08478 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08479 public System.Guid PROJ_UID {
08480 get {
08481 return ((global::System.Guid)(this[this.tableResourceAssignmentCustomFields.PROJ_UIDColumn]));
08482 }
08483 set {
08484 this[this.tableResourceAssignmentCustomFields.PROJ_UIDColumn] = value;
08485 }
08486 }
08487
08488 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08489 public System.Guid ASSN_UID {
08490 get {
08491 return ((global::System.Guid)(this[this.tableResourceAssignmentCustomFields.ASSN_UIDColumn]));
08492 }
08493 set {
08494 this[this.tableResourceAssignmentCustomFields.ASSN_UIDColumn] = value;
08495 }
08496 }
08497
08498 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08499 public System.Guid MD_PROP_UID {
08500 get {
08501 try {
08502 return ((global::System.Guid)(this[this.tableResourceAssignmentCustomFields.MD_PROP_UIDColumn]));
08503 }
08504 catch (global::System.InvalidCastException e) {
08505 throw new global::System.Data.StrongTypingException("The value for column \'MD_PROP_UID\' in table \'ResourceAssignmentCustomFields\' is D" +
08506 "BNull.", e);
08507 }
08508 }
08509 set {
08510 this[this.tableResourceAssignmentCustomFields.MD_PROP_UIDColumn] = value;
08511 }
08512 }
08513
08514 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08515 public int MD_PROP_ID {
08516 get {
08517 try {
08518 return ((int)(this[this.tableResourceAssignmentCustomFields.MD_PROP_IDColumn]));
08519 }
08520 catch (global::System.InvalidCastException e) {
08521 throw new global::System.Data.StrongTypingException("The value for column \'MD_PROP_ID\' in table \'ResourceAssignmentCustomFields\' is DB" +
08522 "Null.", e);
08523 }
08524 }
08525 set {
08526 this[this.tableResourceAssignmentCustomFields.MD_PROP_IDColumn] = value;
08527 }
08528 }
08529
08530 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08531 public byte FIELD_TYPE_ENUM {
08532 get {
08533 try {
08534 return ((byte)(this[this.tableResourceAssignmentCustomFields.FIELD_TYPE_ENUMColumn]));
08535 }
08536 catch (global::System.InvalidCastException e) {
08537 throw new global::System.Data.StrongTypingException("The value for column \'FIELD_TYPE_ENUM\' in table \'ResourceAssignmentCustomFields\' " +
08538 "is DBNull.", e);
08539 }
08540 }
08541 set {
08542 this[this.tableResourceAssignmentCustomFields.FIELD_TYPE_ENUMColumn] = value;
08543 }
08544 }
08545
08546 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08547 public bool FLAG_VALUE {
08548 get {
08549 try {
08550 return ((bool)(this[this.tableResourceAssignmentCustomFields.FLAG_VALUEColumn]));
08551 }
08552 catch (global::System.InvalidCastException e) {
08553 throw new global::System.Data.StrongTypingException("The value for column \'FLAG_VALUE\' in table \'ResourceAssignmentCustomFields\' is DB" +
08554 "Null.", e);
08555 }
08556 }
08557 set {
08558 this[this.tableResourceAssignmentCustomFields.FLAG_VALUEColumn] = value;
08559 }
08560 }
08561
08562 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08563 public string TEXT_VALUE {
08564 get {
08565 try {
08566 return ((string)(this[this.tableResourceAssignmentCustomFields.TEXT_VALUEColumn]));
08567 }
08568 catch (global::System.InvalidCastException e) {
08569 throw new global::System.Data.StrongTypingException("The value for column \'TEXT_VALUE\' in table \'ResourceAssignmentCustomFields\' is DB" +
08570 "Null.", e);
08571 }
08572 }
08573 set {
08574 this[this.tableResourceAssignmentCustomFields.TEXT_VALUEColumn] = value;
08575 }
08576 }
08577
08578 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08579 public System.DateTime DATE_VALUE {
08580 get {
08581 try {
08582 return ((global::System.DateTime)(this[this.tableResourceAssignmentCustomFields.DATE_VALUEColumn]));
08583 }
08584 catch (global::System.InvalidCastException e) {
08585 throw new global::System.Data.StrongTypingException("The value for column \'DATE_VALUE\' in table \'ResourceAssignmentCustomFields\' is DB" +
08586 "Null.", e);
08587 }
08588 }
08589 set {
08590 this[this.tableResourceAssignmentCustomFields.DATE_VALUEColumn] = value;
08591 }
08592 }
08593
08594 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08595 public System.Guid CODE_VALUE {
08596 get {
08597 try {
08598 return ((global::System.Guid)(this[this.tableResourceAssignmentCustomFields.CODE_VALUEColumn]));
08599 }
08600 catch (global::System.InvalidCastException e) {
08601 throw new global::System.Data.StrongTypingException("The value for column \'CODE_VALUE\' in table \'ResourceAssignmentCustomFields\' is DB" +
08602 "Null.", e);
08603 }
08604 }
08605 set {
08606 this[this.tableResourceAssignmentCustomFields.CODE_VALUEColumn] = value;
08607 }
08608 }
08609
08610 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08611 public int DUR_VALUE {
08612 get {
08613 try {
08614 return ((int)(this[this.tableResourceAssignmentCustomFields.DUR_VALUEColumn]));
08615 }
08616 catch (global::System.InvalidCastException e) {
08617 throw new global::System.Data.StrongTypingException("The value for column \'DUR_VALUE\' in table \'ResourceAssignmentCustomFields\' is DBN" +
08618 "ull.", e);
08619 }
08620 }
08621 set {
08622 this[this.tableResourceAssignmentCustomFields.DUR_VALUEColumn] = value;
08623 }
08624 }
08625
08626 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08627 public decimal NUM_VALUE {
08628 get {
08629 try {
08630 return ((decimal)(this[this.tableResourceAssignmentCustomFields.NUM_VALUEColumn]));
08631 }
08632 catch (global::System.InvalidCastException e) {
08633 throw new global::System.Data.StrongTypingException("The value for column \'NUM_VALUE\' in table \'ResourceAssignmentCustomFields\' is DBN" +
08634 "ull.", e);
08635 }
08636 }
08637 set {
08638 this[this.tableResourceAssignmentCustomFields.NUM_VALUEColumn] = value;
08639 }
08640 }
08641
08642 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08643 public byte DUR_FMT {
08644 get {
08645 try {
08646 return ((byte)(this[this.tableResourceAssignmentCustomFields.DUR_FMTColumn]));
08647 }
08648 catch (global::System.InvalidCastException e) {
08649 throw new global::System.Data.StrongTypingException("The value for column \'DUR_FMT\' in table \'ResourceAssignmentCustomFields\' is DBNul" +
08650 "l.", e);
08651 }
08652 }
08653 set {
08654 this[this.tableResourceAssignmentCustomFields.DUR_FMTColumn] = value;
08655 }
08656 }
08657
08658 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08659 public bool IsMD_PROP_UIDNull() {
08660 return this.IsNull(this.tableResourceAssignmentCustomFields.MD_PROP_UIDColumn);
08661 }
08662
08663 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08664 public void SetMD_PROP_UIDNull() {
08665 this[this.tableResourceAssignmentCustomFields.MD_PROP_UIDColumn] = global::System.Convert.DBNull;
08666 }
08667
08668 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08669 public bool IsMD_PROP_IDNull() {
08670 return this.IsNull(this.tableResourceAssignmentCustomFields.MD_PROP_IDColumn);
08671 }
08672
08673 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08674 public void SetMD_PROP_IDNull() {
08675 this[this.tableResourceAssignmentCustomFields.MD_PROP_IDColumn] = global::System.Convert.DBNull;
08676 }
08677
08678 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08679 public bool IsFIELD_TYPE_ENUMNull() {
08680 return this.IsNull(this.tableResourceAssignmentCustomFields.FIELD_TYPE_ENUMColumn);
08681 }
08682
08683 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08684 public void SetFIELD_TYPE_ENUMNull() {
08685 this[this.tableResourceAssignmentCustomFields.FIELD_TYPE_ENUMColumn] = global::System.Convert.DBNull;
08686 }
08687
08688 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08689 public bool IsFLAG_VALUENull() {
08690 return this.IsNull(this.tableResourceAssignmentCustomFields.FLAG_VALUEColumn);
08691 }
08692
08693 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08694 public void SetFLAG_VALUENull() {
08695 this[this.tableResourceAssignmentCustomFields.FLAG_VALUEColumn] = global::System.Convert.DBNull;
08696 }
08697
08698 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08699 public bool IsTEXT_VALUENull() {
08700 return this.IsNull(this.tableResourceAssignmentCustomFields.TEXT_VALUEColumn);
08701 }
08702
08703 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08704 public void SetTEXT_VALUENull() {
08705 this[this.tableResourceAssignmentCustomFields.TEXT_VALUEColumn] = global::System.Convert.DBNull;
08706 }
08707
08708 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08709 public bool IsDATE_VALUENull() {
08710 return this.IsNull(this.tableResourceAssignmentCustomFields.DATE_VALUEColumn);
08711 }
08712
08713 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08714 public void SetDATE_VALUENull() {
08715 this[this.tableResourceAssignmentCustomFields.DATE_VALUEColumn] = global::System.Convert.DBNull;
08716 }
08717
08718 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08719 public bool IsCODE_VALUENull() {
08720 return this.IsNull(this.tableResourceAssignmentCustomFields.CODE_VALUEColumn);
08721 }
08722
08723 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08724 public void SetCODE_VALUENull() {
08725 this[this.tableResourceAssignmentCustomFields.CODE_VALUEColumn] = global::System.Convert.DBNull;
08726 }
08727
08728 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08729 public bool IsDUR_VALUENull() {
08730 return this.IsNull(this.tableResourceAssignmentCustomFields.DUR_VALUEColumn);
08731 }
08732
08733 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08734 public void SetDUR_VALUENull() {
08735 this[this.tableResourceAssignmentCustomFields.DUR_VALUEColumn] = global::System.Convert.DBNull;
08736 }
08737
08738 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08739 public bool IsNUM_VALUENull() {
08740 return this.IsNull(this.tableResourceAssignmentCustomFields.NUM_VALUEColumn);
08741 }
08742
08743 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08744 public void SetNUM_VALUENull() {
08745 this[this.tableResourceAssignmentCustomFields.NUM_VALUEColumn] = global::System.Convert.DBNull;
08746 }
08747
08748 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08749 public bool IsDUR_FMTNull() {
08750 return this.IsNull(this.tableResourceAssignmentCustomFields.DUR_FMTColumn);
08751 }
08752
08753 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08754 public void SetDUR_FMTNull() {
08755 this[this.tableResourceAssignmentCustomFields.DUR_FMTColumn] = global::System.Convert.DBNull;
08756 }
08757 }
08758
08759
08760
08761
08762 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
08763 public class ResourceAssignmentRowChangeEvent : global::System.EventArgs {
08764
08765 private ResourceAssignmentRow eventRow;
08766
08767 private global::System.Data.DataRowAction eventAction;
08768
08769 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08770 public ResourceAssignmentRowChangeEvent(ResourceAssignmentRow row, global::System.Data.DataRowAction action) {
08771 this.eventRow = row;
08772 this.eventAction = action;
08773 }
08774
08775 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08776 public ResourceAssignmentRow Row {
08777 get {
08778 return this.eventRow;
08779 }
08780 }
08781
08782 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08783 public global::System.Data.DataRowAction Action {
08784 get {
08785 return this.eventAction;
08786 }
08787 }
08788 }
08789
08790
08791
08792
08793 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
08794 public class ResourceAssignmentCustomFieldsRowChangeEvent : global::System.EventArgs {
08795
08796 private ResourceAssignmentCustomFieldsRow eventRow;
08797
08798 private global::System.Data.DataRowAction eventAction;
08799
08800 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08801 public ResourceAssignmentCustomFieldsRowChangeEvent(ResourceAssignmentCustomFieldsRow row, global::System.Data.DataRowAction action) {
08802 this.eventRow = row;
08803 this.eventAction = action;
08804 }
08805
08806 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08807 public ResourceAssignmentCustomFieldsRow Row {
08808 get {
08809 return this.eventRow;
08810 }
08811 }
08812
08813 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08814 public global::System.Data.DataRowAction Action {
08815 get {
08816 return this.eventAction;
08817 }
08818 }
08819 }
08820 }
08821
08822
08823 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
08824 [System.SerializableAttribute()]
08825 [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/office/project/server/webservices/Resource/")]
08826 public enum ResourceActiveFilter {
08827
08828
08829 All,
08830
08831
08832 Active,
08833
08834
08835 Inactive,
08836 }
08837
08838
08839
08840
08841
08842 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
08843 [global::System.Serializable()]
08844 [global::System.ComponentModel.DesignerCategoryAttribute("code")]
08845 [global::System.ComponentModel.ToolboxItem(true)]
08846 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
08847 [global::System.Xml.Serialization.XmlRootAttribute("ResourceAuthorizationDataSet")]
08848 [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
08849 public partial class ResourceAuthorizationDataSet : global::System.Data.DataSet {
08850
08851 private ResourcesDataTable tableResources;
08852
08853 private SecurityPrincipleCategoryRelationsDataTable tableSecurityPrincipleCategoryRelations;
08854
08855 private CategoryPermissionsDataTable tableCategoryPermissions;
08856
08857 private GlobalPermissionsDataTable tableGlobalPermissions;
08858
08859 private GroupMembershipsDataTable tableGroupMemberships;
08860
08861 private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
08862
08863 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08864 public ResourceAuthorizationDataSet() {
08865 this.BeginInit();
08866 this.InitClass();
08867 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
08868 base.Tables.CollectionChanged += schemaChangedHandler;
08869 base.Relations.CollectionChanged += schemaChangedHandler;
08870 this.EndInit();
08871 }
08872
08873 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08874 protected ResourceAuthorizationDataSet(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
08875 base(info, context, false) {
08876 if ((this.IsBinarySerialized(info, context) == true)) {
08877 this.InitVars(false);
08878 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
08879 this.Tables.CollectionChanged += schemaChangedHandler1;
08880 this.Relations.CollectionChanged += schemaChangedHandler1;
08881 return;
08882 }
08883 string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
08884 if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
08885 global::System.Data.DataSet ds = new global::System.Data.DataSet();
08886 ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
08887 if ((ds.Tables["Resources"] != null)) {
08888 base.Tables.Add(new ResourcesDataTable(ds.Tables["Resources"]));
08889 }
08890 if ((ds.Tables["SecurityPrincipleCategoryRelations"] != null)) {
08891 base.Tables.Add(new SecurityPrincipleCategoryRelationsDataTable(ds.Tables["SecurityPrincipleCategoryRelations"]));
08892 }
08893 if ((ds.Tables["CategoryPermissions"] != null)) {
08894 base.Tables.Add(new CategoryPermissionsDataTable(ds.Tables["CategoryPermissions"]));
08895 }
08896 if ((ds.Tables["GlobalPermissions"] != null)) {
08897 base.Tables.Add(new GlobalPermissionsDataTable(ds.Tables["GlobalPermissions"]));
08898 }
08899 if ((ds.Tables["GroupMemberships"] != null)) {
08900 base.Tables.Add(new GroupMembershipsDataTable(ds.Tables["GroupMemberships"]));
08901 }
08902 this.DataSetName = ds.DataSetName;
08903 this.Prefix = ds.Prefix;
08904 this.Namespace = ds.Namespace;
08905 this.Locale = ds.Locale;
08906 this.CaseSensitive = ds.CaseSensitive;
08907 this.EnforceConstraints = ds.EnforceConstraints;
08908 this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
08909 this.InitVars();
08910 }
08911 else {
08912 this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
08913 }
08914 this.GetSerializationData(info, context);
08915 global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
08916 base.Tables.CollectionChanged += schemaChangedHandler;
08917 this.Relations.CollectionChanged += schemaChangedHandler;
08918 }
08919
08920 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08921 [global::System.ComponentModel.Browsable(false)]
08922 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
08923 public ResourcesDataTable Resources {
08924 get {
08925 return this.tableResources;
08926 }
08927 }
08928
08929 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08930 [global::System.ComponentModel.Browsable(false)]
08931 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
08932 public SecurityPrincipleCategoryRelationsDataTable SecurityPrincipleCategoryRelations {
08933 get {
08934 return this.tableSecurityPrincipleCategoryRelations;
08935 }
08936 }
08937
08938 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08939 [global::System.ComponentModel.Browsable(false)]
08940 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
08941 public CategoryPermissionsDataTable CategoryPermissions {
08942 get {
08943 return this.tableCategoryPermissions;
08944 }
08945 }
08946
08947 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08948 [global::System.ComponentModel.Browsable(false)]
08949 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
08950 public GlobalPermissionsDataTable GlobalPermissions {
08951 get {
08952 return this.tableGlobalPermissions;
08953 }
08954 }
08955
08956 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08957 [global::System.ComponentModel.Browsable(false)]
08958 [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
08959 public GroupMembershipsDataTable GroupMemberships {
08960 get {
08961 return this.tableGroupMemberships;
08962 }
08963 }
08964
08965 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08966 [global::System.ComponentModel.BrowsableAttribute(true)]
08967 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
08968 public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
08969 get {
08970 return this._schemaSerializationMode;
08971 }
08972 set {
08973 this._schemaSerializationMode = value;
08974 }
08975 }
08976
08977 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08978 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
08979 public new global::System.Data.DataTableCollection Tables {
08980 get {
08981 return base.Tables;
08982 }
08983 }
08984
08985 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08986 [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
08987 public new global::System.Data.DataRelationCollection Relations {
08988 get {
08989 return base.Relations;
08990 }
08991 }
08992
08993 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
08994 protected override void InitializeDerivedDataSet() {
08995 this.BeginInit();
08996 this.InitClass();
08997 this.EndInit();
08998 }
08999
09000 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09001 public override global::System.Data.DataSet Clone() {
09002 ResourceAuthorizationDataSet cln = ((ResourceAuthorizationDataSet)(base.Clone()));
09003 cln.InitVars();
09004 cln.SchemaSerializationMode = this.SchemaSerializationMode;
09005 return cln;
09006 }
09007
09008 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09009 protected override bool ShouldSerializeTables() {
09010 return false;
09011 }
09012
09013 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09014 protected override bool ShouldSerializeRelations() {
09015 return false;
09016 }
09017
09018 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09019 protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
09020 if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
09021 this.Reset();
09022 global::System.Data.DataSet ds = new global::System.Data.DataSet();
09023 ds.ReadXml(reader);
09024 if ((ds.Tables["Resources"] != null)) {
09025 base.Tables.Add(new ResourcesDataTable(ds.Tables["Resources"]));
09026 }
09027 if ((ds.Tables["SecurityPrincipleCategoryRelations"] != null)) {
09028 base.Tables.Add(new SecurityPrincipleCategoryRelationsDataTable(ds.Tables["SecurityPrincipleCategoryRelations"]));
09029 }
09030 if ((ds.Tables["CategoryPermissions"] != null)) {
09031 base.Tables.Add(new CategoryPermissionsDataTable(ds.Tables["CategoryPermissions"]));
09032 }
09033 if ((ds.Tables["GlobalPermissions"] != null)) {
09034 base.Tables.Add(new GlobalPermissionsDataTable(ds.Tables["GlobalPermissions"]));
09035 }
09036 if ((ds.Tables["GroupMemberships"] != null)) {
09037 base.Tables.Add(new GroupMembershipsDataTable(ds.Tables["GroupMemberships"]));
09038 }
09039 this.DataSetName = ds.DataSetName;
09040 this.Prefix = ds.Prefix;
09041 this.Namespace = ds.Namespace;
09042 this.Locale = ds.Locale;
09043 this.CaseSensitive = ds.CaseSensitive;
09044 this.EnforceConstraints = ds.EnforceConstraints;
09045 this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
09046 this.InitVars();
09047 }
09048 else {
09049 this.ReadXml(reader);
09050 this.InitVars();
09051 }
09052 }
09053
09054 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09055 protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
09056 global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
09057 this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
09058 stream.Position = 0;
09059 return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
09060 }
09061
09062 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09063 internal void InitVars() {
09064 this.InitVars(true);
09065 }
09066
09067 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09068 internal void InitVars(bool initTable) {
09069 this.tableResources = ((ResourcesDataTable)(base.Tables["Resources"]));
09070 if ((initTable == true)) {
09071 if ((this.tableResources != null)) {
09072 this.tableResources.InitVars();
09073 }
09074 }
09075 this.tableSecurityPrincipleCategoryRelations = ((SecurityPrincipleCategoryRelationsDataTable)(base.Tables["SecurityPrincipleCategoryRelations"]));
09076 if ((initTable == true)) {
09077 if ((this.tableSecurityPrincipleCategoryRelations != null)) {
09078 this.tableSecurityPrincipleCategoryRelations.InitVars();
09079 }
09080 }
09081 this.tableCategoryPermissions = ((CategoryPermissionsDataTable)(base.Tables["CategoryPermissions"]));
09082 if ((initTable == true)) {
09083 if ((this.tableCategoryPermissions != null)) {
09084 this.tableCategoryPermissions.InitVars();
09085 }
09086 }
09087 this.tableGlobalPermissions = ((GlobalPermissionsDataTable)(base.Tables["GlobalPermissions"]));
09088 if ((initTable == true)) {
09089 if ((this.tableGlobalPermissions != null)) {
09090 this.tableGlobalPermissions.InitVars();
09091 }
09092 }
09093 this.tableGroupMemberships = ((GroupMembershipsDataTable)(base.Tables["GroupMemberships"]));
09094 if ((initTable == true)) {
09095 if ((this.tableGroupMemberships != null)) {
09096 this.tableGroupMemberships.InitVars();
09097 }
09098 }
09099 }
09100
09101 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09102 private void InitClass() {
09103 this.DataSetName = "ResourceAuthorizationDataSet";
09104 this.Prefix = "";
09105 this.Namespace = "http://schemas.microsoft.com/office/project/server/webservices/ResourceAuthorizat" +
09106 "ionDataSet/";
09107 this.EnforceConstraints = false;
09108 this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
09109 this.tableResources = new ResourcesDataTable();
09110 base.Tables.Add(this.tableResources);
09111 this.tableSecurityPrincipleCategoryRelations = new SecurityPrincipleCategoryRelationsDataTable();
09112 base.Tables.Add(this.tableSecurityPrincipleCategoryRelations);
09113 this.tableCategoryPermissions = new CategoryPermissionsDataTable();
09114 base.Tables.Add(this.tableCategoryPermissions);
09115 this.tableGlobalPermissions = new GlobalPermissionsDataTable();
09116 base.Tables.Add(this.tableGlobalPermissions);
09117 this.tableGroupMemberships = new GroupMembershipsDataTable();
09118 base.Tables.Add(this.tableGroupMemberships);
09119 }
09120
09121 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09122 private bool ShouldSerializeResources() {
09123 return false;
09124 }
09125
09126 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09127 private bool ShouldSerializeSecurityPrincipleCategoryRelations() {
09128 return false;
09129 }
09130
09131 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09132 private bool ShouldSerializeCategoryPermissions() {
09133 return false;
09134 }
09135
09136 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09137 private bool ShouldSerializeGlobalPermissions() {
09138 return false;
09139 }
09140
09141 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09142 private bool ShouldSerializeGroupMemberships() {
09143 return false;
09144 }
09145
09146 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09147 private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
09148 if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
09149 this.InitVars();
09150 }
09151 }
09152
09153 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09154 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
09155 ResourceAuthorizationDataSet ds = new ResourceAuthorizationDataSet();
09156 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
09157 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
09158 global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
09159 any.Namespace = ds.Namespace;
09160 sequence.Items.Add(any);
09161 type.Particle = sequence;
09162 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
09163 if (xs.Contains(dsSchema.TargetNamespace)) {
09164 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
09165 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
09166 try {
09167 global::System.Xml.Schema.XmlSchema schema = null;
09168 dsSchema.Write(s1);
09169 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
09170 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
09171 s2.SetLength(0);
09172 schema.Write(s2);
09173 if ((s1.Length == s2.Length)) {
09174 s1.Position = 0;
09175 s2.Position = 0;
09176 for (; ((s1.Position != s1.Length)
09177 && (s1.ReadByte() == s2.ReadByte())); ) {
09178 ;
09179 }
09180 if ((s1.Position == s1.Length)) {
09181 return type;
09182 }
09183 }
09184 }
09185 }
09186 finally {
09187 if ((s1 != null)) {
09188 s1.Close();
09189 }
09190 if ((s2 != null)) {
09191 s2.Close();
09192 }
09193 }
09194 }
09195 xs.Add(dsSchema);
09196 return type;
09197 }
09198
09199 public delegate void ResourcesRowChangeEventHandler(object sender, ResourcesRowChangeEvent e);
09200
09201 public delegate void SecurityPrincipleCategoryRelationsRowChangeEventHandler(object sender, SecurityPrincipleCategoryRelationsRowChangeEvent e);
09202
09203 public delegate void CategoryPermissionsRowChangeEventHandler(object sender, CategoryPermissionsRowChangeEvent e);
09204
09205 public delegate void GlobalPermissionsRowChangeEventHandler(object sender, GlobalPermissionsRowChangeEvent e);
09206
09207 public delegate void GroupMembershipsRowChangeEventHandler(object sender, GroupMembershipsRowChangeEvent e);
09208
09209
09210
09211
09212 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
09213 [global::System.Serializable()]
09214 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
09215 public partial class ResourcesDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
09216
09217 private global::System.Data.DataColumn columnRES_UID;
09218
09219 private global::System.Data.DataColumn columnWRES_ACCOUNT;
09220
09221 private global::System.Data.DataColumn columnRES_IS_WINDOWS_USER;
09222
09223 private global::System.Data.DataColumn columnRES_PREVENT_ADSYNC;
09224
09225 private global::System.Data.DataColumn columnWRES_AD_GUID;
09226
09227 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09228 public ResourcesDataTable() {
09229 this.TableName = "Resources";
09230 this.BeginInit();
09231 this.InitClass();
09232 this.EndInit();
09233 }
09234
09235 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09236 internal ResourcesDataTable(global::System.Data.DataTable table) {
09237 this.TableName = table.TableName;
09238 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
09239 this.CaseSensitive = table.CaseSensitive;
09240 }
09241 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
09242 this.Locale = table.Locale;
09243 }
09244 if ((table.Namespace != table.DataSet.Namespace)) {
09245 this.Namespace = table.Namespace;
09246 }
09247 this.Prefix = table.Prefix;
09248 this.MinimumCapacity = table.MinimumCapacity;
09249 }
09250
09251 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09252 protected ResourcesDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
09253 base(info, context) {
09254 this.InitVars();
09255 }
09256
09257 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09258 public global::System.Data.DataColumn RES_UIDColumn {
09259 get {
09260 return this.columnRES_UID;
09261 }
09262 }
09263
09264 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09265 public global::System.Data.DataColumn WRES_ACCOUNTColumn {
09266 get {
09267 return this.columnWRES_ACCOUNT;
09268 }
09269 }
09270
09271 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09272 public global::System.Data.DataColumn RES_IS_WINDOWS_USERColumn {
09273 get {
09274 return this.columnRES_IS_WINDOWS_USER;
09275 }
09276 }
09277
09278 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09279 public global::System.Data.DataColumn RES_PREVENT_ADSYNCColumn {
09280 get {
09281 return this.columnRES_PREVENT_ADSYNC;
09282 }
09283 }
09284
09285 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09286 public global::System.Data.DataColumn WRES_AD_GUIDColumn {
09287 get {
09288 return this.columnWRES_AD_GUID;
09289 }
09290 }
09291
09292 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09293 [global::System.ComponentModel.Browsable(false)]
09294 public int Count {
09295 get {
09296 return this.Rows.Count;
09297 }
09298 }
09299
09300 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09301 public ResourcesRow this[int index] {
09302 get {
09303 return ((ResourcesRow)(this.Rows[index]));
09304 }
09305 }
09306
09307 public event ResourcesRowChangeEventHandler ResourcesRowChanging;
09308
09309 public event ResourcesRowChangeEventHandler ResourcesRowChanged;
09310
09311 public event ResourcesRowChangeEventHandler ResourcesRowDeleting;
09312
09313 public event ResourcesRowChangeEventHandler ResourcesRowDeleted;
09314
09315 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09316 public void AddResourcesRow(ResourcesRow row) {
09317 this.Rows.Add(row);
09318 }
09319
09320 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09321 public ResourcesRow AddResourcesRow(System.Guid RES_UID, string WRES_ACCOUNT, bool RES_IS_WINDOWS_USER, bool RES_PREVENT_ADSYNC, System.Guid WRES_AD_GUID) {
09322 ResourcesRow rowResourcesRow = ((ResourcesRow)(this.NewRow()));
09323 object[] columnValuesArray = new object[] {
09324 RES_UID,
09325 WRES_ACCOUNT,
09326 RES_IS_WINDOWS_USER,
09327 RES_PREVENT_ADSYNC,
09328 WRES_AD_GUID};
09329 rowResourcesRow.ItemArray = columnValuesArray;
09330 this.Rows.Add(rowResourcesRow);
09331 return rowResourcesRow;
09332 }
09333
09334 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09335 public ResourcesRow FindByRES_UID(System.Guid RES_UID) {
09336 return ((ResourcesRow)(this.Rows.Find(new object[] {
09337 RES_UID})));
09338 }
09339
09340 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09341 public virtual global::System.Collections.IEnumerator GetEnumerator() {
09342 return this.Rows.GetEnumerator();
09343 }
09344
09345 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09346 public override global::System.Data.DataTable Clone() {
09347 ResourcesDataTable cln = ((ResourcesDataTable)(base.Clone()));
09348 cln.InitVars();
09349 return cln;
09350 }
09351
09352 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09353 protected override global::System.Data.DataTable CreateInstance() {
09354 return new ResourcesDataTable();
09355 }
09356
09357 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09358 internal void InitVars() {
09359 this.columnRES_UID = base.Columns["RES_UID"];
09360 this.columnWRES_ACCOUNT = base.Columns["WRES_ACCOUNT"];
09361 this.columnRES_IS_WINDOWS_USER = base.Columns["RES_IS_WINDOWS_USER"];
09362 this.columnRES_PREVENT_ADSYNC = base.Columns["RES_PREVENT_ADSYNC"];
09363 this.columnWRES_AD_GUID = base.Columns["WRES_AD_GUID"];
09364 }
09365
09366 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09367 private void InitClass() {
09368 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09369 base.Columns.Add(this.columnRES_UID);
09370 this.columnWRES_ACCOUNT = new global::System.Data.DataColumn("WRES_ACCOUNT", typeof(string), null, global::System.Data.MappingType.Element);
09371 base.Columns.Add(this.columnWRES_ACCOUNT);
09372 this.columnRES_IS_WINDOWS_USER = new global::System.Data.DataColumn("RES_IS_WINDOWS_USER", typeof(bool), null, global::System.Data.MappingType.Element);
09373 base.Columns.Add(this.columnRES_IS_WINDOWS_USER);
09374 this.columnRES_PREVENT_ADSYNC = new global::System.Data.DataColumn("RES_PREVENT_ADSYNC", typeof(bool), null, global::System.Data.MappingType.Element);
09375 base.Columns.Add(this.columnRES_PREVENT_ADSYNC);
09376 this.columnWRES_AD_GUID = new global::System.Data.DataColumn("WRES_AD_GUID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09377 base.Columns.Add(this.columnWRES_AD_GUID);
09378 this.Constraints.Add(new global::System.Data.UniqueConstraint("ResourcesPrimaryKey", new global::System.Data.DataColumn[] {
09379 this.columnRES_UID}, true));
09380 this.columnRES_UID.AllowDBNull = false;
09381 this.columnRES_UID.Unique = true;
09382 this.columnRES_PREVENT_ADSYNC.DefaultValue = ((bool)(false));
09383 }
09384
09385 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09386 public ResourcesRow NewResourcesRow() {
09387 return ((ResourcesRow)(this.NewRow()));
09388 }
09389
09390 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09391 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
09392 return new ResourcesRow(builder);
09393 }
09394
09395 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09396 protected override global::System.Type GetRowType() {
09397 return typeof(ResourcesRow);
09398 }
09399
09400 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09401 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
09402 base.OnRowChanged(e);
09403 if ((this.ResourcesRowChanged != null)) {
09404 this.ResourcesRowChanged(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
09405 }
09406 }
09407
09408 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09409 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
09410 base.OnRowChanging(e);
09411 if ((this.ResourcesRowChanging != null)) {
09412 this.ResourcesRowChanging(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
09413 }
09414 }
09415
09416 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09417 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
09418 base.OnRowDeleted(e);
09419 if ((this.ResourcesRowDeleted != null)) {
09420 this.ResourcesRowDeleted(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
09421 }
09422 }
09423
09424 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09425 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
09426 base.OnRowDeleting(e);
09427 if ((this.ResourcesRowDeleting != null)) {
09428 this.ResourcesRowDeleting(this, new ResourcesRowChangeEvent(((ResourcesRow)(e.Row)), e.Action));
09429 }
09430 }
09431
09432 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09433 public void RemoveResourcesRow(ResourcesRow row) {
09434 this.Rows.Remove(row);
09435 }
09436
09437 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09438 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
09439 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
09440 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
09441 ResourceAuthorizationDataSet ds = new ResourceAuthorizationDataSet();
09442 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
09443 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
09444 any1.MinOccurs = new decimal(0);
09445 any1.MaxOccurs = decimal.MaxValue;
09446 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
09447 sequence.Items.Add(any1);
09448 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
09449 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
09450 any2.MinOccurs = new decimal(1);
09451 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
09452 sequence.Items.Add(any2);
09453 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
09454 attribute1.Name = "namespace";
09455 attribute1.FixedValue = ds.Namespace;
09456 type.Attributes.Add(attribute1);
09457 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
09458 attribute2.Name = "tableTypeName";
09459 attribute2.FixedValue = "ResourcesDataTable";
09460 type.Attributes.Add(attribute2);
09461 type.Particle = sequence;
09462 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
09463 if (xs.Contains(dsSchema.TargetNamespace)) {
09464 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
09465 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
09466 try {
09467 global::System.Xml.Schema.XmlSchema schema = null;
09468 dsSchema.Write(s1);
09469 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
09470 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
09471 s2.SetLength(0);
09472 schema.Write(s2);
09473 if ((s1.Length == s2.Length)) {
09474 s1.Position = 0;
09475 s2.Position = 0;
09476 for (; ((s1.Position != s1.Length)
09477 && (s1.ReadByte() == s2.ReadByte())); ) {
09478 ;
09479 }
09480 if ((s1.Position == s1.Length)) {
09481 return type;
09482 }
09483 }
09484 }
09485 }
09486 finally {
09487 if ((s1 != null)) {
09488 s1.Close();
09489 }
09490 if ((s2 != null)) {
09491 s2.Close();
09492 }
09493 }
09494 }
09495 xs.Add(dsSchema);
09496 return type;
09497 }
09498 }
09499
09500
09501
09502
09503 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
09504 [global::System.Serializable()]
09505 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
09506 public partial class SecurityPrincipleCategoryRelationsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
09507
09508 private global::System.Data.DataColumn columnRES_UID;
09509
09510 private global::System.Data.DataColumn columnWSEC_CAT_UID;
09511
09512 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09513 public SecurityPrincipleCategoryRelationsDataTable() {
09514 this.TableName = "SecurityPrincipleCategoryRelations";
09515 this.BeginInit();
09516 this.InitClass();
09517 this.EndInit();
09518 }
09519
09520 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09521 internal SecurityPrincipleCategoryRelationsDataTable(global::System.Data.DataTable table) {
09522 this.TableName = table.TableName;
09523 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
09524 this.CaseSensitive = table.CaseSensitive;
09525 }
09526 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
09527 this.Locale = table.Locale;
09528 }
09529 if ((table.Namespace != table.DataSet.Namespace)) {
09530 this.Namespace = table.Namespace;
09531 }
09532 this.Prefix = table.Prefix;
09533 this.MinimumCapacity = table.MinimumCapacity;
09534 }
09535
09536 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09537 protected SecurityPrincipleCategoryRelationsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
09538 base(info, context) {
09539 this.InitVars();
09540 }
09541
09542 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09543 public global::System.Data.DataColumn RES_UIDColumn {
09544 get {
09545 return this.columnRES_UID;
09546 }
09547 }
09548
09549 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09550 public global::System.Data.DataColumn WSEC_CAT_UIDColumn {
09551 get {
09552 return this.columnWSEC_CAT_UID;
09553 }
09554 }
09555
09556 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09557 [global::System.ComponentModel.Browsable(false)]
09558 public int Count {
09559 get {
09560 return this.Rows.Count;
09561 }
09562 }
09563
09564 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09565 public SecurityPrincipleCategoryRelationsRow this[int index] {
09566 get {
09567 return ((SecurityPrincipleCategoryRelationsRow)(this.Rows[index]));
09568 }
09569 }
09570
09571 public event SecurityPrincipleCategoryRelationsRowChangeEventHandler SecurityPrincipleCategoryRelationsRowChanging;
09572
09573 public event SecurityPrincipleCategoryRelationsRowChangeEventHandler SecurityPrincipleCategoryRelationsRowChanged;
09574
09575 public event SecurityPrincipleCategoryRelationsRowChangeEventHandler SecurityPrincipleCategoryRelationsRowDeleting;
09576
09577 public event SecurityPrincipleCategoryRelationsRowChangeEventHandler SecurityPrincipleCategoryRelationsRowDeleted;
09578
09579 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09580 public void AddSecurityPrincipleCategoryRelationsRow(SecurityPrincipleCategoryRelationsRow row) {
09581 this.Rows.Add(row);
09582 }
09583
09584 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09585 public SecurityPrincipleCategoryRelationsRow AddSecurityPrincipleCategoryRelationsRow(System.Guid RES_UID, System.Guid WSEC_CAT_UID) {
09586 SecurityPrincipleCategoryRelationsRow rowSecurityPrincipleCategoryRelationsRow = ((SecurityPrincipleCategoryRelationsRow)(this.NewRow()));
09587 object[] columnValuesArray = new object[] {
09588 RES_UID,
09589 WSEC_CAT_UID};
09590 rowSecurityPrincipleCategoryRelationsRow.ItemArray = columnValuesArray;
09591 this.Rows.Add(rowSecurityPrincipleCategoryRelationsRow);
09592 return rowSecurityPrincipleCategoryRelationsRow;
09593 }
09594
09595 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09596 public SecurityPrincipleCategoryRelationsRow FindByWSEC_CAT_UIDRES_UID(System.Guid WSEC_CAT_UID, System.Guid RES_UID) {
09597 return ((SecurityPrincipleCategoryRelationsRow)(this.Rows.Find(new object[] {
09598 WSEC_CAT_UID,
09599 RES_UID})));
09600 }
09601
09602 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09603 public virtual global::System.Collections.IEnumerator GetEnumerator() {
09604 return this.Rows.GetEnumerator();
09605 }
09606
09607 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09608 public override global::System.Data.DataTable Clone() {
09609 SecurityPrincipleCategoryRelationsDataTable cln = ((SecurityPrincipleCategoryRelationsDataTable)(base.Clone()));
09610 cln.InitVars();
09611 return cln;
09612 }
09613
09614 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09615 protected override global::System.Data.DataTable CreateInstance() {
09616 return new SecurityPrincipleCategoryRelationsDataTable();
09617 }
09618
09619 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09620 internal void InitVars() {
09621 this.columnRES_UID = base.Columns["RES_UID"];
09622 this.columnWSEC_CAT_UID = base.Columns["WSEC_CAT_UID"];
09623 }
09624
09625 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09626 private void InitClass() {
09627 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09628 base.Columns.Add(this.columnRES_UID);
09629 this.columnWSEC_CAT_UID = new global::System.Data.DataColumn("WSEC_CAT_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09630 base.Columns.Add(this.columnWSEC_CAT_UID);
09631 this.Constraints.Add(new global::System.Data.UniqueConstraint("SecurityPrincipleCategoryRelationsPrimaryKey", new global::System.Data.DataColumn[] {
09632 this.columnWSEC_CAT_UID,
09633 this.columnRES_UID}, true));
09634 this.columnRES_UID.AllowDBNull = false;
09635 this.columnWSEC_CAT_UID.AllowDBNull = false;
09636 }
09637
09638 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09639 public SecurityPrincipleCategoryRelationsRow NewSecurityPrincipleCategoryRelationsRow() {
09640 return ((SecurityPrincipleCategoryRelationsRow)(this.NewRow()));
09641 }
09642
09643 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09644 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
09645 return new SecurityPrincipleCategoryRelationsRow(builder);
09646 }
09647
09648 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09649 protected override global::System.Type GetRowType() {
09650 return typeof(SecurityPrincipleCategoryRelationsRow);
09651 }
09652
09653 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09654 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
09655 base.OnRowChanged(e);
09656 if ((this.SecurityPrincipleCategoryRelationsRowChanged != null)) {
09657 this.SecurityPrincipleCategoryRelationsRowChanged(this, new SecurityPrincipleCategoryRelationsRowChangeEvent(((SecurityPrincipleCategoryRelationsRow)(e.Row)), e.Action));
09658 }
09659 }
09660
09661 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09662 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
09663 base.OnRowChanging(e);
09664 if ((this.SecurityPrincipleCategoryRelationsRowChanging != null)) {
09665 this.SecurityPrincipleCategoryRelationsRowChanging(this, new SecurityPrincipleCategoryRelationsRowChangeEvent(((SecurityPrincipleCategoryRelationsRow)(e.Row)), e.Action));
09666 }
09667 }
09668
09669 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09670 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
09671 base.OnRowDeleted(e);
09672 if ((this.SecurityPrincipleCategoryRelationsRowDeleted != null)) {
09673 this.SecurityPrincipleCategoryRelationsRowDeleted(this, new SecurityPrincipleCategoryRelationsRowChangeEvent(((SecurityPrincipleCategoryRelationsRow)(e.Row)), e.Action));
09674 }
09675 }
09676
09677 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09678 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
09679 base.OnRowDeleting(e);
09680 if ((this.SecurityPrincipleCategoryRelationsRowDeleting != null)) {
09681 this.SecurityPrincipleCategoryRelationsRowDeleting(this, new SecurityPrincipleCategoryRelationsRowChangeEvent(((SecurityPrincipleCategoryRelationsRow)(e.Row)), e.Action));
09682 }
09683 }
09684
09685 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09686 public void RemoveSecurityPrincipleCategoryRelationsRow(SecurityPrincipleCategoryRelationsRow row) {
09687 this.Rows.Remove(row);
09688 }
09689
09690 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09691 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
09692 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
09693 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
09694 ResourceAuthorizationDataSet ds = new ResourceAuthorizationDataSet();
09695 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
09696 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
09697 any1.MinOccurs = new decimal(0);
09698 any1.MaxOccurs = decimal.MaxValue;
09699 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
09700 sequence.Items.Add(any1);
09701 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
09702 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
09703 any2.MinOccurs = new decimal(1);
09704 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
09705 sequence.Items.Add(any2);
09706 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
09707 attribute1.Name = "namespace";
09708 attribute1.FixedValue = ds.Namespace;
09709 type.Attributes.Add(attribute1);
09710 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
09711 attribute2.Name = "tableTypeName";
09712 attribute2.FixedValue = "SecurityPrincipleCategoryRelationsDataTable";
09713 type.Attributes.Add(attribute2);
09714 type.Particle = sequence;
09715 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
09716 if (xs.Contains(dsSchema.TargetNamespace)) {
09717 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
09718 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
09719 try {
09720 global::System.Xml.Schema.XmlSchema schema = null;
09721 dsSchema.Write(s1);
09722 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
09723 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
09724 s2.SetLength(0);
09725 schema.Write(s2);
09726 if ((s1.Length == s2.Length)) {
09727 s1.Position = 0;
09728 s2.Position = 0;
09729 for (; ((s1.Position != s1.Length)
09730 && (s1.ReadByte() == s2.ReadByte())); ) {
09731 ;
09732 }
09733 if ((s1.Position == s1.Length)) {
09734 return type;
09735 }
09736 }
09737 }
09738 }
09739 finally {
09740 if ((s1 != null)) {
09741 s1.Close();
09742 }
09743 if ((s2 != null)) {
09744 s2.Close();
09745 }
09746 }
09747 }
09748 xs.Add(dsSchema);
09749 return type;
09750 }
09751 }
09752
09753
09754
09755
09756 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
09757 [global::System.Serializable()]
09758 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
09759 public partial class CategoryPermissionsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
09760
09761 private global::System.Data.DataColumn columnRES_UID;
09762
09763 private global::System.Data.DataColumn columnWSEC_CAT_UID;
09764
09765 private global::System.Data.DataColumn columnWSEC_FEA_ACT_UID;
09766
09767 private global::System.Data.DataColumn columnWSEC_ALLOW;
09768
09769 private global::System.Data.DataColumn columnWSEC_DENY;
09770
09771 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09772 public CategoryPermissionsDataTable() {
09773 this.TableName = "CategoryPermissions";
09774 this.BeginInit();
09775 this.InitClass();
09776 this.EndInit();
09777 }
09778
09779 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09780 internal CategoryPermissionsDataTable(global::System.Data.DataTable table) {
09781 this.TableName = table.TableName;
09782 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
09783 this.CaseSensitive = table.CaseSensitive;
09784 }
09785 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
09786 this.Locale = table.Locale;
09787 }
09788 if ((table.Namespace != table.DataSet.Namespace)) {
09789 this.Namespace = table.Namespace;
09790 }
09791 this.Prefix = table.Prefix;
09792 this.MinimumCapacity = table.MinimumCapacity;
09793 }
09794
09795 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09796 protected CategoryPermissionsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
09797 base(info, context) {
09798 this.InitVars();
09799 }
09800
09801 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09802 public global::System.Data.DataColumn RES_UIDColumn {
09803 get {
09804 return this.columnRES_UID;
09805 }
09806 }
09807
09808 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09809 public global::System.Data.DataColumn WSEC_CAT_UIDColumn {
09810 get {
09811 return this.columnWSEC_CAT_UID;
09812 }
09813 }
09814
09815 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09816 public global::System.Data.DataColumn WSEC_FEA_ACT_UIDColumn {
09817 get {
09818 return this.columnWSEC_FEA_ACT_UID;
09819 }
09820 }
09821
09822 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09823 public global::System.Data.DataColumn WSEC_ALLOWColumn {
09824 get {
09825 return this.columnWSEC_ALLOW;
09826 }
09827 }
09828
09829 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09830 public global::System.Data.DataColumn WSEC_DENYColumn {
09831 get {
09832 return this.columnWSEC_DENY;
09833 }
09834 }
09835
09836 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09837 [global::System.ComponentModel.Browsable(false)]
09838 public int Count {
09839 get {
09840 return this.Rows.Count;
09841 }
09842 }
09843
09844 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09845 public CategoryPermissionsRow this[int index] {
09846 get {
09847 return ((CategoryPermissionsRow)(this.Rows[index]));
09848 }
09849 }
09850
09851 public event CategoryPermissionsRowChangeEventHandler CategoryPermissionsRowChanging;
09852
09853 public event CategoryPermissionsRowChangeEventHandler CategoryPermissionsRowChanged;
09854
09855 public event CategoryPermissionsRowChangeEventHandler CategoryPermissionsRowDeleting;
09856
09857 public event CategoryPermissionsRowChangeEventHandler CategoryPermissionsRowDeleted;
09858
09859 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09860 public void AddCategoryPermissionsRow(CategoryPermissionsRow row) {
09861 this.Rows.Add(row);
09862 }
09863
09864 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09865 public CategoryPermissionsRow AddCategoryPermissionsRow(System.Guid RES_UID, System.Guid WSEC_CAT_UID, System.Guid WSEC_FEA_ACT_UID, bool WSEC_ALLOW, bool WSEC_DENY) {
09866 CategoryPermissionsRow rowCategoryPermissionsRow = ((CategoryPermissionsRow)(this.NewRow()));
09867 object[] columnValuesArray = new object[] {
09868 RES_UID,
09869 WSEC_CAT_UID,
09870 WSEC_FEA_ACT_UID,
09871 WSEC_ALLOW,
09872 WSEC_DENY};
09873 rowCategoryPermissionsRow.ItemArray = columnValuesArray;
09874 this.Rows.Add(rowCategoryPermissionsRow);
09875 return rowCategoryPermissionsRow;
09876 }
09877
09878 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09879 public CategoryPermissionsRow FindByWSEC_CAT_UIDWSEC_FEA_ACT_UIDRES_UID(System.Guid WSEC_CAT_UID, System.Guid WSEC_FEA_ACT_UID, System.Guid RES_UID) {
09880 return ((CategoryPermissionsRow)(this.Rows.Find(new object[] {
09881 WSEC_CAT_UID,
09882 WSEC_FEA_ACT_UID,
09883 RES_UID})));
09884 }
09885
09886 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09887 public virtual global::System.Collections.IEnumerator GetEnumerator() {
09888 return this.Rows.GetEnumerator();
09889 }
09890
09891 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09892 public override global::System.Data.DataTable Clone() {
09893 CategoryPermissionsDataTable cln = ((CategoryPermissionsDataTable)(base.Clone()));
09894 cln.InitVars();
09895 return cln;
09896 }
09897
09898 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09899 protected override global::System.Data.DataTable CreateInstance() {
09900 return new CategoryPermissionsDataTable();
09901 }
09902
09903 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09904 internal void InitVars() {
09905 this.columnRES_UID = base.Columns["RES_UID"];
09906 this.columnWSEC_CAT_UID = base.Columns["WSEC_CAT_UID"];
09907 this.columnWSEC_FEA_ACT_UID = base.Columns["WSEC_FEA_ACT_UID"];
09908 this.columnWSEC_ALLOW = base.Columns["WSEC_ALLOW"];
09909 this.columnWSEC_DENY = base.Columns["WSEC_DENY"];
09910 }
09911
09912 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09913 private void InitClass() {
09914 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09915 base.Columns.Add(this.columnRES_UID);
09916 this.columnWSEC_CAT_UID = new global::System.Data.DataColumn("WSEC_CAT_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09917 base.Columns.Add(this.columnWSEC_CAT_UID);
09918 this.columnWSEC_FEA_ACT_UID = new global::System.Data.DataColumn("WSEC_FEA_ACT_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
09919 base.Columns.Add(this.columnWSEC_FEA_ACT_UID);
09920 this.columnWSEC_ALLOW = new global::System.Data.DataColumn("WSEC_ALLOW", typeof(bool), null, global::System.Data.MappingType.Element);
09921 base.Columns.Add(this.columnWSEC_ALLOW);
09922 this.columnWSEC_DENY = new global::System.Data.DataColumn("WSEC_DENY", typeof(bool), null, global::System.Data.MappingType.Element);
09923 base.Columns.Add(this.columnWSEC_DENY);
09924 this.Constraints.Add(new global::System.Data.UniqueConstraint("CategoryPermissionsPrimaryKey", new global::System.Data.DataColumn[] {
09925 this.columnWSEC_CAT_UID,
09926 this.columnWSEC_FEA_ACT_UID,
09927 this.columnRES_UID}, true));
09928 this.columnRES_UID.AllowDBNull = false;
09929 this.columnWSEC_CAT_UID.AllowDBNull = false;
09930 this.columnWSEC_FEA_ACT_UID.AllowDBNull = false;
09931 this.columnWSEC_ALLOW.AllowDBNull = false;
09932 this.columnWSEC_ALLOW.DefaultValue = ((bool)(false));
09933 this.columnWSEC_DENY.AllowDBNull = false;
09934 this.columnWSEC_DENY.DefaultValue = ((bool)(false));
09935 }
09936
09937 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09938 public CategoryPermissionsRow NewCategoryPermissionsRow() {
09939 return ((CategoryPermissionsRow)(this.NewRow()));
09940 }
09941
09942 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09943 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
09944 return new CategoryPermissionsRow(builder);
09945 }
09946
09947 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09948 protected override global::System.Type GetRowType() {
09949 return typeof(CategoryPermissionsRow);
09950 }
09951
09952 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09953 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
09954 base.OnRowChanged(e);
09955 if ((this.CategoryPermissionsRowChanged != null)) {
09956 this.CategoryPermissionsRowChanged(this, new CategoryPermissionsRowChangeEvent(((CategoryPermissionsRow)(e.Row)), e.Action));
09957 }
09958 }
09959
09960 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09961 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
09962 base.OnRowChanging(e);
09963 if ((this.CategoryPermissionsRowChanging != null)) {
09964 this.CategoryPermissionsRowChanging(this, new CategoryPermissionsRowChangeEvent(((CategoryPermissionsRow)(e.Row)), e.Action));
09965 }
09966 }
09967
09968 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09969 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
09970 base.OnRowDeleted(e);
09971 if ((this.CategoryPermissionsRowDeleted != null)) {
09972 this.CategoryPermissionsRowDeleted(this, new CategoryPermissionsRowChangeEvent(((CategoryPermissionsRow)(e.Row)), e.Action));
09973 }
09974 }
09975
09976 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09977 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
09978 base.OnRowDeleting(e);
09979 if ((this.CategoryPermissionsRowDeleting != null)) {
09980 this.CategoryPermissionsRowDeleting(this, new CategoryPermissionsRowChangeEvent(((CategoryPermissionsRow)(e.Row)), e.Action));
09981 }
09982 }
09983
09984 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09985 public void RemoveCategoryPermissionsRow(CategoryPermissionsRow row) {
09986 this.Rows.Remove(row);
09987 }
09988
09989 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
09990 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
09991 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
09992 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
09993 ResourceAuthorizationDataSet ds = new ResourceAuthorizationDataSet();
09994 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
09995 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
09996 any1.MinOccurs = new decimal(0);
09997 any1.MaxOccurs = decimal.MaxValue;
09998 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
09999 sequence.Items.Add(any1);
10000 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
10001 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
10002 any2.MinOccurs = new decimal(1);
10003 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
10004 sequence.Items.Add(any2);
10005 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
10006 attribute1.Name = "namespace";
10007 attribute1.FixedValue = ds.Namespace;
10008 type.Attributes.Add(attribute1);
10009 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
10010 attribute2.Name = "tableTypeName";
10011 attribute2.FixedValue = "CategoryPermissionsDataTable";
10012 type.Attributes.Add(attribute2);
10013 type.Particle = sequence;
10014 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
10015 if (xs.Contains(dsSchema.TargetNamespace)) {
10016 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
10017 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
10018 try {
10019 global::System.Xml.Schema.XmlSchema schema = null;
10020 dsSchema.Write(s1);
10021 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
10022 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
10023 s2.SetLength(0);
10024 schema.Write(s2);
10025 if ((s1.Length == s2.Length)) {
10026 s1.Position = 0;
10027 s2.Position = 0;
10028 for (; ((s1.Position != s1.Length)
10029 && (s1.ReadByte() == s2.ReadByte())); ) {
10030 ;
10031 }
10032 if ((s1.Position == s1.Length)) {
10033 return type;
10034 }
10035 }
10036 }
10037 }
10038 finally {
10039 if ((s1 != null)) {
10040 s1.Close();
10041 }
10042 if ((s2 != null)) {
10043 s2.Close();
10044 }
10045 }
10046 }
10047 xs.Add(dsSchema);
10048 return type;
10049 }
10050 }
10051
10052
10053
10054
10055 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10056 [global::System.Serializable()]
10057 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
10058 public partial class GlobalPermissionsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
10059
10060 private global::System.Data.DataColumn columnRES_UID;
10061
10062 private global::System.Data.DataColumn columnWSEC_FEA_ACT_UID;
10063
10064 private global::System.Data.DataColumn columnWSEC_ALLOW;
10065
10066 private global::System.Data.DataColumn columnWSEC_DENY;
10067
10068 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10069 public GlobalPermissionsDataTable() {
10070 this.TableName = "GlobalPermissions";
10071 this.BeginInit();
10072 this.InitClass();
10073 this.EndInit();
10074 }
10075
10076 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10077 internal GlobalPermissionsDataTable(global::System.Data.DataTable table) {
10078 this.TableName = table.TableName;
10079 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
10080 this.CaseSensitive = table.CaseSensitive;
10081 }
10082 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
10083 this.Locale = table.Locale;
10084 }
10085 if ((table.Namespace != table.DataSet.Namespace)) {
10086 this.Namespace = table.Namespace;
10087 }
10088 this.Prefix = table.Prefix;
10089 this.MinimumCapacity = table.MinimumCapacity;
10090 }
10091
10092 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10093 protected GlobalPermissionsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
10094 base(info, context) {
10095 this.InitVars();
10096 }
10097
10098 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10099 public global::System.Data.DataColumn RES_UIDColumn {
10100 get {
10101 return this.columnRES_UID;
10102 }
10103 }
10104
10105 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10106 public global::System.Data.DataColumn WSEC_FEA_ACT_UIDColumn {
10107 get {
10108 return this.columnWSEC_FEA_ACT_UID;
10109 }
10110 }
10111
10112 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10113 public global::System.Data.DataColumn WSEC_ALLOWColumn {
10114 get {
10115 return this.columnWSEC_ALLOW;
10116 }
10117 }
10118
10119 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10120 public global::System.Data.DataColumn WSEC_DENYColumn {
10121 get {
10122 return this.columnWSEC_DENY;
10123 }
10124 }
10125
10126 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10127 [global::System.ComponentModel.Browsable(false)]
10128 public int Count {
10129 get {
10130 return this.Rows.Count;
10131 }
10132 }
10133
10134 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10135 public GlobalPermissionsRow this[int index] {
10136 get {
10137 return ((GlobalPermissionsRow)(this.Rows[index]));
10138 }
10139 }
10140
10141 public event GlobalPermissionsRowChangeEventHandler GlobalPermissionsRowChanging;
10142
10143 public event GlobalPermissionsRowChangeEventHandler GlobalPermissionsRowChanged;
10144
10145 public event GlobalPermissionsRowChangeEventHandler GlobalPermissionsRowDeleting;
10146
10147 public event GlobalPermissionsRowChangeEventHandler GlobalPermissionsRowDeleted;
10148
10149 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10150 public void AddGlobalPermissionsRow(GlobalPermissionsRow row) {
10151 this.Rows.Add(row);
10152 }
10153
10154 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10155 public GlobalPermissionsRow AddGlobalPermissionsRow(System.Guid RES_UID, System.Guid WSEC_FEA_ACT_UID, bool WSEC_ALLOW, bool WSEC_DENY) {
10156 GlobalPermissionsRow rowGlobalPermissionsRow = ((GlobalPermissionsRow)(this.NewRow()));
10157 object[] columnValuesArray = new object[] {
10158 RES_UID,
10159 WSEC_FEA_ACT_UID,
10160 WSEC_ALLOW,
10161 WSEC_DENY};
10162 rowGlobalPermissionsRow.ItemArray = columnValuesArray;
10163 this.Rows.Add(rowGlobalPermissionsRow);
10164 return rowGlobalPermissionsRow;
10165 }
10166
10167 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10168 public GlobalPermissionsRow FindByWSEC_FEA_ACT_UIDRES_UID(System.Guid WSEC_FEA_ACT_UID, System.Guid RES_UID) {
10169 return ((GlobalPermissionsRow)(this.Rows.Find(new object[] {
10170 WSEC_FEA_ACT_UID,
10171 RES_UID})));
10172 }
10173
10174 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10175 public virtual global::System.Collections.IEnumerator GetEnumerator() {
10176 return this.Rows.GetEnumerator();
10177 }
10178
10179 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10180 public override global::System.Data.DataTable Clone() {
10181 GlobalPermissionsDataTable cln = ((GlobalPermissionsDataTable)(base.Clone()));
10182 cln.InitVars();
10183 return cln;
10184 }
10185
10186 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10187 protected override global::System.Data.DataTable CreateInstance() {
10188 return new GlobalPermissionsDataTable();
10189 }
10190
10191 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10192 internal void InitVars() {
10193 this.columnRES_UID = base.Columns["RES_UID"];
10194 this.columnWSEC_FEA_ACT_UID = base.Columns["WSEC_FEA_ACT_UID"];
10195 this.columnWSEC_ALLOW = base.Columns["WSEC_ALLOW"];
10196 this.columnWSEC_DENY = base.Columns["WSEC_DENY"];
10197 }
10198
10199 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10200 private void InitClass() {
10201 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
10202 base.Columns.Add(this.columnRES_UID);
10203 this.columnWSEC_FEA_ACT_UID = new global::System.Data.DataColumn("WSEC_FEA_ACT_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
10204 base.Columns.Add(this.columnWSEC_FEA_ACT_UID);
10205 this.columnWSEC_ALLOW = new global::System.Data.DataColumn("WSEC_ALLOW", typeof(bool), null, global::System.Data.MappingType.Element);
10206 base.Columns.Add(this.columnWSEC_ALLOW);
10207 this.columnWSEC_DENY = new global::System.Data.DataColumn("WSEC_DENY", typeof(bool), null, global::System.Data.MappingType.Element);
10208 base.Columns.Add(this.columnWSEC_DENY);
10209 this.Constraints.Add(new global::System.Data.UniqueConstraint("GlobalPermissionsPrimaryKey", new global::System.Data.DataColumn[] {
10210 this.columnWSEC_FEA_ACT_UID,
10211 this.columnRES_UID}, true));
10212 this.columnRES_UID.AllowDBNull = false;
10213 this.columnWSEC_FEA_ACT_UID.AllowDBNull = false;
10214 this.columnWSEC_ALLOW.AllowDBNull = false;
10215 this.columnWSEC_ALLOW.DefaultValue = ((bool)(false));
10216 this.columnWSEC_DENY.AllowDBNull = false;
10217 this.columnWSEC_DENY.DefaultValue = ((bool)(false));
10218 }
10219
10220 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10221 public GlobalPermissionsRow NewGlobalPermissionsRow() {
10222 return ((GlobalPermissionsRow)(this.NewRow()));
10223 }
10224
10225 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10226 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
10227 return new GlobalPermissionsRow(builder);
10228 }
10229
10230 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10231 protected override global::System.Type GetRowType() {
10232 return typeof(GlobalPermissionsRow);
10233 }
10234
10235 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10236 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
10237 base.OnRowChanged(e);
10238 if ((this.GlobalPermissionsRowChanged != null)) {
10239 this.GlobalPermissionsRowChanged(this, new GlobalPermissionsRowChangeEvent(((GlobalPermissionsRow)(e.Row)), e.Action));
10240 }
10241 }
10242
10243 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10244 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
10245 base.OnRowChanging(e);
10246 if ((this.GlobalPermissionsRowChanging != null)) {
10247 this.GlobalPermissionsRowChanging(this, new GlobalPermissionsRowChangeEvent(((GlobalPermissionsRow)(e.Row)), e.Action));
10248 }
10249 }
10250
10251 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10252 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
10253 base.OnRowDeleted(e);
10254 if ((this.GlobalPermissionsRowDeleted != null)) {
10255 this.GlobalPermissionsRowDeleted(this, new GlobalPermissionsRowChangeEvent(((GlobalPermissionsRow)(e.Row)), e.Action));
10256 }
10257 }
10258
10259 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10260 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
10261 base.OnRowDeleting(e);
10262 if ((this.GlobalPermissionsRowDeleting != null)) {
10263 this.GlobalPermissionsRowDeleting(this, new GlobalPermissionsRowChangeEvent(((GlobalPermissionsRow)(e.Row)), e.Action));
10264 }
10265 }
10266
10267 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10268 public void RemoveGlobalPermissionsRow(GlobalPermissionsRow row) {
10269 this.Rows.Remove(row);
10270 }
10271
10272 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10273 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
10274 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
10275 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
10276 ResourceAuthorizationDataSet ds = new ResourceAuthorizationDataSet();
10277 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
10278 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
10279 any1.MinOccurs = new decimal(0);
10280 any1.MaxOccurs = decimal.MaxValue;
10281 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
10282 sequence.Items.Add(any1);
10283 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
10284 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
10285 any2.MinOccurs = new decimal(1);
10286 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
10287 sequence.Items.Add(any2);
10288 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
10289 attribute1.Name = "namespace";
10290 attribute1.FixedValue = ds.Namespace;
10291 type.Attributes.Add(attribute1);
10292 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
10293 attribute2.Name = "tableTypeName";
10294 attribute2.FixedValue = "GlobalPermissionsDataTable";
10295 type.Attributes.Add(attribute2);
10296 type.Particle = sequence;
10297 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
10298 if (xs.Contains(dsSchema.TargetNamespace)) {
10299 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
10300 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
10301 try {
10302 global::System.Xml.Schema.XmlSchema schema = null;
10303 dsSchema.Write(s1);
10304 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
10305 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
10306 s2.SetLength(0);
10307 schema.Write(s2);
10308 if ((s1.Length == s2.Length)) {
10309 s1.Position = 0;
10310 s2.Position = 0;
10311 for (; ((s1.Position != s1.Length)
10312 && (s1.ReadByte() == s2.ReadByte())); ) {
10313 ;
10314 }
10315 if ((s1.Position == s1.Length)) {
10316 return type;
10317 }
10318 }
10319 }
10320 }
10321 finally {
10322 if ((s1 != null)) {
10323 s1.Close();
10324 }
10325 if ((s2 != null)) {
10326 s2.Close();
10327 }
10328 }
10329 }
10330 xs.Add(dsSchema);
10331 return type;
10332 }
10333 }
10334
10335
10336
10337
10338 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10339 [global::System.Serializable()]
10340 [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
10341 public partial class GroupMembershipsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
10342
10343 private global::System.Data.DataColumn columnRES_UID;
10344
10345 private global::System.Data.DataColumn columnWSEC_GRP_UID;
10346
10347 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10348 public GroupMembershipsDataTable() {
10349 this.TableName = "GroupMemberships";
10350 this.BeginInit();
10351 this.InitClass();
10352 this.EndInit();
10353 }
10354
10355 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10356 internal GroupMembershipsDataTable(global::System.Data.DataTable table) {
10357 this.TableName = table.TableName;
10358 if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
10359 this.CaseSensitive = table.CaseSensitive;
10360 }
10361 if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
10362 this.Locale = table.Locale;
10363 }
10364 if ((table.Namespace != table.DataSet.Namespace)) {
10365 this.Namespace = table.Namespace;
10366 }
10367 this.Prefix = table.Prefix;
10368 this.MinimumCapacity = table.MinimumCapacity;
10369 }
10370
10371 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10372 protected GroupMembershipsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
10373 base(info, context) {
10374 this.InitVars();
10375 }
10376
10377 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10378 public global::System.Data.DataColumn RES_UIDColumn {
10379 get {
10380 return this.columnRES_UID;
10381 }
10382 }
10383
10384 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10385 public global::System.Data.DataColumn WSEC_GRP_UIDColumn {
10386 get {
10387 return this.columnWSEC_GRP_UID;
10388 }
10389 }
10390
10391 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10392 [global::System.ComponentModel.Browsable(false)]
10393 public int Count {
10394 get {
10395 return this.Rows.Count;
10396 }
10397 }
10398
10399 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10400 public GroupMembershipsRow this[int index] {
10401 get {
10402 return ((GroupMembershipsRow)(this.Rows[index]));
10403 }
10404 }
10405
10406 public event GroupMembershipsRowChangeEventHandler GroupMembershipsRowChanging;
10407
10408 public event GroupMembershipsRowChangeEventHandler GroupMembershipsRowChanged;
10409
10410 public event GroupMembershipsRowChangeEventHandler GroupMembershipsRowDeleting;
10411
10412 public event GroupMembershipsRowChangeEventHandler GroupMembershipsRowDeleted;
10413
10414 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10415 public void AddGroupMembershipsRow(GroupMembershipsRow row) {
10416 this.Rows.Add(row);
10417 }
10418
10419 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10420 public GroupMembershipsRow AddGroupMembershipsRow(System.Guid RES_UID, System.Guid WSEC_GRP_UID) {
10421 GroupMembershipsRow rowGroupMembershipsRow = ((GroupMembershipsRow)(this.NewRow()));
10422 object[] columnValuesArray = new object[] {
10423 RES_UID,
10424 WSEC_GRP_UID};
10425 rowGroupMembershipsRow.ItemArray = columnValuesArray;
10426 this.Rows.Add(rowGroupMembershipsRow);
10427 return rowGroupMembershipsRow;
10428 }
10429
10430 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10431 public GroupMembershipsRow FindByRES_UIDWSEC_GRP_UID(System.Guid RES_UID, System.Guid WSEC_GRP_UID) {
10432 return ((GroupMembershipsRow)(this.Rows.Find(new object[] {
10433 RES_UID,
10434 WSEC_GRP_UID})));
10435 }
10436
10437 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10438 public virtual global::System.Collections.IEnumerator GetEnumerator() {
10439 return this.Rows.GetEnumerator();
10440 }
10441
10442 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10443 public override global::System.Data.DataTable Clone() {
10444 GroupMembershipsDataTable cln = ((GroupMembershipsDataTable)(base.Clone()));
10445 cln.InitVars();
10446 return cln;
10447 }
10448
10449 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10450 protected override global::System.Data.DataTable CreateInstance() {
10451 return new GroupMembershipsDataTable();
10452 }
10453
10454 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10455 internal void InitVars() {
10456 this.columnRES_UID = base.Columns["RES_UID"];
10457 this.columnWSEC_GRP_UID = base.Columns["WSEC_GRP_UID"];
10458 }
10459
10460 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10461 private void InitClass() {
10462 this.columnRES_UID = new global::System.Data.DataColumn("RES_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
10463 base.Columns.Add(this.columnRES_UID);
10464 this.columnWSEC_GRP_UID = new global::System.Data.DataColumn("WSEC_GRP_UID", typeof(global::System.Guid), null, global::System.Data.MappingType.Element);
10465 base.Columns.Add(this.columnWSEC_GRP_UID);
10466 this.Constraints.Add(new global::System.Data.UniqueConstraint("GroupMembershipsPrimaryKey", new global::System.Data.DataColumn[] {
10467 this.columnRES_UID,
10468 this.columnWSEC_GRP_UID}, true));
10469 this.columnRES_UID.AllowDBNull = false;
10470 this.columnWSEC_GRP_UID.AllowDBNull = false;
10471 }
10472
10473 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10474 public GroupMembershipsRow NewGroupMembershipsRow() {
10475 return ((GroupMembershipsRow)(this.NewRow()));
10476 }
10477
10478 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10479 protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
10480 return new GroupMembershipsRow(builder);
10481 }
10482
10483 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10484 protected override global::System.Type GetRowType() {
10485 return typeof(GroupMembershipsRow);
10486 }
10487
10488 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10489 protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
10490 base.OnRowChanged(e);
10491 if ((this.GroupMembershipsRowChanged != null)) {
10492 this.GroupMembershipsRowChanged(this, new GroupMembershipsRowChangeEvent(((GroupMembershipsRow)(e.Row)), e.Action));
10493 }
10494 }
10495
10496 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10497 protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
10498 base.OnRowChanging(e);
10499 if ((this.GroupMembershipsRowChanging != null)) {
10500 this.GroupMembershipsRowChanging(this, new GroupMembershipsRowChangeEvent(((GroupMembershipsRow)(e.Row)), e.Action));
10501 }
10502 }
10503
10504 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10505 protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
10506 base.OnRowDeleted(e);
10507 if ((this.GroupMembershipsRowDeleted != null)) {
10508 this.GroupMembershipsRowDeleted(this, new GroupMembershipsRowChangeEvent(((GroupMembershipsRow)(e.Row)), e.Action));
10509 }
10510 }
10511
10512 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10513 protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
10514 base.OnRowDeleting(e);
10515 if ((this.GroupMembershipsRowDeleting != null)) {
10516 this.GroupMembershipsRowDeleting(this, new GroupMembershipsRowChangeEvent(((GroupMembershipsRow)(e.Row)), e.Action));
10517 }
10518 }
10519
10520 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10521 public void RemoveGroupMembershipsRow(GroupMembershipsRow row) {
10522 this.Rows.Remove(row);
10523 }
10524
10525 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10526 public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
10527 global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
10528 global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
10529 ResourceAuthorizationDataSet ds = new ResourceAuthorizationDataSet();
10530 global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
10531 any1.Namespace = "http://www.w3.org/2001/XMLSchema";
10532 any1.MinOccurs = new decimal(0);
10533 any1.MaxOccurs = decimal.MaxValue;
10534 any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
10535 sequence.Items.Add(any1);
10536 global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
10537 any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
10538 any2.MinOccurs = new decimal(1);
10539 any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
10540 sequence.Items.Add(any2);
10541 global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
10542 attribute1.Name = "namespace";
10543 attribute1.FixedValue = ds.Namespace;
10544 type.Attributes.Add(attribute1);
10545 global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
10546 attribute2.Name = "tableTypeName";
10547 attribute2.FixedValue = "GroupMembershipsDataTable";
10548 type.Attributes.Add(attribute2);
10549 type.Particle = sequence;
10550 global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
10551 if (xs.Contains(dsSchema.TargetNamespace)) {
10552 global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
10553 global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
10554 try {
10555 global::System.Xml.Schema.XmlSchema schema = null;
10556 dsSchema.Write(s1);
10557 for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
10558 schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
10559 s2.SetLength(0);
10560 schema.Write(s2);
10561 if ((s1.Length == s2.Length)) {
10562 s1.Position = 0;
10563 s2.Position = 0;
10564 for (; ((s1.Position != s1.Length)
10565 && (s1.ReadByte() == s2.ReadByte())); ) {
10566 ;
10567 }
10568 if ((s1.Position == s1.Length)) {
10569 return type;
10570 }
10571 }
10572 }
10573 }
10574 finally {
10575 if ((s1 != null)) {
10576 s1.Close();
10577 }
10578 if ((s2 != null)) {
10579 s2.Close();
10580 }
10581 }
10582 }
10583 xs.Add(dsSchema);
10584 return type;
10585 }
10586 }
10587
10588
10589
10590
10591 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10592 public partial class ResourcesRow : global::System.Data.DataRow {
10593
10594 private ResourcesDataTable tableResources;
10595
10596 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10597 internal ResourcesRow(global::System.Data.DataRowBuilder rb) :
10598 base(rb) {
10599 this.tableResources = ((ResourcesDataTable)(this.Table));
10600 }
10601
10602 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10603 public System.Guid RES_UID {
10604 get {
10605 return ((global::System.Guid)(this[this.tableResources.RES_UIDColumn]));
10606 }
10607 set {
10608 this[this.tableResources.RES_UIDColumn] = value;
10609 }
10610 }
10611
10612 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10613 public string WRES_ACCOUNT {
10614 get {
10615 try {
10616 return ((string)(this[this.tableResources.WRES_ACCOUNTColumn]));
10617 }
10618 catch (global::System.InvalidCastException e) {
10619 throw new global::System.Data.StrongTypingException("The value for column \'WRES_ACCOUNT\' in table \'Resources\' is DBNull.", e);
10620 }
10621 }
10622 set {
10623 this[this.tableResources.WRES_ACCOUNTColumn] = value;
10624 }
10625 }
10626
10627 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10628 public bool RES_IS_WINDOWS_USER {
10629 get {
10630 try {
10631 return ((bool)(this[this.tableResources.RES_IS_WINDOWS_USERColumn]));
10632 }
10633 catch (global::System.InvalidCastException e) {
10634 throw new global::System.Data.StrongTypingException("The value for column \'RES_IS_WINDOWS_USER\' in table \'Resources\' is DBNull.", e);
10635 }
10636 }
10637 set {
10638 this[this.tableResources.RES_IS_WINDOWS_USERColumn] = value;
10639 }
10640 }
10641
10642 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10643 public bool RES_PREVENT_ADSYNC {
10644 get {
10645 try {
10646 return ((bool)(this[this.tableResources.RES_PREVENT_ADSYNCColumn]));
10647 }
10648 catch (global::System.InvalidCastException e) {
10649 throw new global::System.Data.StrongTypingException("The value for column \'RES_PREVENT_ADSYNC\' in table \'Resources\' is DBNull.", e);
10650 }
10651 }
10652 set {
10653 this[this.tableResources.RES_PREVENT_ADSYNCColumn] = value;
10654 }
10655 }
10656
10657 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10658 public System.Guid WRES_AD_GUID {
10659 get {
10660 try {
10661 return ((global::System.Guid)(this[this.tableResources.WRES_AD_GUIDColumn]));
10662 }
10663 catch (global::System.InvalidCastException e) {
10664 throw new global::System.Data.StrongTypingException("The value for column \'WRES_AD_GUID\' in table \'Resources\' is DBNull.", e);
10665 }
10666 }
10667 set {
10668 this[this.tableResources.WRES_AD_GUIDColumn] = value;
10669 }
10670 }
10671
10672 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10673 public bool IsWRES_ACCOUNTNull() {
10674 return this.IsNull(this.tableResources.WRES_ACCOUNTColumn);
10675 }
10676
10677 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10678 public void SetWRES_ACCOUNTNull() {
10679 this[this.tableResources.WRES_ACCOUNTColumn] = global::System.Convert.DBNull;
10680 }
10681
10682 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10683 public bool IsRES_IS_WINDOWS_USERNull() {
10684 return this.IsNull(this.tableResources.RES_IS_WINDOWS_USERColumn);
10685 }
10686
10687 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10688 public void SetRES_IS_WINDOWS_USERNull() {
10689 this[this.tableResources.RES_IS_WINDOWS_USERColumn] = global::System.Convert.DBNull;
10690 }
10691
10692 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10693 public bool IsRES_PREVENT_ADSYNCNull() {
10694 return this.IsNull(this.tableResources.RES_PREVENT_ADSYNCColumn);
10695 }
10696
10697 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10698 public void SetRES_PREVENT_ADSYNCNull() {
10699 this[this.tableResources.RES_PREVENT_ADSYNCColumn] = global::System.Convert.DBNull;
10700 }
10701
10702 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10703 public bool IsWRES_AD_GUIDNull() {
10704 return this.IsNull(this.tableResources.WRES_AD_GUIDColumn);
10705 }
10706
10707 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10708 public void SetWRES_AD_GUIDNull() {
10709 this[this.tableResources.WRES_AD_GUIDColumn] = global::System.Convert.DBNull;
10710 }
10711 }
10712
10713
10714
10715
10716 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10717 public partial class SecurityPrincipleCategoryRelationsRow : global::System.Data.DataRow {
10718
10719 private SecurityPrincipleCategoryRelationsDataTable tableSecurityPrincipleCategoryRelations;
10720
10721 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10722 internal SecurityPrincipleCategoryRelationsRow(global::System.Data.DataRowBuilder rb) :
10723 base(rb) {
10724 this.tableSecurityPrincipleCategoryRelations = ((SecurityPrincipleCategoryRelationsDataTable)(this.Table));
10725 }
10726
10727 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10728 public System.Guid RES_UID {
10729 get {
10730 return ((global::System.Guid)(this[this.tableSecurityPrincipleCategoryRelations.RES_UIDColumn]));
10731 }
10732 set {
10733 this[this.tableSecurityPrincipleCategoryRelations.RES_UIDColumn] = value;
10734 }
10735 }
10736
10737 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10738 public System.Guid WSEC_CAT_UID {
10739 get {
10740 return ((global::System.Guid)(this[this.tableSecurityPrincipleCategoryRelations.WSEC_CAT_UIDColumn]));
10741 }
10742 set {
10743 this[this.tableSecurityPrincipleCategoryRelations.WSEC_CAT_UIDColumn] = value;
10744 }
10745 }
10746 }
10747
10748
10749
10750
10751 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10752 public partial class CategoryPermissionsRow : global::System.Data.DataRow {
10753
10754 private CategoryPermissionsDataTable tableCategoryPermissions;
10755
10756 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10757 internal CategoryPermissionsRow(global::System.Data.DataRowBuilder rb) :
10758 base(rb) {
10759 this.tableCategoryPermissions = ((CategoryPermissionsDataTable)(this.Table));
10760 }
10761
10762 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10763 public System.Guid RES_UID {
10764 get {
10765 return ((global::System.Guid)(this[this.tableCategoryPermissions.RES_UIDColumn]));
10766 }
10767 set {
10768 this[this.tableCategoryPermissions.RES_UIDColumn] = value;
10769 }
10770 }
10771
10772 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10773 public System.Guid WSEC_CAT_UID {
10774 get {
10775 return ((global::System.Guid)(this[this.tableCategoryPermissions.WSEC_CAT_UIDColumn]));
10776 }
10777 set {
10778 this[this.tableCategoryPermissions.WSEC_CAT_UIDColumn] = value;
10779 }
10780 }
10781
10782 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10783 public System.Guid WSEC_FEA_ACT_UID {
10784 get {
10785 return ((global::System.Guid)(this[this.tableCategoryPermissions.WSEC_FEA_ACT_UIDColumn]));
10786 }
10787 set {
10788 this[this.tableCategoryPermissions.WSEC_FEA_ACT_UIDColumn] = value;
10789 }
10790 }
10791
10792 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10793 public bool WSEC_ALLOW {
10794 get {
10795 return ((bool)(this[this.tableCategoryPermissions.WSEC_ALLOWColumn]));
10796 }
10797 set {
10798 this[this.tableCategoryPermissions.WSEC_ALLOWColumn] = value;
10799 }
10800 }
10801
10802 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10803 public bool WSEC_DENY {
10804 get {
10805 return ((bool)(this[this.tableCategoryPermissions.WSEC_DENYColumn]));
10806 }
10807 set {
10808 this[this.tableCategoryPermissions.WSEC_DENYColumn] = value;
10809 }
10810 }
10811 }
10812
10813
10814
10815
10816 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10817 public partial class GlobalPermissionsRow : global::System.Data.DataRow {
10818
10819 private GlobalPermissionsDataTable tableGlobalPermissions;
10820
10821 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10822 internal GlobalPermissionsRow(global::System.Data.DataRowBuilder rb) :
10823 base(rb) {
10824 this.tableGlobalPermissions = ((GlobalPermissionsDataTable)(this.Table));
10825 }
10826
10827 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10828 public System.Guid RES_UID {
10829 get {
10830 return ((global::System.Guid)(this[this.tableGlobalPermissions.RES_UIDColumn]));
10831 }
10832 set {
10833 this[this.tableGlobalPermissions.RES_UIDColumn] = value;
10834 }
10835 }
10836
10837 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10838 public System.Guid WSEC_FEA_ACT_UID {
10839 get {
10840 return ((global::System.Guid)(this[this.tableGlobalPermissions.WSEC_FEA_ACT_UIDColumn]));
10841 }
10842 set {
10843 this[this.tableGlobalPermissions.WSEC_FEA_ACT_UIDColumn] = value;
10844 }
10845 }
10846
10847 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10848 public bool WSEC_ALLOW {
10849 get {
10850 return ((bool)(this[this.tableGlobalPermissions.WSEC_ALLOWColumn]));
10851 }
10852 set {
10853 this[this.tableGlobalPermissions.WSEC_ALLOWColumn] = value;
10854 }
10855 }
10856
10857 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10858 public bool WSEC_DENY {
10859 get {
10860 return ((bool)(this[this.tableGlobalPermissions.WSEC_DENYColumn]));
10861 }
10862 set {
10863 this[this.tableGlobalPermissions.WSEC_DENYColumn] = value;
10864 }
10865 }
10866 }
10867
10868
10869
10870
10871 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10872 public partial class GroupMembershipsRow : global::System.Data.DataRow {
10873
10874 private GroupMembershipsDataTable tableGroupMemberships;
10875
10876 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10877 internal GroupMembershipsRow(global::System.Data.DataRowBuilder rb) :
10878 base(rb) {
10879 this.tableGroupMemberships = ((GroupMembershipsDataTable)(this.Table));
10880 }
10881
10882 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10883 public System.Guid RES_UID {
10884 get {
10885 return ((global::System.Guid)(this[this.tableGroupMemberships.RES_UIDColumn]));
10886 }
10887 set {
10888 this[this.tableGroupMemberships.RES_UIDColumn] = value;
10889 }
10890 }
10891
10892 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10893 public System.Guid WSEC_GRP_UID {
10894 get {
10895 return ((global::System.Guid)(this[this.tableGroupMemberships.WSEC_GRP_UIDColumn]));
10896 }
10897 set {
10898 this[this.tableGroupMemberships.WSEC_GRP_UIDColumn] = value;
10899 }
10900 }
10901 }
10902
10903
10904
10905
10906 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10907 public class ResourcesRowChangeEvent : global::System.EventArgs {
10908
10909 private ResourcesRow eventRow;
10910
10911 private global::System.Data.DataRowAction eventAction;
10912
10913 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10914 public ResourcesRowChangeEvent(ResourcesRow row, global::System.Data.DataRowAction action) {
10915 this.eventRow = row;
10916 this.eventAction = action;
10917 }
10918
10919 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10920 public ResourcesRow Row {
10921 get {
10922 return this.eventRow;
10923 }
10924 }
10925
10926 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10927 public global::System.Data.DataRowAction Action {
10928 get {
10929 return this.eventAction;
10930 }
10931 }
10932 }
10933
10934
10935
10936
10937 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10938 public class SecurityPrincipleCategoryRelationsRowChangeEvent : global::System.EventArgs {
10939
10940 private SecurityPrincipleCategoryRelationsRow eventRow;
10941
10942 private global::System.Data.DataRowAction eventAction;
10943
10944 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10945 public SecurityPrincipleCategoryRelationsRowChangeEvent(SecurityPrincipleCategoryRelationsRow row, global::System.Data.DataRowAction action) {
10946 this.eventRow = row;
10947 this.eventAction = action;
10948 }
10949
10950 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10951 public SecurityPrincipleCategoryRelationsRow Row {
10952 get {
10953 return this.eventRow;
10954 }
10955 }
10956
10957 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10958 public global::System.Data.DataRowAction Action {
10959 get {
10960 return this.eventAction;
10961 }
10962 }
10963 }
10964
10965
10966
10967
10968 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
10969 public class CategoryPermissionsRowChangeEvent : global::System.EventArgs {
10970
10971 private CategoryPermissionsRow eventRow;
10972
10973 private global::System.Data.DataRowAction eventAction;
10974
10975 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10976 public CategoryPermissionsRowChangeEvent(CategoryPermissionsRow row, global::System.Data.DataRowAction action) {
10977 this.eventRow = row;
10978 this.eventAction = action;
10979 }
10980
10981 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10982 public CategoryPermissionsRow Row {
10983 get {
10984 return this.eventRow;
10985 }
10986 }
10987
10988 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
10989 public global::System.Data.DataRowAction Action {
10990 get {
10991 return this.eventAction;
10992 }
10993 }
10994 }
10995
10996
10997
10998
10999 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
11000 public class GlobalPermissionsRowChangeEvent : global::System.EventArgs {
11001
11002 private GlobalPermissionsRow eventRow;
11003
11004 private global::System.Data.DataRowAction eventAction;
11005
11006 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
11007 public GlobalPermissionsRowChangeEvent(GlobalPermissionsRow row, global::System.Data.DataRowAction action) {
11008 this.eventRow = row;
11009 this.eventAction = action;
11010 }
11011
11012 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
11013 public GlobalPermissionsRow Row {
11014 get {
11015 return this.eventRow;
11016 }
11017 }
11018
11019 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
11020 public global::System.Data.DataRowAction Action {
11021 get {
11022 return this.eventAction;
11023 }
11024 }
11025 }
11026
11027
11028
11029
11030 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
11031 public class GroupMembershipsRowChangeEvent : global::System.EventArgs {
11032
11033 private GroupMembershipsRow eventRow;
11034
11035 private global::System.Data.DataRowAction eventAction;
11036
11037 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
11038 public GroupMembershipsRowChangeEvent(GroupMembershipsRow row, global::System.Data.DataRowAction action) {
11039 this.eventRow = row;
11040 this.eventAction = action;
11041 }
11042
11043 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
11044 public GroupMembershipsRow Row {
11045 get {
11046 return this.eventRow;
11047 }
11048 }
11049
11050 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
11051 public global::System.Data.DataRowAction Action {
11052 get {
11053 return this.eventAction;
11054 }
11055 }
11056 }
11057 }
11058
11059
11060 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11061 public delegate void ReadResourcesCompletedEventHandler(object sender, ReadResourcesCompletedEventArgs e);
11062
11063
11064 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11065 [System.Diagnostics.DebuggerStepThroughAttribute()]
11066 [System.ComponentModel.DesignerCategoryAttribute("code")]
11067 public partial class ReadResourcesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11068
11069 private object[] results;
11070
11071 internal ReadResourcesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11072 base(exception, cancelled, userState) {
11073 this.results = results;
11074 }
11075
11076
11077 public ResourceDataSet Result {
11078 get {
11079 this.RaiseExceptionIfNecessary();
11080 return ((ResourceDataSet)(this.results[0]));
11081 }
11082 }
11083 }
11084
11085
11086 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11087 public delegate void ReadResourceAvailabilityForGridCompletedEventHandler(object sender, ReadResourceAvailabilityForGridCompletedEventArgs e);
11088
11089
11090 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11091 [System.Diagnostics.DebuggerStepThroughAttribute()]
11092 [System.ComponentModel.DesignerCategoryAttribute("code")]
11093 public partial class ReadResourceAvailabilityForGridCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11094
11095 private object[] results;
11096
11097 internal ReadResourceAvailabilityForGridCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11098 base(exception, cancelled, userState) {
11099 this.results = results;
11100 }
11101
11102
11103 public System.Data.DataSet Result {
11104 get {
11105 this.RaiseExceptionIfNecessary();
11106 return ((System.Data.DataSet)(this.results[0]));
11107 }
11108 }
11109 }
11110
11111
11112 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11113 public delegate void ReadResourceAssignmentsCompletedEventHandler(object sender, ReadResourceAssignmentsCompletedEventArgs e);
11114
11115
11116 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11117 [System.Diagnostics.DebuggerStepThroughAttribute()]
11118 [System.ComponentModel.DesignerCategoryAttribute("code")]
11119 public partial class ReadResourceAssignmentsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11120
11121 private object[] results;
11122
11123 internal ReadResourceAssignmentsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11124 base(exception, cancelled, userState) {
11125 this.results = results;
11126 }
11127
11128
11129 public ResourceAssignmentDataSet Result {
11130 get {
11131 this.RaiseExceptionIfNecessary();
11132 return ((ResourceAssignmentDataSet)(this.results[0]));
11133 }
11134 }
11135 }
11136
11137
11138 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11139 public delegate void GetResourceUidsCompletedEventHandler(object sender, GetResourceUidsCompletedEventArgs e);
11140
11141
11142 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11143 [System.Diagnostics.DebuggerStepThroughAttribute()]
11144 [System.ComponentModel.DesignerCategoryAttribute("code")]
11145 public partial class GetResourceUidsCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11146
11147 private object[] results;
11148
11149 internal GetResourceUidsCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11150 base(exception, cancelled, userState) {
11151 this.results = results;
11152 }
11153
11154
11155 public System.Guid[] Result {
11156 get {
11157 this.RaiseExceptionIfNecessary();
11158 return ((System.Guid[])(this.results[0]));
11159 }
11160 }
11161 }
11162
11163
11164 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11165 public delegate void CreateResourcesCompletedEventHandler(object sender, CreateResourcesCompletedEventArgs e);
11166
11167
11168 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11169 [System.Diagnostics.DebuggerStepThroughAttribute()]
11170 [System.ComponentModel.DesignerCategoryAttribute("code")]
11171 public partial class CreateResourcesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11172
11173 private object[] results;
11174
11175 internal CreateResourcesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11176 base(exception, cancelled, userState) {
11177 this.results = results;
11178 }
11179
11180
11181 public ResourceDataSet Result {
11182 get {
11183 this.RaiseExceptionIfNecessary();
11184 return ((ResourceDataSet)(this.results[0]));
11185 }
11186 }
11187 }
11188
11189
11190 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11191 public delegate void UpdateResourcesCompletedEventHandler(object sender, UpdateResourcesCompletedEventArgs e);
11192
11193
11194 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11195 [System.Diagnostics.DebuggerStepThroughAttribute()]
11196 [System.ComponentModel.DesignerCategoryAttribute("code")]
11197 public partial class UpdateResourcesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11198
11199 private object[] results;
11200
11201 internal UpdateResourcesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11202 base(exception, cancelled, userState) {
11203 this.results = results;
11204 }
11205
11206
11207 public ResourceDataSet Result {
11208 get {
11209 this.RaiseExceptionIfNecessary();
11210 return ((ResourceDataSet)(this.results[0]));
11211 }
11212 }
11213 }
11214
11215
11216 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11217 public delegate void DeleteResourcesCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
11218
11219
11220 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11221 public delegate void CheckOutResourcesCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
11222
11223
11224 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11225 public delegate void CheckInResourcesCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
11226
11227
11228 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11229 public delegate void ReadUserListCompletedEventHandler(object sender, ReadUserListCompletedEventArgs e);
11230
11231
11232 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11233 [System.Diagnostics.DebuggerStepThroughAttribute()]
11234 [System.ComponentModel.DesignerCategoryAttribute("code")]
11235 public partial class ReadUserListCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11236
11237 private object[] results;
11238
11239 internal ReadUserListCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11240 base(exception, cancelled, userState) {
11241 this.results = results;
11242 }
11243
11244
11245 public ResourceDataSet Result {
11246 get {
11247 this.RaiseExceptionIfNecessary();
11248 return ((ResourceDataSet)(this.results[0]));
11249 }
11250 }
11251 }
11252
11253
11254 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11255 public delegate void GetCurrentUserUidCompletedEventHandler(object sender, GetCurrentUserUidCompletedEventArgs e);
11256
11257
11258 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11259 [System.Diagnostics.DebuggerStepThroughAttribute()]
11260 [System.ComponentModel.DesignerCategoryAttribute("code")]
11261 public partial class GetCurrentUserUidCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11262
11263 private object[] results;
11264
11265 internal GetCurrentUserUidCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11266 base(exception, cancelled, userState) {
11267 this.results = results;
11268 }
11269
11270
11271 public System.Guid Result {
11272 get {
11273 this.RaiseExceptionIfNecessary();
11274 return ((System.Guid)(this.results[0]));
11275 }
11276 }
11277 }
11278
11279
11280 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11281 public delegate void ReadResourceAuthorizationCompletedEventHandler(object sender, ReadResourceAuthorizationCompletedEventArgs e);
11282
11283
11284 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11285 [System.Diagnostics.DebuggerStepThroughAttribute()]
11286 [System.ComponentModel.DesignerCategoryAttribute("code")]
11287 public partial class ReadResourceAuthorizationCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11288
11289 private object[] results;
11290
11291 internal ReadResourceAuthorizationCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11292 base(exception, cancelled, userState) {
11293 this.results = results;
11294 }
11295
11296
11297 public ResourceAuthorizationDataSet Result {
11298 get {
11299 this.RaiseExceptionIfNecessary();
11300 return ((ResourceAuthorizationDataSet)(this.results[0]));
11301 }
11302 }
11303 }
11304
11305
11306 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11307 public delegate void ReadResourceCompletedEventHandler(object sender, ReadResourceCompletedEventArgs e);
11308
11309
11310 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11311 [System.Diagnostics.DebuggerStepThroughAttribute()]
11312 [System.ComponentModel.DesignerCategoryAttribute("code")]
11313 public partial class ReadResourceCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
11314
11315 private object[] results;
11316
11317 internal ReadResourceCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
11318 base(exception, cancelled, userState) {
11319 this.results = results;
11320 }
11321
11322
11323 public ResourceDataSet Result {
11324 get {
11325 this.RaiseExceptionIfNecessary();
11326 return ((ResourceDataSet)(this.results[0]));
11327 }
11328 }
11329 }
11330
11331
11332 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11333 public delegate void SetResourceAuthorizationCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
11334
11335
11336 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11337 public delegate void ActivateResourcesCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
11338
11339
11340 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]
11341 public delegate void DeactivateResourcesCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
11342 }
11343
11344 #pragma warning restore 1591