00001 using System; 00002 using System.Collections.Generic; 00003 using System.Text; 00004 00005 namespace MarekMailSystem2 00006 { 00007 class NHibernateEmailTable : IEmailTable 00008 { 00009 public NHibernateEmailTable(string TableName) 00010 { 00011 throw new Exception("Not implemented."); 00012 } 00013 00014 public void Save(Email email, string tag) 00015 { 00016 throw new Exception("The method or operation is not implemented."); 00017 } 00018 00019 public Email Load(string tag) 00020 { 00021 throw new Exception("The method or operation is not implemented."); 00022 } 00023 00024 } 00025 }