コード例 #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);
 }