Esempio n. 1
0
 public EventInfo(decimal lon, decimal lat, int confirmCount, int eventInfoTypeID, string title, string description, int id)
 {
     Lon          = lon;
     Lat          = lat;
     ConfirmCount = confirmCount;
     EIType       = new EventInfoType(title, description, eventInfoTypeID);
     ID           = id;
 }
Esempio n. 2
0
 public EventInfo(int eventInfoTypeID, decimal lon, decimal lat)
 {
     Lon    = lon;
     Lat    = lat;
     EIType = new EventInfoType(eventInfoTypeID);
 }