当前位置: 首页>>代码示例>>C#>>正文


C# Helpers类代码示例

本文整理汇总了C#中Helpers的典型用法代码示例。如果您正苦于以下问题:C# Helpers类的具体用法?C# Helpers怎么用?C# Helpers使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Helpers类属于命名空间,在下文中一共展示了Helpers类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetOne

 public static ModuloDTO GetOne(ModuloDTO oneModulo)
 {
     Helpers h = new Helpers();
     var lModulos = GetAll();
     oneModulo = lModulos.Single(x => x.Id_Modulo == oneModulo.Id_Modulo);
     return oneModulo;
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:ModuloDTO.cs

示例2: ReceivedLogMessage

        //called on GUI thread
        private void ReceivedLogMessage(string message, Helpers.LogLevel level)
        {
            RichTextBox rtb = null;

            switch (level)
            {
                case Helpers.LogLevel.Info:
                    rtb = rtbInfo;
                    break;

                case Helpers.LogLevel.Warning:
                    rtb = rtbWarning;
                    break;

                case Helpers.LogLevel.Error:
                    rtb = rtbError;
                    break;

                case Helpers.LogLevel.Debug:
                    rtb = rtbDebug;
                    break;
            }

            rtb.AppendText("[" + DateTime.Now.ToString() + "] " + message + "\n");
        }
开发者ID:SObS,项目名称:SLeek,代码行数:26,代码来源:DebugLog.cs

示例3: GetAll

 public static List<ModuloDTO> GetAll()
 {
     string query = "select * from Tabla_Catalogo_Modulo where Estatus_Modulo = 1";
     Helpers h = new Helpers();
     var lModulos = h.GetAllParametized(query, new ModuloDTO());
     return lModulos;
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:ModuloDTO.cs

示例4: client_OnLogMessage

 //comes in on separate thread
 private void client_OnLogMessage(string message, Helpers.LogLevel level)
 {
     if (this.IsHandleCreated)
         BeginInvoke(new SecondLife.LogCallback(ReceivedLogMessage), new object[] { message, level });
     else
         initQueue.Add(new DebugLogMessage(message, level));
 }
开发者ID:SObS,项目名称:SLeek,代码行数:8,代码来源:DebugLog.cs

示例5: Insert

 public void Insert(Tabla_Registro_AgendaDTO oneAgenda)
 {
     string query =
         "insert into Tabla_Registro_Agenda (Fecha_Agenda, Asunto_Agenda, Prioridad_Agenda, EstadoCitas_Agenda, Descripcion_Agenda, Inicio_Agenda, Fin_Agenda, Id_FichaIdentificacion, Id_Categoria, Estatus_Agenda) values(@Fecha_Agenda, @Asunto_Agenda, @Prioridad_Agenda, @EstadoCitas_Agenda, @Descripcion_Agenda, @Inicio_Agenda, @Fin_Agenda, @Id_FichaIdentificacion, @Id_Categoria, @Estatus_Agenda)";
     Helpers h = new Helpers();
     h.ExecuteNonQueryParam(query, oneAgenda);
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:Tabla_Registro_AgendaDTO.cs

示例6: GetLast

 public static Tabla_Catalogo_FichaIdentificacionDTO GetLast()
 {
     Helpers h = new Helpers();
     string query = "select * from Tabla_Catalogo_FichaIdentificacion";
     var lFichas = h.GetAllParametized(query, new Tabla_Catalogo_FichaIdentificacionDTO());
     return lFichas.Last();
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:Tabla_Catalogo_FichaIdentificacionDTO.cs

示例7: GetOneByName

 public static ModuloDTO GetOneByName(ModuloDTO oneModulo)
 {
     Helpers h = new Helpers();
     var lModulos = GetAll();
     oneModulo = lModulos.Single(x => x.Nombre_Modulo == oneModulo.Nombre_Modulo && x.Programa_Modulo == oneModulo.Programa_Modulo);
     return oneModulo;
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:ModuloDTO.cs

示例8: Update

 public void Update(NotaClinicaDTO oneNota)
 {
     string query =
         "update Tabla_Registro_Consulta set Subjetivo_Consulta = @Subjetivo_Consulta, Objetivo_Consulta = @Objetivo_Consulta, Analisis_Consulta = @Analisis_Consulta, Plan_Consulta = @Plan_Consulta where ID_Consulta = @Id_Consulta and Id_FichaIdentificacion = @Id_FichaIdentificacion";
     Helpers h = new Helpers();
     h.ExecuteNonQueryParam(query, oneNota);
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:NotaClinicaDTO.cs

示例9: GetLast

 public static Tabla_Catalogo_ConceptoPagoDTO GetLast()
 {
     Helpers h = new Helpers();
     string query = "select * from Tabla_Catalogo_ConceptoPago";
     var lFichas = h.GetAllParametized(query, new Tabla_Catalogo_ConceptoPagoDTO());
     return lFichas.Last();
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:Tabla_Catalogo_ConceptoPago.cs

示例10: Insert

 public void Insert(ConsultaProcedimientoDTO oneConsulta)
 {
     string query =
         "insert into Tabla_Registro_ConsultaProcedimiento(Id_Consulta, Id_Procedimiento, Id_FichaIdentificacion, Fecha_ConsultaProcedimiento, Observaciones_ConsultaProcedimiento, Estatus_ConsultaProcedimiento) values(@Id_Consulta, @Id_Procedimiento, @Id_FichaIdentificacion, @Fecha_ConsultaProcedimiento, @Observaciones_ConsultaProcedimiento, @Estatus_ConsultaProcedimiento)";
     Helpers h = new Helpers();
     h.ExecuteNonQueryParam(query, oneConsulta);
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:ConsultaProcedimientoDTO.cs

示例11: GetLast

 public static PerfilDTO GetLast()
 {
     Helpers h = new Helpers();
     var lPerfiles = GetAll();
     var onePerfil = lPerfiles.Last();
     return onePerfil;
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:PerfilDTO.cs

示例12: Delete

 public void Delete(ConsultaProcedimientoDTO oneConsulta)
 {
     string query =
         "delete Tabla_Registro_ConsultaProcedimiento where Id_ConsultaProcedimiento = @Id_ConsultaProcedimiento";
     Helpers h = new Helpers();
     h.ExecuteNonQueryParam(query, oneConsulta);
 }
开发者ID:mine07,项目名称:MedicalManagement,代码行数:7,代码来源:ConsultaProcedimientoDTO.cs

示例13: GetProxy

        public ServerProxy GetProxy(Helpers.EclipseWorkspace workspace)
        {
            if (workspace == null)
                return null;

            ServerProxy retVal = null;
            lock (proxyList)
            {
                if (!proxyList.TryGetValue(workspace, out retVal))
                {
                    Telemetry.Client.Get().TrackEvent("App.ServerLaunch");

                    retVal = new ServerProxy("javapkgsrv-" + Guid.NewGuid());
                    retVal.LIFORequests.Add(Protocol.Request.RequestType.ParamHelpPositionUpdate);
                    if (retVal.Start(workspace.Name))
                    {
                        proxyList.Add(workspace, retVal);
                        refCounts.Add(retVal, 1);

                        Telemetry_MaxInstances = Math.Max(proxyList.Count, Telemetry_MaxInstances);
                    }
                    else
                        return null;
                }
                else
                    ++refCounts[retVal];
            }

            retVal.TerminatedAbnormally += ServerProxy_TerminatedAbnormally;
            return retVal;
        }
开发者ID:XewTurquish,项目名称:vsminecraft,代码行数:31,代码来源:ServerProxy.cs

示例14: GetNewRepository

 protected virtual Repository.Logic.Repository GetNewRepository(Helpers.Log.SessionInfo logSession)
 {
     var rep = new Repository.Logic.Repository();
     rep.SqlLog += (s, e) => RaiseSqlLog(e);
     rep.Log += (s, e) => logSession.Add(e, "[REPOSITORY]");
     return rep;
 }
开发者ID:kblc,项目名称:Personnel.old,代码行数:7,代码来源:BaseService.cs

示例15: BTFileLoader

        public BTFileLoader(Helpers mh)
        {
            m_Helpers = mh;

            m_Helpers.m_Blob.CreateContainer("log");
            //m_LogBlob.SetContainerACL("log", "private");
            CloudBlobContainer container = m_Helpers.m_Blob.BlobClient.GetContainerReference("log");
            /*
                    CloudBlobContainer blobContainer = blobClient.GetContainerReference("azurecontainer");
                    CloudBlob blob = Container.GetBlobReference(blobname + ".res");
                    BlobStream bs = blob.OpenWrite();
                    TextWriter tw = new StreamWriter(bs);
                    string append = resultsLine + ", ";
                    tw.WriteLine(append);
            */

            CloudBlob blob = container.GetBlobReference("AudibleLoader.Log");
            BlobStream bs = blob.OpenWrite();
            TextWriter tw = new StreamWriter(bs);
            tw.WriteLine("test");
            tw.Flush();
            //content = new UTF8Encoding().GetString(data);
            bs.Close();
            //BlobStream OpenWrite ()
        }
开发者ID:colebank,项目名称:BloodHound,代码行数:25,代码来源:BTLoader.cs


注:本文中的Helpers类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。