Skip to content

Instantly share code, notes, and snippets.

var DepartmentsAddController = (function () {
function DepartmentsAddController(DepartmentService, $state) {
_classCallCheck(this, DepartmentsAddController);
this.DepartmentService = DepartmentService;
this.$state = $state;
this.data = {
title: '',
description: ''
};