Пример #1
0
        /// <summary>
        /// Deletes an instance of Companys based on Company_Id.
        /// </summary>
        /// <param name="company_Id">The database automatically generates this value. </param>
        /// <results>'true' if the instance was deleted, otherwise, 'false'. </results>
        public Boolean DeleteCompanys(Int32 company_Id)
        {
            System.Boolean value;
            value = Companys.DeleteCompanys(company_Id);

            return(value);
        }
        /// <summary>
        /// Deletes an instance of Companys based on companys.
        /// </summary>
        /// <param name="companys">The instance of companys to persist. </param>
        /// <results>'true' if the instance was deleted, otherwise, 'false'. </results>
        public static Boolean Delete(Companys companys)
        {
            System.Boolean value;
            value = Companys.DeleteCompanys(companys.Company_Id);

            return(value);
        }