Exemplo n.º 1
0
        // update all object members on a row in table based on primary key
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce75e72e-fb16-4f4e-a2e6-dbd079dfa206
        public void Update(CrudeProductImageContract contract)
        {
            var data = new CrudeProductImageData();

            ContractToData(contract, data);
            data.Update();
        }
Exemplo n.º 2
0
        // update all object members on a row in table based on primary key, on a transaction
        // the transaction and or connection state is not changed in any way other than what SqlClient does to it.
        // it is the callers responsibility to commit or rollback the transaction
        // links:
        //  docLink: http://sql2x.org/documentationLink/b798ad6b-f4b8-466a-9086-6588a814fcf3
        public void Update(CrudeProductImageContract contract, SqlConnection connection, SqlTransaction transaction)
        {
            var data = new CrudeProductImageData();

            ContractToData(contract, data);
            data.Update(connection, transaction);
        }
Exemplo n.º 3
0
        // insert all object members as a new row in table
        // links:
        //  docLink: http://sql2x.org/documentationLink/75aad010-e6aa-4f19-a6e5-597456aa20d8
        public void Insert(CrudeProductImageContract contract)
        {
            var data = new CrudeProductImageData();

            ContractToData(contract, data);
            data.Insert();
        }
Exemplo n.º 4
0
 // copy all rows from a List of SOAP Contracts to a List of serialized data objects
 // links:
 //  docLink: http://sql2x.org/documentationLink/1c6c6b9c-e201-4590-8c69-d38a0ad2a9f7
 public static void ContractListToDataList(List <CrudeProductImageContract> contractList, List <CrudeProductImageData> dataList)
 {
     foreach (CrudeProductImageContract contract in contractList)
     {
         var data = new CrudeProductImageData();
         CrudeProductImageService.ContractToData(contract, data);
         dataList.Add(data);
     }
 }
Exemplo n.º 5
0
        // fetch by Primary key into current object
        // links:
        //  docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  productImageId: primary key of table product_image
        public CrudeProductImageContract FetchByProductImageId(System.Guid productImageId)
        {
            var dataAccessLayer = new CrudeProductImageData();
            var contract        = new CrudeProductImageContract();

            dataAccessLayer.FetchByProductImageId(productImageId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
Exemplo n.º 6
0
 // copy all columns from a serialized data object to a SOAP Contract
 // links:
 //  docLink: http://sql2x.org/documentationLink/7553d6dd-da65-4a72-84c8-81f2f99ef4f5
 public static void DataToContract(CrudeProductImageData data, CrudeProductImageContract contract)
 {
     contract.ProductImageId      = data.ProductImageId;
     contract.ProductId           = data.ProductId;
     contract.ProductImageTypeRcd = data.ProductImageTypeRcd;
     contract.ImageFileName       = data.ImageFileName;
     contract.Image    = data.Image;
     contract.UserId   = data.UserId;
     contract.DateTime = data.DateTime;
 }
Exemplo n.º 7
0
 // copy all columns from a SOAP Contract to a serialized data object
 // links:
 //  docLink: http://sql2x.org/documentationLink/10700d38-2227-4021-be12-2f4f206f5dd9
 public static void ContractToData(CrudeProductImageContract contract, CrudeProductImageData data)
 {
     data.ProductImageId      = contract.ProductImageId;
     data.ProductId           = contract.ProductId;
     data.ProductImageTypeRcd = contract.ProductImageTypeRcd;
     data.ImageFileName       = contract.ImageFileName;
     data.Image    = contract.Image;
     data.UserId   = contract.UserId;
     data.DateTime = contract.DateTime;
 }
Exemplo n.º 8
0
        public CrudeProductImageContract FetchByImageFileName(string imageFileName)
        {
            var dataAccessLayer = new CrudeProductImageData();
            var contract        = new CrudeProductImageContract();

            dataAccessLayer.FetchByImageFileName(imageFileName);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
Exemplo n.º 9
0
        // copy all rows from a List of serialized data objects to a List of SOAP Contracts,
        //  with a limit on number of returned rows and order by columns, starting at a specific row
        // links:
        //  docLink: http://sql2x.org/documentationLink/3fe9f1b3-97b6-4f58-a0f2-adfcbd973bfc
        public List <CrudeProductImageContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeProductImageContract>();
            List <CrudeProductImageData> dataList = CrudeProductImageData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeProductImageData crudeProductImage in dataList)
            {
                var contract = new CrudeProductImageContract();
                DataToContract(crudeProductImage, contract);
                list.Add(contract);
            }

            return(list);
        }
Exemplo n.º 10
0
        // copy all rows from a List of serialized data objects in CrudeProductImageData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/9204c68e-93b8-4c77-af3c-3181985ff75f
        public List <CrudeProductImageContract> FetchAll()
        {
            var list = new List <CrudeProductImageContract>();
            List <CrudeProductImageData> dataList = CrudeProductImageData.FetchAll();

            foreach (CrudeProductImageData crudeProductImage in dataList)
            {
                var contract = new CrudeProductImageContract();
                DataToContract(crudeProductImage, contract);
                list.Add(contract);
            }

            return(list);
        }
Exemplo n.º 11
0
        // fetch all rows from table into new List of Contracts, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce01ef4a-5cd0-4e51-b211-9c0a15b791a0
        public List <CrudeProductImageContract> FetchWithFilter(System.Guid productImageId, System.Guid productId, string productImageTypeRcd, string imageFileName, byte[] image, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeProductImageContract>();
            List <CrudeProductImageData> dataList = CrudeProductImageData.FetchWithFilter(
                productImageId: productImageId,
                productId: productId,
                productImageTypeRcd: productImageTypeRcd,
                imageFileName: imageFileName,
                image: image,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeProductImageData data in dataList)
            {
                var crudeProductImageContract = new CrudeProductImageContract();
                DataToContract(data, crudeProductImageContract);
                list.Add(crudeProductImageContract);
            }

            return(list);
        }
Exemplo n.º 12
0
 // delete a row in table based on primary key
 // links:
 //  docLink: http://sql2x.org/documentationLink/eb0597e0-8ea0-425c-88af-213a170bbd5e
 public void Delete(System.Guid productImageId)
 {
     CrudeProductImageData.Delete(productImageId);
 }
Exemplo n.º 13
0
 // get a count of rows in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/7cd5e52c-b3d7-4566-a27a-408d0732dd88
 public int FetchAllCount()
 {
     return(CrudeProductImageData.FetchAllCount());
 }
Exemplo n.º 14
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeProductImageContract> FetchByProductImageTypeRcd(string productImageTypeRcd)
 {
     return(DataListToContractList(CrudeProductImageData.FetchByProductImageTypeRcd(productImageTypeRcd)));
 }
Exemplo n.º 15
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeProductImageContract> FetchByUserId(System.Guid userId)
 {
     return(DataListToContractList(CrudeProductImageData.FetchByUserId(userId)));
 }