예제 #1
0
        // transfer serialized data contract to business wcf contract
        // links:
        //  how to generate durians: https://sql2x.org
        //  docLink: http://sql2x.org/documentationLink/6a251e13-1f76-48af-af34-18c592706874
        // parameters:
        //  dataContract: from durian ansi sql select statement
        public List <GetFerryIndexWithFilterContract> GetFerryIndexWithFilterFromDal(List <GetFerryIndexWithFilterData> dataList)
        {
            var list = new List <GetFerryIndexWithFilterContract>();

            foreach (GetFerryIndexWithFilterData data in dataList)
            {
                var contract = new GetFerryIndexWithFilterContract();
                DataToContract(data, contract);
                list.Add(contract);
            }

            return(list);
        }
예제 #2
0
 // transfer serialized data contract to business wcf contract
 // links:
 //  how to generate durians: https://sql2x.org
 //  docLink: http://sql2x.org/documentationLink/6140089a-d7c9-4e92-b385-f6fd91026820
 // parameters:
 //  dalGetFerryIndexWithFilter: from durian ansi sql select statement
 //  dataContract: business wcf contract
 public void DataToContract(GetFerryIndexWithFilterData dalGetFerryIndexWithFilter, GetFerryIndexWithFilterContract dataContract)
 {
     dataContract.FerryName           = dalGetFerryIndexWithFilter.FerryName;
     dataContract.FerryTypeRcd        = dalGetFerryIndexWithFilter.FerryTypeRcd;
     dataContract.FerryTypeName       = dalGetFerryIndexWithFilter.FerryTypeName;
     dataContract.ProductId           = dalGetFerryIndexWithFilter.ProductId;
     dataContract.ProductName         = dalGetFerryIndexWithFilter.ProductName;
     dataContract.FirstFloatDateTime  = dalGetFerryIndexWithFilter.FirstFloatDateTime;
     dataContract.OperationalDateTime = dalGetFerryIndexWithFilter.OperationalDateTime;
     dataContract.EngineType          = dalGetFerryIndexWithFilter.EngineType;
     dataContract.PassengerCapacity   = dalGetFerryIndexWithFilter.PassengerCapacity;
     dataContract.UserId          = dalGetFerryIndexWithFilter.UserId;
     dataContract.DefaultUserName = dalGetFerryIndexWithFilter.DefaultUserName;
     dataContract.DateTime        = dalGetFerryIndexWithFilter.DateTime;
     dataContract.FerryId         = dalGetFerryIndexWithFilter.FerryId;
 }