public bool eventstypeUpdate(eventstype eventstype)
 {
     eventstypeImpl oeventstypeImpl = new eventstypeImpl();
     return oeventstypeImpl.eventstypeUpdate( eventstype);
 }
 public eventstype eventstypeGetById(int EventsTypeId)
 {
     eventstypeImpl oeventstypeImpl = new eventstypeImpl();
     return oeventstypeImpl.eventstypeGetById(EventsTypeId);
 }
 public List<eventstype> eventstypeGetByDescription(string description)
 {
     eventstypeImpl oeventstypeImpl = new eventstypeImpl();
     return oeventstypeImpl.eventstypeGetByDescription(description);
 }
 public List<eventstype> eventstypeGetAll()
 {
     eventstypeImpl oeventstypeImpl = new eventstypeImpl();
     return oeventstypeImpl.eventstypeGetAll();
 }
 public bool eventstypeDelete(int EventsTypeId)
 {
     eventstypeImpl oeventstypeImpl = new eventstypeImpl();
     return oeventstypeImpl.eventstypeDelete( EventsTypeId);
 }
 public int eventstypeAdd(eventstype eventstype)
 {
     eventstypeImpl oeventstypeImpl = new eventstypeImpl();
     return oeventstypeImpl.eventstypeAdd( eventstype);
 }