public static Employee Employee(int employeeId, string lastName, string firstName, string title,
		                                string titleOfCourtesy, DateTime? birthDate, DateTime? hireDate, string address,
		                                string city, string region, string postalCode, string country, string homePhone,
		                                string extension, byte[] photo, string notes, int? reportsTo, string photoPath)
		{
			Employee employee = new Employee();
			employee.Id = employeeId;
			employee.LastName = lastName;
			employee.FirstName = firstName;
			employee.Title = title;
			employee.TitleOfCourtesy = titleOfCourtesy;
			employee.BirthDate = birthDate;
			employee.HireDate = hireDate;
			employee.Address = address;
			employee.City = city;
			employee.Region = region;
			employee.PostalCode = postalCode;
			employee.Country = country;
			employee.HomePhone = homePhone;
			employee.Extension = extension;
			employee.Photo = photo;
			employee.Notes = notes;
			employee.ReportsTo = reportsTo;
			employee.PhotoPath = photoPath;
			return employee;
		}
		public static EmployeeDto ToEmployeeDto(Employee model)
		{
			return new EmployeeDto {
				Id = model.Id,
				Address = model.Address,
				City = model.City,
				Country = model.Country,
				PostalCode = model.PostalCode,
				Region = model.Region,
				BirthDate = model.BirthDate,
				Extension = model.Extension,
				FirstName = model.FirstName,
				HireDate = model.HireDate,
				HomePhone = model.HomePhone,
				LastName = model.LastName,
				Notes = model.Notes,
				Photo = model.Photo,
				PhotoPath = model.PhotoPath,
				ReportsTo = model.ReportsTo,
				Title = model.Title,
				TitleOfCourtesy = model.TitleOfCourtesy,
			};
		}