views:

21

answers:

0

I'm creating a snippet and I need the current class name to be replaced automatically instead of typing it.

Right now it's:

using Danel.Nursing.Scheduling.Actions.DataServices.Interfaces;

    public class $NAME$DataService : AbstractDataService<$NAME$>, I$NAME$DataService
    {
        public $NAME$DataService(IRepository<$NAME$> repository)
            : base(repository)
        {
        }

Is there a placeholder that is replaced automatically?