GenerationConvert.cs 292 B

12345678910111213
  1. using PhihongEv.Lib.Model;
  2. using System.Linq;
  3. namespace PhihongEv.Lib.Convert
  4. {
  5. public static class GenerationConvert
  6. {
  7. public static Generation ToGeneration(this string from)
  8. {
  9. return Generation.List.FirstOrDefault(x => x.Code == from);
  10. }
  11. }
  12. }