Exemplo n.º 1
0
 public void Create()
 {
     if (RetrieveByName(this.name).Count == 0)
     {
         MTypeDAL.Create(this);
     }
 }
Exemplo n.º 2
0
 public static ObservableCollection <MType> RetrieveById(long id)
 {
     return(MTypeDAL.RetrieveById(id));
 }
Exemplo n.º 3
0
 public static ObservableCollection <MType> RetrieveByName(string name)
 {
     return(MTypeDAL.RetrieveByName(name));
 }
Exemplo n.º 4
0
 public static ObservableCollection <MType> RetrieveAll()
 {
     return(MTypeDAL.RetrieveAll());
 }
Exemplo n.º 5
0
 public void Delete()
 {
     MTypeDAL.Delete(this);
 }
Exemplo n.º 6
0
 public void Update()
 {
     MTypeDAL.Update(this);
 }
Exemplo n.º 7
0
 public static void CreateTable()
 {
     MTypeDAL.CreateTable();
 }