Skip to content

Instantly share code, notes, and snippets.

@BryanWilhite
Created November 13, 2014 00:01
Show Gist options
  • Save BryanWilhite/aee699badd161329036a to your computer and use it in GitHub Desktop.
Save BryanWilhite/aee699badd161329036a to your computer and use it in GitHub Desktop.
C#, Songhay: DAR Activity
using System;
using System.ComponentModel.Composition;
namespace Songhay.DataAccess.Activities.AzureBlobStorage
{
using Songhay.DataAccess.Runner;
[Export(typeof(IDarAssembly))]
public class Activity : DarAssembly
{
public override void Execute(DarConfigurationItem metaData)
{
base.WriteToLog(string.Format(">>>{0}{1}", DateTime.Now, Environment.NewLine));
base.WriteToLog(string.Format(">>>{0}{1}", DateTime.Now, Environment.NewLine));
base.WriteToLog(string.Format("End of procedure.{0}", Environment.NewLine));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment