Exemplo n.º 1
0
        private void init(int identifier
                          , double latitude, double longitude, double altitude, ChroniGenNHibernate.EN.Chroni.LocationEN location)
        {
            this.Identifier = identifier;


            this.Latitude = latitude;

            this.Longitude = longitude;

            this.Altitude = altitude;

            this.Location = location;
        }
        private void init(int identifier
                          , System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.SlotEN> slot, ChroniGenNHibernate.EN.Chroni.PractitionerEN practitioner, ChroniGenNHibernate.EN.Chroni.LocationEN location, bool active, Nullable <DateTime> morningStart, Nullable <DateTime> morningEnd, Nullable <DateTime> afternoonStart, Nullable <DateTime> afternoonEnd, Nullable <DateTime> dateStart, Nullable <DateTime> dateEnd)
        {
            this.Identifier = identifier;


            this.Slot = slot;

            this.Practitioner = practitioner;

            this.Location = location;

            this.Active = active;

            this.MorningStart = morningStart;

            this.MorningEnd = morningEnd;

            this.AfternoonStart = afternoonStart;

            this.AfternoonEnd = afternoonEnd;

            this.DateStart = dateStart;

            this.DateEnd = dateEnd;
        }
Exemplo n.º 3
0
 public PositionEN(int identifier, double latitude, double longitude, double altitude, ChroniGenNHibernate.EN.Chroni.LocationEN location
                   )
 {
     this.init(Identifier, latitude, longitude, altitude, location);
 }
 public ScheduleEN(int identifier, System.Collections.Generic.IList <ChroniGenNHibernate.EN.Chroni.SlotEN> slot, ChroniGenNHibernate.EN.Chroni.PractitionerEN practitioner, ChroniGenNHibernate.EN.Chroni.LocationEN location, bool active, Nullable <DateTime> morningStart, Nullable <DateTime> morningEnd, Nullable <DateTime> afternoonStart, Nullable <DateTime> afternoonEnd, Nullable <DateTime> dateStart, Nullable <DateTime> dateEnd
                   )
 {
     this.init(Identifier, slot, practitioner, location, active, morningStart, morningEnd, afternoonStart, afternoonEnd, dateStart, dateEnd);
 }