Ejemplo n.º 1
0
 public static void ToEntity(DT.ProblemClass source, DA.ProblemClass target)
 {
     if ((source != null) && (target != null))
     {
         target.Id = source.Id; target.Name = source.Name; target.Description = source.Description;
     }
 }
Ejemplo n.º 2
0
 public static DT.ProblemClass ToDto(DA.ProblemClass source)
 {
     if (source == null)
     {
         return(null);
     }
     return(new DT.ProblemClass {
         Id = source.Id, Name = source.Name, Description = source.Description
     });
 }
Ejemplo n.º 3
0
 private static DT.ProblemClass ToDto(DA.ProblemClass source)
 {
     if (source == null)
     {
         return(null);
     }
     return(new DT.ProblemClass {
         Name = source.Name, Description = source.Description
     });
 }
Ejemplo n.º 4
0
 partial void DeleteProblemClass(ProblemClass instance);
Ejemplo n.º 5
0
 partial void UpdateProblemClass(ProblemClass instance);
Ejemplo n.º 6
0
 partial void InsertProblemClass(ProblemClass instance);