using System; using System.Collections.Generic; using System.Linq; using System.Web; /// /// Summary description for Isikukood /// public class Isikukood { private string kood; public Isikukood(string uuskood) { if (uuskood.Length != 11) { throw new Exception("Vigane isikukoodi pikkus"); } kood = uuskood; } public string kysiSugu() { if (Convert.ToInt32(kood.Substring(0, 1)) % 2 == 0) { return "N"; } return "M"; } public string kysiKuu() { return kood.Substring(3, 2); } }