Exemple #1
0
 internal void SetDAL(Indico.DAL.GetMeasureLocForPatternSizeView obj, IndicoEntities context)
 {
     // set the Indico.DAL.GetMeasureLocForPatternSizeView properties
     obj.Pattern  = Convert.ToInt32(Pattern);
     obj.Size     = Convert.ToInt32(Size);
     obj.SizeName = SizeName;
     obj.SeqNo    = Convert.ToInt32(SeqNo);
     obj.Key      = Key;
     obj.Name     = Name;
     obj.Val      = Convert.ToDecimal(Val);
 }
Exemple #2
0
 internal void SetBO(Indico.DAL.GetMeasureLocForPatternSizeView obj)
 {
     // set the Indico.BusinessObjects.GetMeasureLocForPatternSizeViewBO properties
     this.Pattern  = obj.Pattern;
     this.Size     = obj.Size;
     this.SizeName = obj.SizeName;
     this.SeqNo    = obj.SeqNo;
     this.Key      = obj.Key;
     this.Name     = obj.Name;
     this.Val      = obj.Val;
 }
Exemple #3
0
 /// <summary>
 /// Creates an instance of the GetMeasureLocForPatternSizeViewBO class using the supplied Indico.DAL.GetMeasureLocForPatternSizeView.
 /// </summary>
 /// <param name="obj">a Indico.DAL.GetMeasureLocForPatternSizeView whose properties will be used to initialise the GetMeasureLocForPatternSizeViewBO</param>
 internal GetMeasureLocForPatternSizeViewBO(Indico.DAL.GetMeasureLocForPatternSizeView obj)
 {
     // set the properties from the Indico.DAL.GetMeasureLocForPatternSizeView
     this.Pattern  = obj.Pattern;
     this.Size     = obj.Size;
     this.SizeName = obj.SizeName;
     this.SeqNo    = obj.SeqNo;
     this.Key      = obj.Key;
     this.Name     = obj.Name;
     this.Val      = obj.Val;
 }