예제 #1
0
파일: Reference.cs 프로젝트: unicloud/FRP
 public static FlightLogDTO CreateFlightLogDTO(int ID, global::System.DateTime flightDate, decimal flightHours, int totalCycles)
 {
     FlightLogDTO flightLogDTO = new FlightLogDTO();
     flightLogDTO.Id = ID;
     flightLogDTO.FlightDate = flightDate;
     flightLogDTO.FlightHours = flightHours;
     flightLogDTO.TotalCycles = totalCycles;
     return flightLogDTO;
 }
예제 #2
0
파일: Reference.cs 프로젝트: unicloud/FRP
 public void AddToFlightLogs(FlightLogDTO flightLogDTO)
 {
     base.AddObject("FlightLogs", flightLogDTO);
 }