public override void Save() { Id = DbQuery.InsertArtPiece(Name, Description, Exhibitor.IdExhibitor.ToString()); SculptureId = DbQuery.InsertSpecificArtPiece("sculptures", Volume.ToString(CultureInfo.CurrentCulture), Id.ToString(), DbQuery.VolumeProperty); }
public override void Save() { Id = DbQuery.InsertArtPiece(Name, Description, Exhibitor.IdExhibitor.ToString()); PaintingId = DbQuery.InsertSpecificArtPiece(DbQuery.Paintings, Size.ToString(CultureInfo.CurrentCulture), Id.ToString(), SizeProperty); }
public override bool SubmitData() { Id = DbQuery.InsertPerson(Password, Name, Phone.ToString(), Mail); IdEmployee = DbQuery.InsertEmployee(Salary.ToString(), Id.ToString()); return(true); }
public void Save() { Id = DbQuery.InsertSchedule(FirstDay, FirstMonth, FirstYear, LastDay, LastMonth, LastYear, StartTime, EndTime); }
public override void Save() { Id = DbQuery.InsertEvent(Process.Description, Process.Name, Process.Title); TemporaryId = DbQuery.InsertTemporary(Id.ToString(), Process.Id.ToString(), Process.Schedule.Id.ToString()); }
public override bool SubmitData() { Id = DbQuery.InsertPerson(Password, Name, Phone.ToString(), Mail); IdExhibitor = DbQuery.InsertExhibitor(Type, Id.ToString()); return(true); }
public void Save() { Id = DbQuery.InsertRoom(Size.ToString(CultureInfo.CurrentCulture), Description); }
public override void Save() { Id = DbQuery.InsertArtPiece(Name, Description, Exhibitor.IdExhibitor.ToString()); PhotographyId = DbQuery.InsertSpecificArtPiece(DbQuery.Photographies, Size.ToString(), Id.ToString(), DbQuery.SizeProperty); }