Exemplo n.º 1
0
 ///<Summary>
 ///Constructor
 ///This constructor initializes the business object from its respective data object
 ///</Summary>
 ///<returns>
 ///void
 ///</returns>
 ///<parameters>
 ///DAOCustomerAndSuppliersByCity
 ///</parameters>
 protected internal BOCustomerAndSuppliersByCity(IDAOCustomerAndSuppliersByCity daoCustomerAndSuppliersByCity)
 {
     try
     {
         _city         = daoCustomerAndSuppliersByCity.City;
         _companyName  = daoCustomerAndSuppliersByCity.CompanyName;
         _contactName  = daoCustomerAndSuppliersByCity.ContactName;
         _relationship = daoCustomerAndSuppliersByCity.Relationship;
     }
     catch
     {
         throw;
     }
 }
Exemplo n.º 2
0
 public virtual IzNorthwindRestApiConn_BaseData BaseData(IDAOCustomerAndSuppliersByCity daoCustomerAndSuppliersByCity)
 {
     return((IzNorthwindRestApiConn_BaseData)(DAOCustomerAndSuppliersByCity)daoCustomerAndSuppliersByCity);
 }