Ejemplo n.º 1
0
 public MonthPlanDto(MonthPlan plan)
 {
     id = plan.Id;
     user = plan.UserId;
     year = plan.Year;
     month = plan.Month;
     language = ((LanguageType)plan.Language).ToString();
     planedCount = plan.PlanedCount;
     learnedCount = plan.LearnedCount??0;
 }