Example #1
0
 public static bool CreateTable()
 {
     return(EscritorDAL.CreateTable());
 }
Example #2
0
 public static int ReSeed(int number)
 {
     return(EscritorDAL.ReSeed(number));
 }
Example #3
0
 public int Update()
 {
     return(EscritorDAL.Update(this));
 }
Example #4
0
 public int Delete()
 {
     return(EscritorDAL.Delete(this));
 }
Example #5
0
 public static List <Escritor> ReadAll()
 {
     return(EscritorDAL.ReadAll());
 }
Example #6
0
 public Escritor ReadId()
 {
     return(EscritorDAL.ReadId(this));
 }
Example #7
0
 public List <Escritor> ReadNome()
 {
     return(EscritorDAL.ReadNome(this));
 }
Example #8
0
 public int Create()
 {
     return(EscritorDAL.Create(this));
 }
Example #9
0
 public static bool CreateFromObservableCollection(ObservableCollection <Escritor> collection)
 {
     return(EscritorDAL.CreateFromObservableCollection(collection));
 }