public IDevHandledInstruction CreateDevHandledInstruction(IDevInstructions <IDevHandledInstruction> devInstruction)
        {
            DevHandledInstruction = new DevHandledInstruction();

            DevHandledInstruction.FileContent += (devInstruction.AccessModifier + " " + devInstruction.EntityType + " " + devInstruction.Name + "{}");
            DevHandledInstruction.FileName     = devInstruction.Name;

            return(DevHandledInstruction);
        }
 public void InvokeDevInstruction(IDevInstructions <IDevHandledInstruction> instruction)
 {
 }