Example #1
0
        /// <summary>
        /// Creates the billing office cache.
        /// </summary>
        /// <returns>
        /// The billing office cache.
        /// </returns>
        public BillingOfficeCache CreateBillingOfficeCache()
        {
            var billingOfficeCache = new BillingOfficeCache();

            _billingOfficeCachetRepository.MakePersistent(billingOfficeCache);

            return(billingOfficeCache);
        }
        /// <summary>
        /// Creates the billing office cache.
        /// </summary>
        /// <returns>
        /// The billing office cache.
        /// </returns>
        public BillingOfficeCache CreateBillingOfficeCache()
        {
            var billingOfficeCache = new BillingOfficeCache ();

            _billingOfficeCachetRepository.MakePersistent ( billingOfficeCache );

            return billingOfficeCache;
        }
Example #3
0
 /// <summary>
 /// Destroys the billing office cache.
 /// </summary>
 /// <param name="billingOfficeCache">
 /// The billing office cache.
 /// </param>
 public void DestroyBillingOfficeCache(BillingOfficeCache billingOfficeCache)
 {
     _billingOfficeCachetRepository.MakeTransient(billingOfficeCache);
 }
 /// <summary>
 /// Destroys the billing office cache.
 /// </summary>
 /// <param name="billingOfficeCache">
 /// The billing office cache.
 /// </param>
 public void DestroyBillingOfficeCache( BillingOfficeCache billingOfficeCache )
 {
     _billingOfficeCachetRepository.MakeTransient ( billingOfficeCache );
 }