public bool idstypeUpdate(idstype idstype)
 {
     idstypeImpl oidstypeImpl = new idstypeImpl();
     return oidstypeImpl.idstypeUpdate( idstype);
 }
 public idstype idstypeGetById(int IdsTypeId)
 {
     idstypeImpl oidstypeImpl = new idstypeImpl();
     return oidstypeImpl.idstypeGetById(IdsTypeId);
 }
 public bool idstypeDelete(int IdsTypeId)
 {
     idstypeImpl oidstypeImpl = new idstypeImpl();
     return oidstypeImpl.idstypeDelete( IdsTypeId);
 }
 public List<idstype> idstypeGetAll()
 {
     idstypeImpl oidstypeImpl = new idstypeImpl();
     return oidstypeImpl.idstypeGetAll();
 }
 public int idstypeAdd(idstype idstype)
 {
     idstypeImpl oidstypeImpl = new idstypeImpl();
     return oidstypeImpl.idstypeAdd( idstype);
 }