'use strict'

###*
  @ngdoc factory
  @name payrollhero.api.TagsService

  @factory
  @description Tags Service
###

angular.module('payrollhero.api').factory 'TagsService', (Tag, PhRestangularV4) ->
  PhRestangularV4.extendModel 'tags', (model) ->
    _.defaults(new Tag(),model)

  PhRestangularV4.service('tags')
