|
|
|
@ -967,5 +967,15 @@ namespace OpenAuth.App.ServiceApp
|
|
|
|
|
.ChangeRepository<SugarRepositiry<LasaTaskAssign>>()
|
|
|
|
|
.GetSingle(r => r.FlightId == flightId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<Response<LasaAirLine>> GetAirLine(string airLineId)
|
|
|
|
|
{
|
|
|
|
|
return new Response<LasaAirLine>()
|
|
|
|
|
{
|
|
|
|
|
Result = await Repository
|
|
|
|
|
.ChangeRepository<SugarRepositiry<LasaAirLine>>()
|
|
|
|
|
.GetSingleAsync(r => r.Id == airLineId)
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|