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