예제 #1
0
 public OpEngineerObj()
 {
     this.Notification = null;
     this.Engineer     = null;
     this.Lead         = 0;
     this.OpSys        = 0;
 }
예제 #2
0
 public OpSurveyObj(string InternalID) : base(InternalID)
 {
     this.Notification = null;
     this.Comments     = "";
     this.Remarks      = "";
     this.SurveyDate   = DateTime.MinValue;
 }
예제 #3
0
 public OpEngineerObj(string InternalID) : base(InternalID)
 {
     this.Notification = null;
     this.Engineer     = null;
     this.Lead         = 0;
     this.OpSys        = 0;
 }
예제 #4
0
 public OpSurveyObj()
 {
     this.Notification = null;
     this.Comments     = "";
     this.Remarks      = "";
     this.SurveyDate   = DateTime.MinValue;
 }
예제 #5
0
 public OpCausesObj()
 {
     this.Notification = null;
     this.Cause        = null;
     this.Description  = "";
     this.Order        = 0;
     this.OpSys        = 0;
 }
예제 #6
0
 public OpCausesObj(string InternalID) : base(InternalID)
 {
     this.Notification = null;
     this.Cause        = null;
     this.Description  = "";
     this.Order        = 0;
     this.OpSys        = 0;
 }
예제 #7
0
 public OpSignatureObj(string InternalID) : base(InternalID)
 {
     this.Notification = null;
     this.Signature    = "";
     this.Name         = "";
     this.Department   = "";
     this.Contact      = "";
     this.Designation  = "";
 }
예제 #8
0
 public OpSignatureObj()
 {
     this.Notification = null;
     this.Signature    = "";
     this.Name         = "";
     this.Department   = "";
     this.Contact      = "";
     this.Designation  = "";
 }
예제 #9
0
 public OpDamagesObj()
 {
     this.Notification = null;
     this.Damage       = null;
     this.DamageCode   = "";
     this.Description  = "";
     this.Order        = 0;
     this.OpSys        = 0;
 }
예제 #10
0
 public OpDamagesObj(string InternalID) : base(InternalID)
 {
     this.Notification = null;
     this.Damage       = null;
     this.DamageCode   = "";
     this.Description  = "";
     this.Order        = 0;
     this.OpSys        = 0;
 }
예제 #11
0
 public OpCheckListHeaderObj(string InternalID) : base(InternalID)
 {
     this.Notification       = null;
     this.HospitalName       = "";
     this.ModelNo            = "";
     this.SN                 = "";
     this.AcquisitionModelNo = "";
     this.AcquisitionSN      = "";
     this.TreadmillModelNo   = "";
     this.TreadmillSN        = "";
     this.Department         = "";
     this.CheckListType      = "";
     this.CheckListDate      = DateTime.MinValue;
 }
예제 #12
0
 public virtual void SortByName()
 {
     for (int i = base.Count - 1; i > 0; i--)
     {
         for (int j = 0; j < i; j++)
         {
             if (this[j].NotificationNo.CompareTo(this[j + 1].NotificationNo) > 0)
             {
                 OpNotificationObj obj2 = this[j];
                 this[j]     = this[j + 1];
                 this[j + 1] = obj2;
             }
         }
     }
 }
예제 #13
0
 public OpTimeStampObj(string InternalID) : base(InternalID)
 {
     this.Notification     = null;
     this.JobDate          = DateTime.MinValue;
     this.TravelStart      = DateTime.MinValue;
     this.TravelEnd        = DateTime.MinValue;
     this.WaitingStart     = DateTime.MinValue;
     this.WaitingEnd       = DateTime.MinValue;
     this.JobStart         = DateTime.MinValue;
     this.JobEnd           = DateTime.MinValue;
     this.JobBy            = null;
     this.Travel           = 0.0;
     this.Waiting          = 0.0;
     this.Description      = "";
     this.Status           = "";
     this.OpUpdatedFromSAP = false;
     this.Shared           = false;
 }
예제 #14
0
 public OpQuotationObj(string InternalID) : base(InternalID)
 {
     this.QuotationNo     = "";
     this.Notice          = "";
     this.UserStatus      = "";
     this.Currency        = "";
     this.Incoterm2       = "";
     this.ValidFrom       = DateTime.MinValue;
     this.ValidTo         = DateTime.MinValue;
     this.QuoteDate       = DateTime.Now;
     this.Status          = 0;
     this.ValidityDays    = 0;
     this.Incoterms1      = null;
     this.Engineer        = null;
     this.PaymentTerm     = null;
     this.DeliveryTerm    = "";
     this.Attn            = "";
     this.FaxEmail        = "";
     this.CustomerName    = "";
     this.CustomerAddress = "";
     this.Notification    = null;
 }
예제 #15
0
 public OpPartObj(string InternalID) : base(InternalID)
 {
     this.Notification         = null;
     this.PartNo               = "";
     this.Unit                 = "";
     this.OldPartNo            = "";
     this.Description          = "";
     this.VehicleNo            = "";
     this.Material             = null;
     this.Quantity             = 0;
     this.Consumption          = 0;
     this.Inuser               = 0;
     this.Preset               = 0;
     this.OpSys                = 0;
     this.QuantityReserved     = 0;
     this.QuantityConsumpt     = 0;
     this.OpUpdatedFromSAP     = 0;
     this.OpConsumedFromMobile = false;
     this.OpConsumedFromSAP    = false;
     this.OpUpdatedFromMobile  = false;
     this.IsReserved           = false;
     this.UpdatedDate          = DateTime.MinValue;
 }
예제 #16
0
 public bool Contains(OpNotificationObj value)
 {
     return(base.List.Contains(value));
 }
예제 #17
0
 public int IndexOf(OpNotificationObj value)
 {
     return(base.List.IndexOf(value));
 }
예제 #18
0
 public void Insert(int index, OpNotificationObj value)
 {
     base.List.Insert(index, value);
 }
예제 #19
0
 public void Remove(OpNotificationObj value)
 {
     base.List.Remove(value);
 }
예제 #20
0
 public int Add(OpNotificationObj value)
 {
     return(base.List.Add(value));
 }