Exemple #1
0
 /// <summary>
 /// The constructor of the queue
 /// </summary>
 /// <param name="name">The name of the named queue</param>
 /// <param name="id">The id that should be from the database (identity)</param>
 /// <param name="provider">The provider that made the queue</param>
 internal SqlNamedQueue(string name, int id, SqlNamedQueueProvider provider)
 {
     Name     = name;
     Id       = id;
     Provider = provider;
 }
 /// <summary>
 /// The constructor of the queue
 /// </summary>
 /// <param name="name">The name of the named queue</param>
 /// <param name="id">The id that should be from the database (identity)</param>
 /// <param name="provider">The provider that made the queue</param>
 internal SqlNamedQueue(string name, int id, SqlNamedQueueProvider provider)
 {
     Name = name;
     Id = id;
     Provider = provider;
 }