Ejemplo n.º 1
0
 protected override DailyGospelReflection Parse()
 {
     return(new DailyGospelReflection
     {
         Id = ToInt(Id),
         UserId = ToInt(UserID),
         DailyGospelId = ToInt(DailyGospelID),
         Title = Title.ToString(),
         ReflectionContent = ReflectionContent.ToString(),
         CreatedAt = ToDateTime(CreatedAt),
         UpdatedAt = ToDateTime(UpdatedAt)
     });
 }
Ejemplo n.º 2
0
 protected override SaintReflection Parse()
 {
     return(new SaintReflection
     {
         Id = ToInt(UserDailySaintReflectionID),
         SaintId = ToInt(SaintID),
         UserId = ToInt(UserID),
         Title = Title.ToString(),
         Content = ReflectionContent.ToString(),
         CreatedAt = ToDateTime(CreatedAt),
         UpdatedAt = ToDateTime(UpdatedAt)
     });
 }